published on Friday, Jul 10, 2026 by Pulumi
published on Friday, Jul 10, 2026 by Pulumi
This resource manages the Site Settings.
The Site Settings can be used to customize the Site configuration and assign Site Variables (Sites Variables can be reused in configuration templates)
When using the Mist APIs, all the switch settings defined at the site level are stored under the site settings with all the rest of the site configuration (
/api/v1/sites/{site_id}/settingMist API Endpoint). To simplify this resource, all the site level switches related settings are moved into thejunipermist.site.Networktemplateresource
Only ONE
junipermist.site.Settingresource can be configured per site. If multiple ones are configured, only the last one defined we be successfully deployed to Mist
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/juniper-mist";
const siteOne = new junipermist.site.Setting("site_one", {
siteId: terraformSite.id,
apUpdownThreshold: 5,
deviceUpdownThreshold: 5,
autoUpgrade: {
enabled: true,
dayOfWeek: "tue",
timeOfDay: "02:00",
version: "beta",
},
configAutoRevert: true,
persistConfigOnDevice: true,
proxy: {
url: "http://myproxy:3128",
},
rogue: {
enabled: true,
honeypotEnabled: true,
minDuration: 5,
},
});
import pulumi
import pulumi_juniper_mist as junipermist
site_one = junipermist.site.Setting("site_one",
site_id=terraform_site["id"],
ap_updown_threshold=5,
device_updown_threshold=5,
auto_upgrade={
"enabled": True,
"day_of_week": "tue",
"time_of_day": "02:00",
"version": "beta",
},
config_auto_revert=True,
persist_config_on_device=True,
proxy={
"url": "http://myproxy:3128",
},
rogue={
"enabled": True,
"honeypot_enabled": True,
"min_duration": 5,
})
package main
import (
"github.com/pulumi/pulumi-junipermist/sdk/go/junipermist/site"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := site.NewSetting(ctx, "site_one", &site.SettingArgs{
SiteId: pulumi.Any(terraformSite.Id),
ApUpdownThreshold: pulumi.Int(5),
DeviceUpdownThreshold: pulumi.Int(5),
AutoUpgrade: &site.SettingAutoUpgradeArgs{
Enabled: pulumi.Bool(true),
DayOfWeek: pulumi.String("tue"),
TimeOfDay: pulumi.String("02:00"),
Version: pulumi.String("beta"),
},
ConfigAutoRevert: pulumi.Bool(true),
PersistConfigOnDevice: pulumi.Bool(true),
Proxy: &site.SettingProxyArgs{
Url: pulumi.String("http://myproxy:3128"),
},
Rogue: &site.SettingRogueArgs{
Enabled: pulumi.Bool(true),
HoneypotEnabled: pulumi.Bool(true),
MinDuration: pulumi.Int(5),
},
})
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 siteOne = new JuniperMist.Site.Setting("site_one", new()
{
SiteId = terraformSite.Id,
ApUpdownThreshold = 5,
DeviceUpdownThreshold = 5,
AutoUpgrade = new JuniperMist.Site.Inputs.SettingAutoUpgradeArgs
{
Enabled = true,
DayOfWeek = "tue",
TimeOfDay = "02:00",
Version = "beta",
},
ConfigAutoRevert = true,
PersistConfigOnDevice = true,
Proxy = new JuniperMist.Site.Inputs.SettingProxyArgs
{
Url = "http://myproxy:3128",
},
Rogue = new JuniperMist.Site.Inputs.SettingRogueArgs
{
Enabled = true,
HoneypotEnabled = true,
MinDuration = 5,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.junipermist.site.Setting;
import com.pulumi.junipermist.site.SettingArgs;
import com.pulumi.junipermist.site.inputs.SettingAutoUpgradeArgs;
import com.pulumi.junipermist.site.inputs.SettingProxyArgs;
import com.pulumi.junipermist.site.inputs.SettingRogueArgs;
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 siteOne = new Setting("siteOne", SettingArgs.builder()
.siteId(terraformSite.id())
.apUpdownThreshold(5)
.deviceUpdownThreshold(5)
.autoUpgrade(SettingAutoUpgradeArgs.builder()
.enabled(true)
.dayOfWeek("tue")
.timeOfDay("02:00")
.version("beta")
.build())
.configAutoRevert(true)
.persistConfigOnDevice(true)
.proxy(SettingProxyArgs.builder()
.url("http://myproxy:3128")
.build())
.rogue(SettingRogueArgs.builder()
.enabled(true)
.honeypotEnabled(true)
.minDuration(5)
.build())
.build());
}
}
resources:
siteOne:
type: junipermist:site:Setting
name: site_one
properties:
siteId: ${terraformSite.id}
apUpdownThreshold: 5
deviceUpdownThreshold: 5
autoUpgrade:
enabled: true
dayOfWeek: tue
timeOfDay: 02:00
version: beta
configAutoRevert: true
persistConfigOnDevice: true
proxy:
url: http://myproxy:3128
rogue:
enabled: true
honeypotEnabled: true
minDuration: 5
pulumi {
required_providers {
junipermist = {
source = "pulumi/junipermist"
}
}
}
resource "junipermist_site_setting" "site_one" {
site_id = terraformSite.id
ap_updown_threshold = 5
device_updown_threshold = 5
auto_upgrade = {
enabled = true
day_of_week = "tue"
time_of_day = "02:00"
version = "beta"
}
config_auto_revert = true
persist_config_on_device = true
proxy = {
url = "http://myproxy:3128"
}
rogue = {
enabled = true
honeypot_enabled = true
min_duration = 5
}
}
Create Setting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Setting(name: string, args: SettingArgs, opts?: CustomResourceOptions);@overload
def Setting(resource_name: str,
args: SettingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Setting(resource_name: str,
opts: Optional[ResourceOptions] = None,
site_id: Optional[str] = None,
allow_mist: Optional[bool] = None,
analytic: Optional[SettingAnalyticArgs] = None,
ap_synthetic_test: Optional[SettingApSyntheticTestArgs] = None,
ap_updown_threshold: Optional[int] = None,
auto_upgrade: Optional[SettingAutoUpgradeArgs] = None,
auto_upgrade_esl: Optional[SettingAutoUpgradeEslArgs] = None,
bgp_neighbor_updown_threshold: Optional[int] = None,
ble_config: Optional[SettingBleConfigArgs] = None,
config_auto_revert: Optional[bool] = None,
config_push_policy: Optional[SettingConfigPushPolicyArgs] = None,
critical_url_monitoring: Optional[SettingCriticalUrlMonitoringArgs] = None,
device_updown_threshold: Optional[int] = None,
enable_unii4: Optional[bool] = None,
engagement: Optional[SettingEngagementArgs] = None,
gateway_mgmt: Optional[SettingGatewayMgmtArgs] = None,
gateway_tunnel_updown_threshold: Optional[int] = None,
gateway_updown_threshold: Optional[int] = None,
iotproxy: Optional[SettingIotproxyArgs] = None,
juniper_srx: Optional[SettingJuniperSrxArgs] = None,
led: Optional[SettingLedArgs] = None,
marvis: Optional[SettingMarvisArgs] = None,
mxedge_mgmt: Optional[SettingMxedgeMgmtArgs] = None,
mxtunnels: Optional[SettingMxtunnelsArgs] = None,
occupancy: Optional[SettingOccupancyArgs] = None,
persist_config_on_device: Optional[bool] = None,
proxy: Optional[SettingProxyArgs] = None,
remove_existing_configs: Optional[bool] = None,
report_gatt: Optional[bool] = None,
rogue: Optional[SettingRogueArgs] = None,
rtsa: Optional[SettingRtsaArgs] = None,
simple_alert: Optional[SettingSimpleAlertArgs] = None,
skyatp: Optional[SettingSkyatpArgs] = None,
sle_thresholds: Optional[SettingSleThresholdsArgs] = None,
srx_app: Optional[SettingSrxAppArgs] = None,
ssh_keys: Optional[Sequence[str]] = None,
ssr: Optional[SettingSsrArgs] = None,
switch_updown_threshold: Optional[int] = None,
synthetic_test: Optional[SettingSyntheticTestArgs] = None,
track_anonymous_devices: Optional[bool] = None,
tunterm_monitoring_disabled: Optional[bool] = None,
tunterm_monitorings: Optional[Sequence[SettingTuntermMonitoringArgs]] = None,
tunterm_multicast_config: Optional[SettingTuntermMulticastConfigArgs] = None,
uplink_port_config: Optional[SettingUplinkPortConfigArgs] = None,
vars: Optional[Mapping[str, str]] = None,
vars_annotations: Optional[Mapping[str, SettingVarsAnnotationsArgs]] = None,
vna: Optional[SettingVnaArgs] = None,
vpn_path_updown_threshold: Optional[int] = None,
vpn_peer_updown_threshold: Optional[int] = None,
vs_instance: Optional[Mapping[str, SettingVsInstanceArgs]] = None,
wan_vna: Optional[SettingWanVnaArgs] = None,
wids: Optional[SettingWidsArgs] = None,
wifi: Optional[SettingWifiArgs] = None,
wired_vna: Optional[SettingWiredVnaArgs] = None,
zone_occupancy_alert: Optional[SettingZoneOccupancyAlertArgs] = None)func NewSetting(ctx *Context, name string, args SettingArgs, opts ...ResourceOption) (*Setting, error)public Setting(string name, SettingArgs args, CustomResourceOptions? opts = null)
public Setting(String name, SettingArgs args)
public Setting(String name, SettingArgs args, CustomResourceOptions options)
type: junipermist:site:Setting
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "junipermist_site_setting" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SettingArgs
- 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 SettingArgs
- 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 SettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SettingArgs
- 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 junipermistSettingResource = new JuniperMist.Site.Setting("junipermistSettingResource", new()
{
SiteId = "string",
AllowMist = false,
Analytic = new JuniperMist.Site.Inputs.SettingAnalyticArgs
{
Enabled = false,
},
ApSyntheticTest = new JuniperMist.Site.Inputs.SettingApSyntheticTestArgs
{
AdditionalVlanIds = new[]
{
"string",
},
},
ApUpdownThreshold = 0,
AutoUpgrade = new JuniperMist.Site.Inputs.SettingAutoUpgradeArgs
{
CustomVersions =
{
{ "string", "string" },
},
DayOfWeek = "string",
Enabled = false,
TimeOfDay = "string",
Version = "string",
},
AutoUpgradeEsl = new JuniperMist.Site.Inputs.SettingAutoUpgradeEslArgs
{
AllowDowngrade = false,
CustomVersions =
{
{ "string", "string" },
},
DayOfWeek = "string",
Enabled = false,
TimeOfDay = "string",
Version = "string",
},
BgpNeighborUpdownThreshold = 0,
BleConfig = new JuniperMist.Site.Inputs.SettingBleConfigArgs
{
BeaconEnabled = false,
BeaconRate = 0,
BeaconRateMode = "string",
BeamDisableds = new[]
{
0,
},
CustomBlePacketEnabled = false,
CustomBlePacketFrame = "string",
CustomBlePacketFreqMsec = 0,
EddystoneUidAdvPower = 0,
EddystoneUidBeams = "string",
EddystoneUidEnabled = false,
EddystoneUidFreqMsec = 0,
EddystoneUidInstance = "string",
EddystoneUidNamespace = "string",
EddystoneUrlAdvPower = 0,
EddystoneUrlBeams = "string",
EddystoneUrlEnabled = false,
EddystoneUrlFreqMsec = 0,
EddystoneUrlUrl = "string",
IbeaconAdvPower = 0,
IbeaconBeams = "string",
IbeaconEnabled = false,
IbeaconFreqMsec = 0,
IbeaconMajor = 0,
IbeaconMinor = 0,
IbeaconUuid = "string",
Power = 0,
PowerMode = "string",
},
ConfigAutoRevert = false,
ConfigPushPolicy = new JuniperMist.Site.Inputs.SettingConfigPushPolicyArgs
{
NoPush = false,
PushWindow = new JuniperMist.Site.Inputs.SettingConfigPushPolicyPushWindowArgs
{
Enabled = false,
Hours = new JuniperMist.Site.Inputs.SettingConfigPushPolicyPushWindowHoursArgs
{
Fri = "string",
Mon = "string",
Sat = "string",
Sun = "string",
Thu = "string",
Tue = "string",
Wed = "string",
},
},
},
CriticalUrlMonitoring = new JuniperMist.Site.Inputs.SettingCriticalUrlMonitoringArgs
{
Enabled = false,
Monitors = new[]
{
new JuniperMist.Site.Inputs.SettingCriticalUrlMonitoringMonitorArgs
{
Url = "string",
VlanId = "string",
},
},
},
DeviceUpdownThreshold = 0,
EnableUnii4 = false,
Engagement = new JuniperMist.Site.Inputs.SettingEngagementArgs
{
DwellTagNames = new JuniperMist.Site.Inputs.SettingEngagementDwellTagNamesArgs
{
Bounce = "string",
Engaged = "string",
Passerby = "string",
Stationed = "string",
},
DwellTags = new JuniperMist.Site.Inputs.SettingEngagementDwellTagsArgs
{
Bounce = "string",
Engaged = "string",
Passerby = "string",
Stationed = "string",
},
Hours = new JuniperMist.Site.Inputs.SettingEngagementHoursArgs
{
Fri = "string",
Mon = "string",
Sat = "string",
Sun = "string",
Thu = "string",
Tue = "string",
Wed = "string",
},
MaxDwell = 0,
MinDwell = 0,
},
GatewayMgmt = new JuniperMist.Site.Inputs.SettingGatewayMgmtArgs
{
AdminSshkeys = new[]
{
"string",
},
AppProbing = new JuniperMist.Site.Inputs.SettingGatewayMgmtAppProbingArgs
{
Apps = new[]
{
"string",
},
CustomApps = new[]
{
new JuniperMist.Site.Inputs.SettingGatewayMgmtAppProbingCustomAppArgs
{
Hostnames = new[]
{
"string",
},
Name = "string",
Protocol = "string",
Address = "string",
AppType = "string",
Key = "string",
Network = "string",
PacketSize = 0,
Url = "string",
Vrf = "string",
},
},
Enabled = false,
},
AppUsage = false,
AutoSignatureUpdate = new JuniperMist.Site.Inputs.SettingGatewayMgmtAutoSignatureUpdateArgs
{
DayOfWeek = "string",
Enable = false,
TimeOfDay = "string",
},
ConfigRevertTimer = 0,
DisableConsole = false,
DisableOob = false,
DisableUsb = false,
FipsEnabled = false,
ProbeHosts = new[]
{
"string",
},
ProbeHostsv6s = new[]
{
"string",
},
ProtectRe = new JuniperMist.Site.Inputs.SettingGatewayMgmtProtectReArgs
{
AllowedServices = new[]
{
"string",
},
Customs = new[]
{
new JuniperMist.Site.Inputs.SettingGatewayMgmtProtectReCustomArgs
{
Subnets = new[]
{
"string",
},
PortRange = "string",
Protocol = "string",
},
},
Enabled = false,
HitCount = false,
TrustedHosts = new[]
{
"string",
},
},
RootPassword = "string",
SecurityLogSourceAddress = "string",
SecurityLogSourceInterface = "string",
},
GatewayTunnelUpdownThreshold = 0,
GatewayUpdownThreshold = 0,
Iotproxy = new JuniperMist.Site.Inputs.SettingIotproxyArgs
{
Enabled = false,
Visionline = new JuniperMist.Site.Inputs.SettingIotproxyVisionlineArgs
{
AccessId = "string",
Cacerts = new[]
{
"string",
},
Enabled = false,
Host = "string",
Password = "string",
Port = 0,
Username = "string",
},
},
JuniperSrx = new JuniperMist.Site.Inputs.SettingJuniperSrxArgs
{
AutoUpgrade = new JuniperMist.Site.Inputs.SettingJuniperSrxAutoUpgradeArgs
{
CustomVersions =
{
{ "string", "string" },
},
Enabled = false,
Snapshot = false,
Version = "string",
},
Gateways = new[]
{
new JuniperMist.Site.Inputs.SettingJuniperSrxGatewayArgs
{
ApiKey = "string",
ApiPassword = "string",
ApiUrl = "string",
},
},
SendMistNacUserInfo = false,
},
Led = new JuniperMist.Site.Inputs.SettingLedArgs
{
Brightness = 0,
Enabled = false,
},
Marvis = new JuniperMist.Site.Inputs.SettingMarvisArgs
{
AutoOperations = new JuniperMist.Site.Inputs.SettingMarvisAutoOperationsArgs
{
ApInsufficientCapacity = false,
ApLoop = false,
ApNonCompliant = false,
BouncePortForAbnormalPoeClient = false,
DisablePortWhenDdosProtocolViolation = false,
DisablePortWhenRogueDhcpServerDetected = false,
GatewayNonCompliant = false,
SwitchMisconfiguredPort = false,
SwitchPortStuck = false,
},
},
MxedgeMgmt = new JuniperMist.Site.Inputs.SettingMxedgeMgmtArgs
{
ConfigAutoRevert = false,
FipsEnabled = false,
MistPassword = "string",
OobIpType = "string",
OobIpType6 = "string",
RootPassword = "string",
},
Mxtunnels = new JuniperMist.Site.Inputs.SettingMxtunnelsArgs
{
AdditionalMxtunnels =
{
{ "string", new JuniperMist.Site.Inputs.SettingMxtunnelsAdditionalMxtunnelsArgs
{
HelloInterval = 0,
HelloRetries = 0,
Protocol = "string",
TuntermClusters = new[]
{
new JuniperMist.Site.Inputs.SettingMxtunnelsAdditionalMxtunnelsTuntermClusterArgs
{
Name = "string",
TuntermHosts = new[]
{
"string",
},
},
},
VlanIds = new[]
{
0,
},
} },
},
ApSubnets = new[]
{
"string",
},
AutoPreemption = new JuniperMist.Site.Inputs.SettingMxtunnelsAutoPreemptionArgs
{
DayOfWeek = "string",
Enabled = false,
TimeOfDay = "string",
},
Clusters = new[]
{
new JuniperMist.Site.Inputs.SettingMxtunnelsClusterArgs
{
Name = "string",
TuntermHosts = new[]
{
"string",
},
},
},
CreatedTime = 0,
Enabled = false,
ForSite = false,
HelloInterval = 0,
HelloRetries = 0,
Hosts = new[]
{
"string",
},
Id = "string",
ModifiedTime = 0,
Mtu = 0,
OrgId = "string",
Protocol = "string",
Radsec = new JuniperMist.Site.Inputs.SettingMxtunnelsRadsecArgs
{
AcctServers = new[]
{
new JuniperMist.Site.Inputs.SettingMxtunnelsRadsecAcctServerArgs
{
Host = "string",
Secret = "string",
KeywrapEnabled = false,
KeywrapFormat = "string",
KeywrapKek = "string",
KeywrapMack = "string",
Port = "string",
},
},
AuthServers = new[]
{
new JuniperMist.Site.Inputs.SettingMxtunnelsRadsecAuthServerArgs
{
Host = "string",
Secret = "string",
KeywrapEnabled = false,
KeywrapFormat = "string",
KeywrapKek = "string",
KeywrapMack = "string",
Port = "string",
RequireMessageAuthenticator = false,
},
},
Enabled = false,
UseMxedge = false,
},
SiteId = "string",
VlanIds = new[]
{
0,
},
},
Occupancy = new JuniperMist.Site.Inputs.SettingOccupancyArgs
{
AssetsEnabled = false,
ClientsEnabled = false,
MinDuration = 0,
SdkclientsEnabled = false,
UnconnectedClientsEnabled = false,
},
PersistConfigOnDevice = false,
Proxy = new JuniperMist.Site.Inputs.SettingProxyArgs
{
Disabled = false,
Url = "string",
},
RemoveExistingConfigs = false,
ReportGatt = false,
Rogue = new JuniperMist.Site.Inputs.SettingRogueArgs
{
AllowedVlanIds = new[]
{
0,
},
Enabled = false,
HoneypotEnabled = false,
MinDuration = 0,
MinRogueDuration = 0,
MinRogueRssi = 0,
MinRssi = 0,
WhitelistedBssids = new[]
{
"string",
},
WhitelistedSsids = new[]
{
"string",
},
},
Rtsa = new JuniperMist.Site.Inputs.SettingRtsaArgs
{
AppWaking = false,
DisableDeadReckoning = false,
DisablePressureSensor = false,
Enabled = false,
TrackAsset = false,
},
SimpleAlert = new JuniperMist.Site.Inputs.SettingSimpleAlertArgs
{
ArpFailure = new JuniperMist.Site.Inputs.SettingSimpleAlertArpFailureArgs
{
ClientCount = 0,
Duration = 0,
IncidentCount = 0,
},
DhcpFailure = new JuniperMist.Site.Inputs.SettingSimpleAlertDhcpFailureArgs
{
ClientCount = 0,
Duration = 0,
IncidentCount = 0,
},
DnsFailure = new JuniperMist.Site.Inputs.SettingSimpleAlertDnsFailureArgs
{
ClientCount = 0,
Duration = 0,
IncidentCount = 0,
},
},
Skyatp = new JuniperMist.Site.Inputs.SettingSkyatpArgs
{
Enabled = false,
SendIpMacMapping = false,
},
SleThresholds = new JuniperMist.Site.Inputs.SettingSleThresholdsArgs
{
Capacity = 0,
Coverage = 0,
Throughput = 0,
Timetoconnect = 0,
},
SrxApp = new JuniperMist.Site.Inputs.SettingSrxAppArgs
{
Enabled = false,
},
SshKeys = new[]
{
"string",
},
Ssr = new JuniperMist.Site.Inputs.SettingSsrArgs
{
AutoUpgrade = new JuniperMist.Site.Inputs.SettingSsrAutoUpgradeArgs
{
Channel = "string",
CustomVersions =
{
{ "string", "string" },
},
Enabled = false,
Version = "string",
},
ConductorHosts = new[]
{
"string",
},
ConductorToken = "string",
DisableStats = false,
Proxy = new JuniperMist.Site.Inputs.SettingSsrProxyArgs
{
Disabled = false,
Url = "string",
},
},
SwitchUpdownThreshold = 0,
SyntheticTest = new JuniperMist.Site.Inputs.SettingSyntheticTestArgs
{
Aggressiveness = "string",
CustomProbes =
{
{ "string", new JuniperMist.Site.Inputs.SettingSyntheticTestCustomProbesArgs
{
Aggressiveness = "string",
Target = "string",
Threshold = 0,
Type = "string",
} },
},
Disabled = false,
LanNetworks = new[]
{
new JuniperMist.Site.Inputs.SettingSyntheticTestLanNetworkArgs
{
Networks = new[]
{
"string",
},
Probes = new[]
{
"string",
},
},
},
WanSpeedtest = new JuniperMist.Site.Inputs.SettingSyntheticTestWanSpeedtestArgs
{
Enabled = false,
TimeOfDay = "string",
},
},
TrackAnonymousDevices = false,
TuntermMonitoringDisabled = false,
TuntermMonitorings = new[]
{
new JuniperMist.Site.Inputs.SettingTuntermMonitoringArgs
{
Host = "string",
Port = 0,
Protocol = "string",
SrcVlanId = 0,
Timeout = 0,
},
},
TuntermMulticastConfig = new JuniperMist.Site.Inputs.SettingTuntermMulticastConfigArgs
{
Mdns = new JuniperMist.Site.Inputs.SettingTuntermMulticastConfigMdnsArgs
{
Enabled = false,
VlanIds = new[]
{
0,
},
},
MulticastAll = false,
Ssdp = new JuniperMist.Site.Inputs.SettingTuntermMulticastConfigSsdpArgs
{
Enabled = false,
VlanIds = new[]
{
0,
},
},
},
UplinkPortConfig = new JuniperMist.Site.Inputs.SettingUplinkPortConfigArgs
{
Dot1x = false,
KeepWlansUpIfDown = false,
},
Vars =
{
{ "string", "string" },
},
VarsAnnotations =
{
{ "string", new JuniperMist.Site.Inputs.SettingVarsAnnotationsArgs
{
Note = "string",
Type = "string",
} },
},
Vna = new JuniperMist.Site.Inputs.SettingVnaArgs
{
Enabled = false,
},
VpnPathUpdownThreshold = 0,
VpnPeerUpdownThreshold = 0,
VsInstance =
{
{ "string", new JuniperMist.Site.Inputs.SettingVsInstanceArgs
{
Networks = new[]
{
"string",
},
} },
},
WanVna = new JuniperMist.Site.Inputs.SettingWanVnaArgs
{
Enabled = false,
},
Wids = new JuniperMist.Site.Inputs.SettingWidsArgs
{
RepeatedAuthFailures = new JuniperMist.Site.Inputs.SettingWidsRepeatedAuthFailuresArgs
{
Duration = 0,
Threshold = 0,
},
},
Wifi = new JuniperMist.Site.Inputs.SettingWifiArgs
{
CiscoEnabled = false,
Disable11k = false,
DisableRadiosWhenPowerConstrained = false,
EnableArpSpoofCheck = false,
EnableSharedRadioScanning = false,
Enabled = false,
LocateConnected = false,
LocateUnconnected = false,
MeshAllowDfs = false,
MeshEnableCrm = false,
MeshEnabled = false,
MeshPsk = "string",
MeshSsid = "string",
ProxyArp = "string",
},
WiredVna = new JuniperMist.Site.Inputs.SettingWiredVnaArgs
{
Enabled = false,
},
ZoneOccupancyAlert = new JuniperMist.Site.Inputs.SettingZoneOccupancyAlertArgs
{
EmailNotifiers = new[]
{
"string",
},
Enabled = false,
Threshold = 0,
},
});
example, err := site.NewSetting(ctx, "junipermistSettingResource", &site.SettingArgs{
SiteId: pulumi.String("string"),
AllowMist: pulumi.Bool(false),
Analytic: &site.SettingAnalyticArgs{
Enabled: pulumi.Bool(false),
},
ApSyntheticTest: &site.SettingApSyntheticTestArgs{
AdditionalVlanIds: pulumi.StringArray{
pulumi.String("string"),
},
},
ApUpdownThreshold: pulumi.Int(0),
AutoUpgrade: &site.SettingAutoUpgradeArgs{
CustomVersions: pulumi.StringMap{
"string": pulumi.String("string"),
},
DayOfWeek: pulumi.String("string"),
Enabled: pulumi.Bool(false),
TimeOfDay: pulumi.String("string"),
Version: pulumi.String("string"),
},
AutoUpgradeEsl: &site.SettingAutoUpgradeEslArgs{
AllowDowngrade: pulumi.Bool(false),
CustomVersions: pulumi.StringMap{
"string": pulumi.String("string"),
},
DayOfWeek: pulumi.String("string"),
Enabled: pulumi.Bool(false),
TimeOfDay: pulumi.String("string"),
Version: pulumi.String("string"),
},
BgpNeighborUpdownThreshold: pulumi.Int(0),
BleConfig: &site.SettingBleConfigArgs{
BeaconEnabled: pulumi.Bool(false),
BeaconRate: pulumi.Int(0),
BeaconRateMode: pulumi.String("string"),
BeamDisableds: pulumi.IntArray{
pulumi.Int(0),
},
CustomBlePacketEnabled: pulumi.Bool(false),
CustomBlePacketFrame: pulumi.String("string"),
CustomBlePacketFreqMsec: pulumi.Int(0),
EddystoneUidAdvPower: pulumi.Int(0),
EddystoneUidBeams: pulumi.String("string"),
EddystoneUidEnabled: pulumi.Bool(false),
EddystoneUidFreqMsec: pulumi.Int(0),
EddystoneUidInstance: pulumi.String("string"),
EddystoneUidNamespace: pulumi.String("string"),
EddystoneUrlAdvPower: pulumi.Int(0),
EddystoneUrlBeams: pulumi.String("string"),
EddystoneUrlEnabled: pulumi.Bool(false),
EddystoneUrlFreqMsec: pulumi.Int(0),
EddystoneUrlUrl: pulumi.String("string"),
IbeaconAdvPower: pulumi.Int(0),
IbeaconBeams: pulumi.String("string"),
IbeaconEnabled: pulumi.Bool(false),
IbeaconFreqMsec: pulumi.Int(0),
IbeaconMajor: pulumi.Int(0),
IbeaconMinor: pulumi.Int(0),
IbeaconUuid: pulumi.String("string"),
Power: pulumi.Int(0),
PowerMode: pulumi.String("string"),
},
ConfigAutoRevert: pulumi.Bool(false),
ConfigPushPolicy: &site.SettingConfigPushPolicyArgs{
NoPush: pulumi.Bool(false),
PushWindow: &site.SettingConfigPushPolicyPushWindowArgs{
Enabled: pulumi.Bool(false),
Hours: &site.SettingConfigPushPolicyPushWindowHoursArgs{
Fri: pulumi.String("string"),
Mon: pulumi.String("string"),
Sat: pulumi.String("string"),
Sun: pulumi.String("string"),
Thu: pulumi.String("string"),
Tue: pulumi.String("string"),
Wed: pulumi.String("string"),
},
},
},
CriticalUrlMonitoring: &site.SettingCriticalUrlMonitoringArgs{
Enabled: pulumi.Bool(false),
Monitors: site.SettingCriticalUrlMonitoringMonitorArray{
&site.SettingCriticalUrlMonitoringMonitorArgs{
Url: pulumi.String("string"),
VlanId: pulumi.String("string"),
},
},
},
DeviceUpdownThreshold: pulumi.Int(0),
EnableUnii4: pulumi.Bool(false),
Engagement: &site.SettingEngagementArgs{
DwellTagNames: &site.SettingEngagementDwellTagNamesArgs{
Bounce: pulumi.String("string"),
Engaged: pulumi.String("string"),
Passerby: pulumi.String("string"),
Stationed: pulumi.String("string"),
},
DwellTags: &site.SettingEngagementDwellTagsArgs{
Bounce: pulumi.String("string"),
Engaged: pulumi.String("string"),
Passerby: pulumi.String("string"),
Stationed: pulumi.String("string"),
},
Hours: &site.SettingEngagementHoursArgs{
Fri: pulumi.String("string"),
Mon: pulumi.String("string"),
Sat: pulumi.String("string"),
Sun: pulumi.String("string"),
Thu: pulumi.String("string"),
Tue: pulumi.String("string"),
Wed: pulumi.String("string"),
},
MaxDwell: pulumi.Int(0),
MinDwell: pulumi.Int(0),
},
GatewayMgmt: &site.SettingGatewayMgmtArgs{
AdminSshkeys: pulumi.StringArray{
pulumi.String("string"),
},
AppProbing: &site.SettingGatewayMgmtAppProbingArgs{
Apps: pulumi.StringArray{
pulumi.String("string"),
},
CustomApps: site.SettingGatewayMgmtAppProbingCustomAppArray{
&site.SettingGatewayMgmtAppProbingCustomAppArgs{
Hostnames: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Protocol: pulumi.String("string"),
Address: pulumi.String("string"),
AppType: pulumi.String("string"),
Key: pulumi.String("string"),
Network: pulumi.String("string"),
PacketSize: pulumi.Int(0),
Url: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
Enabled: pulumi.Bool(false),
},
AppUsage: pulumi.Bool(false),
AutoSignatureUpdate: &site.SettingGatewayMgmtAutoSignatureUpdateArgs{
DayOfWeek: pulumi.String("string"),
Enable: pulumi.Bool(false),
TimeOfDay: pulumi.String("string"),
},
ConfigRevertTimer: pulumi.Int(0),
DisableConsole: pulumi.Bool(false),
DisableOob: pulumi.Bool(false),
DisableUsb: pulumi.Bool(false),
FipsEnabled: pulumi.Bool(false),
ProbeHosts: pulumi.StringArray{
pulumi.String("string"),
},
ProbeHostsv6s: pulumi.StringArray{
pulumi.String("string"),
},
ProtectRe: &site.SettingGatewayMgmtProtectReArgs{
AllowedServices: pulumi.StringArray{
pulumi.String("string"),
},
Customs: site.SettingGatewayMgmtProtectReCustomArray{
&site.SettingGatewayMgmtProtectReCustomArgs{
Subnets: pulumi.StringArray{
pulumi.String("string"),
},
PortRange: pulumi.String("string"),
Protocol: pulumi.String("string"),
},
},
Enabled: pulumi.Bool(false),
HitCount: pulumi.Bool(false),
TrustedHosts: pulumi.StringArray{
pulumi.String("string"),
},
},
RootPassword: pulumi.String("string"),
SecurityLogSourceAddress: pulumi.String("string"),
SecurityLogSourceInterface: pulumi.String("string"),
},
GatewayTunnelUpdownThreshold: pulumi.Int(0),
GatewayUpdownThreshold: pulumi.Int(0),
Iotproxy: &site.SettingIotproxyArgs{
Enabled: pulumi.Bool(false),
Visionline: &site.SettingIotproxyVisionlineArgs{
AccessId: pulumi.String("string"),
Cacerts: pulumi.StringArray{
pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Host: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Int(0),
Username: pulumi.String("string"),
},
},
JuniperSrx: &site.SettingJuniperSrxArgs{
AutoUpgrade: &site.SettingJuniperSrxAutoUpgradeArgs{
CustomVersions: pulumi.StringMap{
"string": pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Snapshot: pulumi.Bool(false),
Version: pulumi.String("string"),
},
Gateways: site.SettingJuniperSrxGatewayArray{
&site.SettingJuniperSrxGatewayArgs{
ApiKey: pulumi.String("string"),
ApiPassword: pulumi.String("string"),
ApiUrl: pulumi.String("string"),
},
},
SendMistNacUserInfo: pulumi.Bool(false),
},
Led: &site.SettingLedArgs{
Brightness: pulumi.Int(0),
Enabled: pulumi.Bool(false),
},
Marvis: &site.SettingMarvisArgs{
AutoOperations: &site.SettingMarvisAutoOperationsArgs{
ApInsufficientCapacity: pulumi.Bool(false),
ApLoop: pulumi.Bool(false),
ApNonCompliant: pulumi.Bool(false),
BouncePortForAbnormalPoeClient: pulumi.Bool(false),
DisablePortWhenDdosProtocolViolation: pulumi.Bool(false),
DisablePortWhenRogueDhcpServerDetected: pulumi.Bool(false),
GatewayNonCompliant: pulumi.Bool(false),
SwitchMisconfiguredPort: pulumi.Bool(false),
SwitchPortStuck: pulumi.Bool(false),
},
},
MxedgeMgmt: &site.SettingMxedgeMgmtArgs{
ConfigAutoRevert: pulumi.Bool(false),
FipsEnabled: pulumi.Bool(false),
MistPassword: pulumi.String("string"),
OobIpType: pulumi.String("string"),
OobIpType6: pulumi.String("string"),
RootPassword: pulumi.String("string"),
},
Mxtunnels: &site.SettingMxtunnelsArgs{
AdditionalMxtunnels: site.SettingMxtunnelsAdditionalMxtunnelsMap{
"string": &site.SettingMxtunnelsAdditionalMxtunnelsArgs{
HelloInterval: pulumi.Int(0),
HelloRetries: pulumi.Int(0),
Protocol: pulumi.String("string"),
TuntermClusters: site.SettingMxtunnelsAdditionalMxtunnelsTuntermClusterArray{
&site.SettingMxtunnelsAdditionalMxtunnelsTuntermClusterArgs{
Name: pulumi.String("string"),
TuntermHosts: pulumi.StringArray{
pulumi.String("string"),
},
},
},
VlanIds: pulumi.IntArray{
pulumi.Int(0),
},
},
},
ApSubnets: pulumi.StringArray{
pulumi.String("string"),
},
AutoPreemption: &site.SettingMxtunnelsAutoPreemptionArgs{
DayOfWeek: pulumi.String("string"),
Enabled: pulumi.Bool(false),
TimeOfDay: pulumi.String("string"),
},
Clusters: site.SettingMxtunnelsClusterArray{
&site.SettingMxtunnelsClusterArgs{
Name: pulumi.String("string"),
TuntermHosts: pulumi.StringArray{
pulumi.String("string"),
},
},
},
CreatedTime: pulumi.Float64(0),
Enabled: pulumi.Bool(false),
ForSite: pulumi.Bool(false),
HelloInterval: pulumi.Int(0),
HelloRetries: pulumi.Int(0),
Hosts: pulumi.StringArray{
pulumi.String("string"),
},
Id: pulumi.String("string"),
ModifiedTime: pulumi.Float64(0),
Mtu: pulumi.Int(0),
OrgId: pulumi.String("string"),
Protocol: pulumi.String("string"),
Radsec: &site.SettingMxtunnelsRadsecArgs{
AcctServers: site.SettingMxtunnelsRadsecAcctServerArray{
&site.SettingMxtunnelsRadsecAcctServerArgs{
Host: pulumi.String("string"),
Secret: pulumi.String("string"),
KeywrapEnabled: pulumi.Bool(false),
KeywrapFormat: pulumi.String("string"),
KeywrapKek: pulumi.String("string"),
KeywrapMack: pulumi.String("string"),
Port: pulumi.String("string"),
},
},
AuthServers: site.SettingMxtunnelsRadsecAuthServerArray{
&site.SettingMxtunnelsRadsecAuthServerArgs{
Host: pulumi.String("string"),
Secret: pulumi.String("string"),
KeywrapEnabled: pulumi.Bool(false),
KeywrapFormat: pulumi.String("string"),
KeywrapKek: pulumi.String("string"),
KeywrapMack: pulumi.String("string"),
Port: pulumi.String("string"),
RequireMessageAuthenticator: pulumi.Bool(false),
},
},
Enabled: pulumi.Bool(false),
UseMxedge: pulumi.Bool(false),
},
SiteId: pulumi.String("string"),
VlanIds: pulumi.IntArray{
pulumi.Int(0),
},
},
Occupancy: &site.SettingOccupancyArgs{
AssetsEnabled: pulumi.Bool(false),
ClientsEnabled: pulumi.Bool(false),
MinDuration: pulumi.Int(0),
SdkclientsEnabled: pulumi.Bool(false),
UnconnectedClientsEnabled: pulumi.Bool(false),
},
PersistConfigOnDevice: pulumi.Bool(false),
Proxy: &site.SettingProxyArgs{
Disabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
RemoveExistingConfigs: pulumi.Bool(false),
ReportGatt: pulumi.Bool(false),
Rogue: &site.SettingRogueArgs{
AllowedVlanIds: pulumi.IntArray{
pulumi.Int(0),
},
Enabled: pulumi.Bool(false),
HoneypotEnabled: pulumi.Bool(false),
MinDuration: pulumi.Int(0),
MinRogueDuration: pulumi.Int(0),
MinRogueRssi: pulumi.Int(0),
MinRssi: pulumi.Int(0),
WhitelistedBssids: pulumi.StringArray{
pulumi.String("string"),
},
WhitelistedSsids: pulumi.StringArray{
pulumi.String("string"),
},
},
Rtsa: &site.SettingRtsaArgs{
AppWaking: pulumi.Bool(false),
DisableDeadReckoning: pulumi.Bool(false),
DisablePressureSensor: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
TrackAsset: pulumi.Bool(false),
},
SimpleAlert: &site.SettingSimpleAlertArgs{
ArpFailure: &site.SettingSimpleAlertArpFailureArgs{
ClientCount: pulumi.Int(0),
Duration: pulumi.Int(0),
IncidentCount: pulumi.Int(0),
},
DhcpFailure: &site.SettingSimpleAlertDhcpFailureArgs{
ClientCount: pulumi.Int(0),
Duration: pulumi.Int(0),
IncidentCount: pulumi.Int(0),
},
DnsFailure: &site.SettingSimpleAlertDnsFailureArgs{
ClientCount: pulumi.Int(0),
Duration: pulumi.Int(0),
IncidentCount: pulumi.Int(0),
},
},
Skyatp: &site.SettingSkyatpArgs{
Enabled: pulumi.Bool(false),
SendIpMacMapping: pulumi.Bool(false),
},
SleThresholds: &site.SettingSleThresholdsArgs{
Capacity: pulumi.Int(0),
Coverage: pulumi.Int(0),
Throughput: pulumi.Int(0),
Timetoconnect: pulumi.Int(0),
},
SrxApp: &site.SettingSrxAppArgs{
Enabled: pulumi.Bool(false),
},
SshKeys: pulumi.StringArray{
pulumi.String("string"),
},
Ssr: &site.SettingSsrArgs{
AutoUpgrade: &site.SettingSsrAutoUpgradeArgs{
Channel: pulumi.String("string"),
CustomVersions: pulumi.StringMap{
"string": pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Version: pulumi.String("string"),
},
ConductorHosts: pulumi.StringArray{
pulumi.String("string"),
},
ConductorToken: pulumi.String("string"),
DisableStats: pulumi.Bool(false),
Proxy: &site.SettingSsrProxyArgs{
Disabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
SwitchUpdownThreshold: pulumi.Int(0),
SyntheticTest: &site.SettingSyntheticTestArgs{
Aggressiveness: pulumi.String("string"),
CustomProbes: site.SettingSyntheticTestCustomProbesMap{
"string": &site.SettingSyntheticTestCustomProbesArgs{
Aggressiveness: pulumi.String("string"),
Target: pulumi.String("string"),
Threshold: pulumi.Int(0),
Type: pulumi.String("string"),
},
},
Disabled: pulumi.Bool(false),
LanNetworks: site.SettingSyntheticTestLanNetworkArray{
&site.SettingSyntheticTestLanNetworkArgs{
Networks: pulumi.StringArray{
pulumi.String("string"),
},
Probes: pulumi.StringArray{
pulumi.String("string"),
},
},
},
WanSpeedtest: &site.SettingSyntheticTestWanSpeedtestArgs{
Enabled: pulumi.Bool(false),
TimeOfDay: pulumi.String("string"),
},
},
TrackAnonymousDevices: pulumi.Bool(false),
TuntermMonitoringDisabled: pulumi.Bool(false),
TuntermMonitorings: site.SettingTuntermMonitoringArray{
&site.SettingTuntermMonitoringArgs{
Host: pulumi.String("string"),
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
SrcVlanId: pulumi.Int(0),
Timeout: pulumi.Int(0),
},
},
TuntermMulticastConfig: &site.SettingTuntermMulticastConfigArgs{
Mdns: &site.SettingTuntermMulticastConfigMdnsArgs{
Enabled: pulumi.Bool(false),
VlanIds: pulumi.IntArray{
pulumi.Int(0),
},
},
MulticastAll: pulumi.Bool(false),
Ssdp: &site.SettingTuntermMulticastConfigSsdpArgs{
Enabled: pulumi.Bool(false),
VlanIds: pulumi.IntArray{
pulumi.Int(0),
},
},
},
UplinkPortConfig: &site.SettingUplinkPortConfigArgs{
Dot1x: pulumi.Bool(false),
KeepWlansUpIfDown: pulumi.Bool(false),
},
Vars: pulumi.StringMap{
"string": pulumi.String("string"),
},
VarsAnnotations: site.SettingVarsAnnotationsMap{
"string": &site.SettingVarsAnnotationsArgs{
Note: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Vna: &site.SettingVnaArgs{
Enabled: pulumi.Bool(false),
},
VpnPathUpdownThreshold: pulumi.Int(0),
VpnPeerUpdownThreshold: pulumi.Int(0),
VsInstance: site.SettingVsInstanceMap{
"string": &site.SettingVsInstanceArgs{
Networks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
WanVna: &site.SettingWanVnaArgs{
Enabled: pulumi.Bool(false),
},
Wids: &site.SettingWidsArgs{
RepeatedAuthFailures: &site.SettingWidsRepeatedAuthFailuresArgs{
Duration: pulumi.Int(0),
Threshold: pulumi.Int(0),
},
},
Wifi: &site.SettingWifiArgs{
CiscoEnabled: pulumi.Bool(false),
Disable11k: pulumi.Bool(false),
DisableRadiosWhenPowerConstrained: pulumi.Bool(false),
EnableArpSpoofCheck: pulumi.Bool(false),
EnableSharedRadioScanning: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
LocateConnected: pulumi.Bool(false),
LocateUnconnected: pulumi.Bool(false),
MeshAllowDfs: pulumi.Bool(false),
MeshEnableCrm: pulumi.Bool(false),
MeshEnabled: pulumi.Bool(false),
MeshPsk: pulumi.String("string"),
MeshSsid: pulumi.String("string"),
ProxyArp: pulumi.String("string"),
},
WiredVna: &site.SettingWiredVnaArgs{
Enabled: pulumi.Bool(false),
},
ZoneOccupancyAlert: &site.SettingZoneOccupancyAlertArgs{
EmailNotifiers: pulumi.StringArray{
pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Threshold: pulumi.Int(0),
},
})
resource "junipermist_site_setting" "junipermistSettingResource" {
site_id = "string"
allow_mist = false
analytic = {
enabled = false
}
ap_synthetic_test = {
additional_vlan_ids = ["string"]
}
ap_updown_threshold = 0
auto_upgrade = {
custom_versions = {
"string" = "string"
}
day_of_week = "string"
enabled = false
time_of_day = "string"
version = "string"
}
auto_upgrade_esl = {
allow_downgrade = false
custom_versions = {
"string" = "string"
}
day_of_week = "string"
enabled = false
time_of_day = "string"
version = "string"
}
bgp_neighbor_updown_threshold = 0
ble_config = {
beacon_enabled = false
beacon_rate = 0
beacon_rate_mode = "string"
beam_disableds = [0]
custom_ble_packet_enabled = false
custom_ble_packet_frame = "string"
custom_ble_packet_freq_msec = 0
eddystone_uid_adv_power = 0
eddystone_uid_beams = "string"
eddystone_uid_enabled = false
eddystone_uid_freq_msec = 0
eddystone_uid_instance = "string"
eddystone_uid_namespace = "string"
eddystone_url_adv_power = 0
eddystone_url_beams = "string"
eddystone_url_enabled = false
eddystone_url_freq_msec = 0
eddystone_url_url = "string"
ibeacon_adv_power = 0
ibeacon_beams = "string"
ibeacon_enabled = false
ibeacon_freq_msec = 0
ibeacon_major = 0
ibeacon_minor = 0
ibeacon_uuid = "string"
power = 0
power_mode = "string"
}
config_auto_revert = false
config_push_policy = {
no_push = false
push_window = {
enabled = false
hours = {
fri = "string"
mon = "string"
sat = "string"
sun = "string"
thu = "string"
tue = "string"
wed = "string"
}
}
}
critical_url_monitoring = {
enabled = false
monitors = [{
"url" = "string"
"vlanId" = "string"
}]
}
device_updown_threshold = 0
enable_unii4 = false
engagement = {
dwell_tag_names = {
bounce = "string"
engaged = "string"
passerby = "string"
stationed = "string"
}
dwell_tags = {
bounce = "string"
engaged = "string"
passerby = "string"
stationed = "string"
}
hours = {
fri = "string"
mon = "string"
sat = "string"
sun = "string"
thu = "string"
tue = "string"
wed = "string"
}
max_dwell = 0
min_dwell = 0
}
gateway_mgmt = {
admin_sshkeys = ["string"]
app_probing = {
apps = ["string"]
custom_apps = [{
"hostnames" = ["string"]
"name" = "string"
"protocol" = "string"
"address" = "string"
"appType" = "string"
"key" = "string"
"network" = "string"
"packetSize" = 0
"url" = "string"
"vrf" = "string"
}]
enabled = false
}
app_usage = false
auto_signature_update = {
day_of_week = "string"
enable = false
time_of_day = "string"
}
config_revert_timer = 0
disable_console = false
disable_oob = false
disable_usb = false
fips_enabled = false
probe_hosts = ["string"]
probe_hostsv6s = ["string"]
protect_re = {
allowed_services = ["string"]
customs = [{
"subnets" = ["string"]
"portRange" = "string"
"protocol" = "string"
}]
enabled = false
hit_count = false
trusted_hosts = ["string"]
}
root_password = "string"
security_log_source_address = "string"
security_log_source_interface = "string"
}
gateway_tunnel_updown_threshold = 0
gateway_updown_threshold = 0
iotproxy = {
enabled = false
visionline = {
access_id = "string"
cacerts = ["string"]
enabled = false
host = "string"
password = "string"
port = 0
username = "string"
}
}
juniper_srx = {
auto_upgrade = {
custom_versions = {
"string" = "string"
}
enabled = false
snapshot = false
version = "string"
}
gateways = [{
"apiKey" = "string"
"apiPassword" = "string"
"apiUrl" = "string"
}]
send_mist_nac_user_info = false
}
led = {
brightness = 0
enabled = false
}
marvis = {
auto_operations = {
ap_insufficient_capacity = false
ap_loop = false
ap_non_compliant = false
bounce_port_for_abnormal_poe_client = false
disable_port_when_ddos_protocol_violation = false
disable_port_when_rogue_dhcp_server_detected = false
gateway_non_compliant = false
switch_misconfigured_port = false
switch_port_stuck = false
}
}
mxedge_mgmt = {
config_auto_revert = false
fips_enabled = false
mist_password = "string"
oob_ip_type = "string"
oob_ip_type6 = "string"
root_password = "string"
}
mxtunnels = {
additional_mxtunnels = {
"string" = {
hello_interval = 0
hello_retries = 0
protocol = "string"
tunterm_clusters = [{
"name" = "string"
"tuntermHosts" = ["string"]
}]
vlan_ids = [0]
}
}
ap_subnets = ["string"]
auto_preemption = {
day_of_week = "string"
enabled = false
time_of_day = "string"
}
clusters = [{
"name" = "string"
"tuntermHosts" = ["string"]
}]
created_time = 0
enabled = false
for_site = false
hello_interval = 0
hello_retries = 0
hosts = ["string"]
id = "string"
modified_time = 0
mtu = 0
org_id = "string"
protocol = "string"
radsec = {
acct_servers = [{
"host" = "string"
"secret" = "string"
"keywrapEnabled" = false
"keywrapFormat" = "string"
"keywrapKek" = "string"
"keywrapMack" = "string"
"port" = "string"
}]
auth_servers = [{
"host" = "string"
"secret" = "string"
"keywrapEnabled" = false
"keywrapFormat" = "string"
"keywrapKek" = "string"
"keywrapMack" = "string"
"port" = "string"
"requireMessageAuthenticator" = false
}]
enabled = false
use_mxedge = false
}
site_id = "string"
vlan_ids = [0]
}
occupancy = {
assets_enabled = false
clients_enabled = false
min_duration = 0
sdkclients_enabled = false
unconnected_clients_enabled = false
}
persist_config_on_device = false
proxy = {
disabled = false
url = "string"
}
remove_existing_configs = false
report_gatt = false
rogue = {
allowed_vlan_ids = [0]
enabled = false
honeypot_enabled = false
min_duration = 0
min_rogue_duration = 0
min_rogue_rssi = 0
min_rssi = 0
whitelisted_bssids = ["string"]
whitelisted_ssids = ["string"]
}
rtsa = {
app_waking = false
disable_dead_reckoning = false
disable_pressure_sensor = false
enabled = false
track_asset = false
}
simple_alert = {
arp_failure = {
client_count = 0
duration = 0
incident_count = 0
}
dhcp_failure = {
client_count = 0
duration = 0
incident_count = 0
}
dns_failure = {
client_count = 0
duration = 0
incident_count = 0
}
}
skyatp = {
enabled = false
send_ip_mac_mapping = false
}
sle_thresholds = {
capacity = 0
coverage = 0
throughput = 0
timetoconnect = 0
}
srx_app = {
enabled = false
}
ssh_keys = ["string"]
ssr = {
auto_upgrade = {
channel = "string"
custom_versions = {
"string" = "string"
}
enabled = false
version = "string"
}
conductor_hosts = ["string"]
conductor_token = "string"
disable_stats = false
proxy = {
disabled = false
url = "string"
}
}
switch_updown_threshold = 0
synthetic_test = {
aggressiveness = "string"
custom_probes = {
"string" = {
aggressiveness = "string"
target = "string"
threshold = 0
type = "string"
}
}
disabled = false
lan_networks = [{
"networks" = ["string"]
"probes" = ["string"]
}]
wan_speedtest = {
enabled = false
time_of_day = "string"
}
}
track_anonymous_devices = false
tunterm_monitoring_disabled = false
tunterm_monitorings {
host = "string"
port = 0
protocol = "string"
src_vlan_id = 0
timeout = 0
}
tunterm_multicast_config = {
mdns = {
enabled = false
vlan_ids = [0]
}
multicast_all = false
ssdp = {
enabled = false
vlan_ids = [0]
}
}
uplink_port_config = {
dot1x = false
keep_wlans_up_if_down = false
}
vars = {
"string" = "string"
}
vars_annotations = {
"string" = {
note = "string"
type = "string"
}
}
vna = {
enabled = false
}
vpn_path_updown_threshold = 0
vpn_peer_updown_threshold = 0
vs_instance = {
"string" = {
networks = ["string"]
}
}
wan_vna = {
enabled = false
}
wids = {
repeated_auth_failures = {
duration = 0
threshold = 0
}
}
wifi = {
cisco_enabled = false
disable11k = false
disable_radios_when_power_constrained = false
enable_arp_spoof_check = false
enable_shared_radio_scanning = false
enabled = false
locate_connected = false
locate_unconnected = false
mesh_allow_dfs = false
mesh_enable_crm = false
mesh_enabled = false
mesh_psk = "string"
mesh_ssid = "string"
proxy_arp = "string"
}
wired_vna = {
enabled = false
}
zone_occupancy_alert = {
email_notifiers = ["string"]
enabled = false
threshold = 0
}
}
var junipermistSettingResource = new com.pulumi.junipermist.site.Setting("junipermistSettingResource", com.pulumi.junipermist.site.SettingArgs.builder()
.siteId("string")
.allowMist(false)
.analytic(SettingAnalyticArgs.builder()
.enabled(false)
.build())
.apSyntheticTest(SettingApSyntheticTestArgs.builder()
.additionalVlanIds("string")
.build())
.apUpdownThreshold(0)
.autoUpgrade(com.pulumi.junipermist.site.inputs.SettingAutoUpgradeArgs.builder()
.customVersions(Map.of("string", "string"))
.dayOfWeek("string")
.enabled(false)
.timeOfDay("string")
.version("string")
.build())
.autoUpgradeEsl(SettingAutoUpgradeEslArgs.builder()
.allowDowngrade(false)
.customVersions(Map.of("string", "string"))
.dayOfWeek("string")
.enabled(false)
.timeOfDay("string")
.version("string")
.build())
.bgpNeighborUpdownThreshold(0)
.bleConfig(SettingBleConfigArgs.builder()
.beaconEnabled(false)
.beaconRate(0)
.beaconRateMode("string")
.beamDisableds(0)
.customBlePacketEnabled(false)
.customBlePacketFrame("string")
.customBlePacketFreqMsec(0)
.eddystoneUidAdvPower(0)
.eddystoneUidBeams("string")
.eddystoneUidEnabled(false)
.eddystoneUidFreqMsec(0)
.eddystoneUidInstance("string")
.eddystoneUidNamespace("string")
.eddystoneUrlAdvPower(0)
.eddystoneUrlBeams("string")
.eddystoneUrlEnabled(false)
.eddystoneUrlFreqMsec(0)
.eddystoneUrlUrl("string")
.ibeaconAdvPower(0)
.ibeaconBeams("string")
.ibeaconEnabled(false)
.ibeaconFreqMsec(0)
.ibeaconMajor(0)
.ibeaconMinor(0)
.ibeaconUuid("string")
.power(0)
.powerMode("string")
.build())
.configAutoRevert(false)
.configPushPolicy(SettingConfigPushPolicyArgs.builder()
.noPush(false)
.pushWindow(SettingConfigPushPolicyPushWindowArgs.builder()
.enabled(false)
.hours(SettingConfigPushPolicyPushWindowHoursArgs.builder()
.fri("string")
.mon("string")
.sat("string")
.sun("string")
.thu("string")
.tue("string")
.wed("string")
.build())
.build())
.build())
.criticalUrlMonitoring(SettingCriticalUrlMonitoringArgs.builder()
.enabled(false)
.monitors(SettingCriticalUrlMonitoringMonitorArgs.builder()
.url("string")
.vlanId("string")
.build())
.build())
.deviceUpdownThreshold(0)
.enableUnii4(false)
.engagement(SettingEngagementArgs.builder()
.dwellTagNames(SettingEngagementDwellTagNamesArgs.builder()
.bounce("string")
.engaged("string")
.passerby("string")
.stationed("string")
.build())
.dwellTags(SettingEngagementDwellTagsArgs.builder()
.bounce("string")
.engaged("string")
.passerby("string")
.stationed("string")
.build())
.hours(SettingEngagementHoursArgs.builder()
.fri("string")
.mon("string")
.sat("string")
.sun("string")
.thu("string")
.tue("string")
.wed("string")
.build())
.maxDwell(0)
.minDwell(0)
.build())
.gatewayMgmt(SettingGatewayMgmtArgs.builder()
.adminSshkeys("string")
.appProbing(SettingGatewayMgmtAppProbingArgs.builder()
.apps("string")
.customApps(SettingGatewayMgmtAppProbingCustomAppArgs.builder()
.hostnames("string")
.name("string")
.protocol("string")
.address("string")
.appType("string")
.key("string")
.network("string")
.packetSize(0)
.url("string")
.vrf("string")
.build())
.enabled(false)
.build())
.appUsage(false)
.autoSignatureUpdate(SettingGatewayMgmtAutoSignatureUpdateArgs.builder()
.dayOfWeek("string")
.enable(false)
.timeOfDay("string")
.build())
.configRevertTimer(0)
.disableConsole(false)
.disableOob(false)
.disableUsb(false)
.fipsEnabled(false)
.probeHosts("string")
.probeHostsv6s("string")
.protectRe(SettingGatewayMgmtProtectReArgs.builder()
.allowedServices("string")
.customs(SettingGatewayMgmtProtectReCustomArgs.builder()
.subnets("string")
.portRange("string")
.protocol("string")
.build())
.enabled(false)
.hitCount(false)
.trustedHosts("string")
.build())
.rootPassword("string")
.securityLogSourceAddress("string")
.securityLogSourceInterface("string")
.build())
.gatewayTunnelUpdownThreshold(0)
.gatewayUpdownThreshold(0)
.iotproxy(SettingIotproxyArgs.builder()
.enabled(false)
.visionline(SettingIotproxyVisionlineArgs.builder()
.accessId("string")
.cacerts("string")
.enabled(false)
.host("string")
.password("string")
.port(0)
.username("string")
.build())
.build())
.juniperSrx(com.pulumi.junipermist.site.inputs.SettingJuniperSrxArgs.builder()
.autoUpgrade(com.pulumi.junipermist.site.inputs.SettingJuniperSrxAutoUpgradeArgs.builder()
.customVersions(Map.of("string", "string"))
.enabled(false)
.snapshot(false)
.version("string")
.build())
.gateways(SettingJuniperSrxGatewayArgs.builder()
.apiKey("string")
.apiPassword("string")
.apiUrl("string")
.build())
.sendMistNacUserInfo(false)
.build())
.led(SettingLedArgs.builder()
.brightness(0)
.enabled(false)
.build())
.marvis(com.pulumi.junipermist.site.inputs.SettingMarvisArgs.builder()
.autoOperations(SettingMarvisAutoOperationsArgs.builder()
.apInsufficientCapacity(false)
.apLoop(false)
.apNonCompliant(false)
.bouncePortForAbnormalPoeClient(false)
.disablePortWhenDdosProtocolViolation(false)
.disablePortWhenRogueDhcpServerDetected(false)
.gatewayNonCompliant(false)
.switchMisconfiguredPort(false)
.switchPortStuck(false)
.build())
.build())
.mxedgeMgmt(com.pulumi.junipermist.site.inputs.SettingMxedgeMgmtArgs.builder()
.configAutoRevert(false)
.fipsEnabled(false)
.mistPassword("string")
.oobIpType("string")
.oobIpType6("string")
.rootPassword("string")
.build())
.mxtunnels(SettingMxtunnelsArgs.builder()
.additionalMxtunnels(Map.of("string", SettingMxtunnelsAdditionalMxtunnelsArgs.builder()
.helloInterval(0)
.helloRetries(0)
.protocol("string")
.tuntermClusters(SettingMxtunnelsAdditionalMxtunnelsTuntermClusterArgs.builder()
.name("string")
.tuntermHosts("string")
.build())
.vlanIds(0)
.build()))
.apSubnets("string")
.autoPreemption(SettingMxtunnelsAutoPreemptionArgs.builder()
.dayOfWeek("string")
.enabled(false)
.timeOfDay("string")
.build())
.clusters(SettingMxtunnelsClusterArgs.builder()
.name("string")
.tuntermHosts("string")
.build())
.createdTime(0.0)
.enabled(false)
.forSite(false)
.helloInterval(0)
.helloRetries(0)
.hosts("string")
.id("string")
.modifiedTime(0.0)
.mtu(0)
.orgId("string")
.protocol("string")
.radsec(SettingMxtunnelsRadsecArgs.builder()
.acctServers(SettingMxtunnelsRadsecAcctServerArgs.builder()
.host("string")
.secret("string")
.keywrapEnabled(false)
.keywrapFormat("string")
.keywrapKek("string")
.keywrapMack("string")
.port("string")
.build())
.authServers(SettingMxtunnelsRadsecAuthServerArgs.builder()
.host("string")
.secret("string")
.keywrapEnabled(false)
.keywrapFormat("string")
.keywrapKek("string")
.keywrapMack("string")
.port("string")
.requireMessageAuthenticator(false)
.build())
.enabled(false)
.useMxedge(false)
.build())
.siteId("string")
.vlanIds(0)
.build())
.occupancy(SettingOccupancyArgs.builder()
.assetsEnabled(false)
.clientsEnabled(false)
.minDuration(0)
.sdkclientsEnabled(false)
.unconnectedClientsEnabled(false)
.build())
.persistConfigOnDevice(false)
.proxy(SettingProxyArgs.builder()
.disabled(false)
.url("string")
.build())
.removeExistingConfigs(false)
.reportGatt(false)
.rogue(SettingRogueArgs.builder()
.allowedVlanIds(0)
.enabled(false)
.honeypotEnabled(false)
.minDuration(0)
.minRogueDuration(0)
.minRogueRssi(0)
.minRssi(0)
.whitelistedBssids("string")
.whitelistedSsids("string")
.build())
.rtsa(SettingRtsaArgs.builder()
.appWaking(false)
.disableDeadReckoning(false)
.disablePressureSensor(false)
.enabled(false)
.trackAsset(false)
.build())
.simpleAlert(SettingSimpleAlertArgs.builder()
.arpFailure(SettingSimpleAlertArpFailureArgs.builder()
.clientCount(0)
.duration(0)
.incidentCount(0)
.build())
.dhcpFailure(SettingSimpleAlertDhcpFailureArgs.builder()
.clientCount(0)
.duration(0)
.incidentCount(0)
.build())
.dnsFailure(SettingSimpleAlertDnsFailureArgs.builder()
.clientCount(0)
.duration(0)
.incidentCount(0)
.build())
.build())
.skyatp(SettingSkyatpArgs.builder()
.enabled(false)
.sendIpMacMapping(false)
.build())
.sleThresholds(SettingSleThresholdsArgs.builder()
.capacity(0)
.coverage(0)
.throughput(0)
.timetoconnect(0)
.build())
.srxApp(SettingSrxAppArgs.builder()
.enabled(false)
.build())
.sshKeys("string")
.ssr(com.pulumi.junipermist.site.inputs.SettingSsrArgs.builder()
.autoUpgrade(com.pulumi.junipermist.site.inputs.SettingSsrAutoUpgradeArgs.builder()
.channel("string")
.customVersions(Map.of("string", "string"))
.enabled(false)
.version("string")
.build())
.conductorHosts("string")
.conductorToken("string")
.disableStats(false)
.proxy(com.pulumi.junipermist.site.inputs.SettingSsrProxyArgs.builder()
.disabled(false)
.url("string")
.build())
.build())
.switchUpdownThreshold(0)
.syntheticTest(com.pulumi.junipermist.site.inputs.SettingSyntheticTestArgs.builder()
.aggressiveness("string")
.customProbes(Map.of("string", com.pulumi.junipermist.site.inputs.SettingSyntheticTestCustomProbesArgs.builder()
.aggressiveness("string")
.target("string")
.threshold(0)
.type("string")
.build()))
.disabled(false)
.lanNetworks(com.pulumi.junipermist.site.inputs.SettingSyntheticTestLanNetworkArgs.builder()
.networks("string")
.probes("string")
.build())
.wanSpeedtest(com.pulumi.junipermist.site.inputs.SettingSyntheticTestWanSpeedtestArgs.builder()
.enabled(false)
.timeOfDay("string")
.build())
.build())
.trackAnonymousDevices(false)
.tuntermMonitoringDisabled(false)
.tuntermMonitorings(SettingTuntermMonitoringArgs.builder()
.host("string")
.port(0)
.protocol("string")
.srcVlanId(0)
.timeout(0)
.build())
.tuntermMulticastConfig(SettingTuntermMulticastConfigArgs.builder()
.mdns(SettingTuntermMulticastConfigMdnsArgs.builder()
.enabled(false)
.vlanIds(0)
.build())
.multicastAll(false)
.ssdp(SettingTuntermMulticastConfigSsdpArgs.builder()
.enabled(false)
.vlanIds(0)
.build())
.build())
.uplinkPortConfig(SettingUplinkPortConfigArgs.builder()
.dot1x(false)
.keepWlansUpIfDown(false)
.build())
.vars(Map.of("string", "string"))
.varsAnnotations(Map.of("string", SettingVarsAnnotationsArgs.builder()
.note("string")
.type("string")
.build()))
.vna(SettingVnaArgs.builder()
.enabled(false)
.build())
.vpnPathUpdownThreshold(0)
.vpnPeerUpdownThreshold(0)
.vsInstance(Map.of("string", SettingVsInstanceArgs.builder()
.networks("string")
.build()))
.wanVna(SettingWanVnaArgs.builder()
.enabled(false)
.build())
.wids(SettingWidsArgs.builder()
.repeatedAuthFailures(SettingWidsRepeatedAuthFailuresArgs.builder()
.duration(0)
.threshold(0)
.build())
.build())
.wifi(SettingWifiArgs.builder()
.ciscoEnabled(false)
.disable11k(false)
.disableRadiosWhenPowerConstrained(false)
.enableArpSpoofCheck(false)
.enableSharedRadioScanning(false)
.enabled(false)
.locateConnected(false)
.locateUnconnected(false)
.meshAllowDfs(false)
.meshEnableCrm(false)
.meshEnabled(false)
.meshPsk("string")
.meshSsid("string")
.proxyArp("string")
.build())
.wiredVna(SettingWiredVnaArgs.builder()
.enabled(false)
.build())
.zoneOccupancyAlert(SettingZoneOccupancyAlertArgs.builder()
.emailNotifiers("string")
.enabled(false)
.threshold(0)
.build())
.build());
junipermist_setting_resource = junipermist.site.Setting("junipermistSettingResource",
site_id="string",
allow_mist=False,
analytic={
"enabled": False,
},
ap_synthetic_test={
"additional_vlan_ids": ["string"],
},
ap_updown_threshold=0,
auto_upgrade={
"custom_versions": {
"string": "string",
},
"day_of_week": "string",
"enabled": False,
"time_of_day": "string",
"version": "string",
},
auto_upgrade_esl={
"allow_downgrade": False,
"custom_versions": {
"string": "string",
},
"day_of_week": "string",
"enabled": False,
"time_of_day": "string",
"version": "string",
},
bgp_neighbor_updown_threshold=0,
ble_config={
"beacon_enabled": False,
"beacon_rate": 0,
"beacon_rate_mode": "string",
"beam_disableds": [0],
"custom_ble_packet_enabled": False,
"custom_ble_packet_frame": "string",
"custom_ble_packet_freq_msec": 0,
"eddystone_uid_adv_power": 0,
"eddystone_uid_beams": "string",
"eddystone_uid_enabled": False,
"eddystone_uid_freq_msec": 0,
"eddystone_uid_instance": "string",
"eddystone_uid_namespace": "string",
"eddystone_url_adv_power": 0,
"eddystone_url_beams": "string",
"eddystone_url_enabled": False,
"eddystone_url_freq_msec": 0,
"eddystone_url_url": "string",
"ibeacon_adv_power": 0,
"ibeacon_beams": "string",
"ibeacon_enabled": False,
"ibeacon_freq_msec": 0,
"ibeacon_major": 0,
"ibeacon_minor": 0,
"ibeacon_uuid": "string",
"power": 0,
"power_mode": "string",
},
config_auto_revert=False,
config_push_policy={
"no_push": False,
"push_window": {
"enabled": False,
"hours": {
"fri": "string",
"mon": "string",
"sat": "string",
"sun": "string",
"thu": "string",
"tue": "string",
"wed": "string",
},
},
},
critical_url_monitoring={
"enabled": False,
"monitors": [{
"url": "string",
"vlan_id": "string",
}],
},
device_updown_threshold=0,
enable_unii4=False,
engagement={
"dwell_tag_names": {
"bounce": "string",
"engaged": "string",
"passerby": "string",
"stationed": "string",
},
"dwell_tags": {
"bounce": "string",
"engaged": "string",
"passerby": "string",
"stationed": "string",
},
"hours": {
"fri": "string",
"mon": "string",
"sat": "string",
"sun": "string",
"thu": "string",
"tue": "string",
"wed": "string",
},
"max_dwell": 0,
"min_dwell": 0,
},
gateway_mgmt={
"admin_sshkeys": ["string"],
"app_probing": {
"apps": ["string"],
"custom_apps": [{
"hostnames": ["string"],
"name": "string",
"protocol": "string",
"address": "string",
"app_type": "string",
"key": "string",
"network": "string",
"packet_size": 0,
"url": "string",
"vrf": "string",
}],
"enabled": False,
},
"app_usage": False,
"auto_signature_update": {
"day_of_week": "string",
"enable": False,
"time_of_day": "string",
},
"config_revert_timer": 0,
"disable_console": False,
"disable_oob": False,
"disable_usb": False,
"fips_enabled": False,
"probe_hosts": ["string"],
"probe_hostsv6s": ["string"],
"protect_re": {
"allowed_services": ["string"],
"customs": [{
"subnets": ["string"],
"port_range": "string",
"protocol": "string",
}],
"enabled": False,
"hit_count": False,
"trusted_hosts": ["string"],
},
"root_password": "string",
"security_log_source_address": "string",
"security_log_source_interface": "string",
},
gateway_tunnel_updown_threshold=0,
gateway_updown_threshold=0,
iotproxy={
"enabled": False,
"visionline": {
"access_id": "string",
"cacerts": ["string"],
"enabled": False,
"host": "string",
"password": "string",
"port": 0,
"username": "string",
},
},
juniper_srx={
"auto_upgrade": {
"custom_versions": {
"string": "string",
},
"enabled": False,
"snapshot": False,
"version": "string",
},
"gateways": [{
"api_key": "string",
"api_password": "string",
"api_url": "string",
}],
"send_mist_nac_user_info": False,
},
led={
"brightness": 0,
"enabled": False,
},
marvis={
"auto_operations": {
"ap_insufficient_capacity": False,
"ap_loop": False,
"ap_non_compliant": False,
"bounce_port_for_abnormal_poe_client": False,
"disable_port_when_ddos_protocol_violation": False,
"disable_port_when_rogue_dhcp_server_detected": False,
"gateway_non_compliant": False,
"switch_misconfigured_port": False,
"switch_port_stuck": False,
},
},
mxedge_mgmt={
"config_auto_revert": False,
"fips_enabled": False,
"mist_password": "string",
"oob_ip_type": "string",
"oob_ip_type6": "string",
"root_password": "string",
},
mxtunnels={
"additional_mxtunnels": {
"string": {
"hello_interval": 0,
"hello_retries": 0,
"protocol": "string",
"tunterm_clusters": [{
"name": "string",
"tunterm_hosts": ["string"],
}],
"vlan_ids": [0],
},
},
"ap_subnets": ["string"],
"auto_preemption": {
"day_of_week": "string",
"enabled": False,
"time_of_day": "string",
},
"clusters": [{
"name": "string",
"tunterm_hosts": ["string"],
}],
"created_time": float(0),
"enabled": False,
"for_site": False,
"hello_interval": 0,
"hello_retries": 0,
"hosts": ["string"],
"id": "string",
"modified_time": float(0),
"mtu": 0,
"org_id": "string",
"protocol": "string",
"radsec": {
"acct_servers": [{
"host": "string",
"secret": "string",
"keywrap_enabled": False,
"keywrap_format": "string",
"keywrap_kek": "string",
"keywrap_mack": "string",
"port": "string",
}],
"auth_servers": [{
"host": "string",
"secret": "string",
"keywrap_enabled": False,
"keywrap_format": "string",
"keywrap_kek": "string",
"keywrap_mack": "string",
"port": "string",
"require_message_authenticator": False,
}],
"enabled": False,
"use_mxedge": False,
},
"site_id": "string",
"vlan_ids": [0],
},
occupancy={
"assets_enabled": False,
"clients_enabled": False,
"min_duration": 0,
"sdkclients_enabled": False,
"unconnected_clients_enabled": False,
},
persist_config_on_device=False,
proxy={
"disabled": False,
"url": "string",
},
remove_existing_configs=False,
report_gatt=False,
rogue={
"allowed_vlan_ids": [0],
"enabled": False,
"honeypot_enabled": False,
"min_duration": 0,
"min_rogue_duration": 0,
"min_rogue_rssi": 0,
"min_rssi": 0,
"whitelisted_bssids": ["string"],
"whitelisted_ssids": ["string"],
},
rtsa={
"app_waking": False,
"disable_dead_reckoning": False,
"disable_pressure_sensor": False,
"enabled": False,
"track_asset": False,
},
simple_alert={
"arp_failure": {
"client_count": 0,
"duration": 0,
"incident_count": 0,
},
"dhcp_failure": {
"client_count": 0,
"duration": 0,
"incident_count": 0,
},
"dns_failure": {
"client_count": 0,
"duration": 0,
"incident_count": 0,
},
},
skyatp={
"enabled": False,
"send_ip_mac_mapping": False,
},
sle_thresholds={
"capacity": 0,
"coverage": 0,
"throughput": 0,
"timetoconnect": 0,
},
srx_app={
"enabled": False,
},
ssh_keys=["string"],
ssr={
"auto_upgrade": {
"channel": "string",
"custom_versions": {
"string": "string",
},
"enabled": False,
"version": "string",
},
"conductor_hosts": ["string"],
"conductor_token": "string",
"disable_stats": False,
"proxy": {
"disabled": False,
"url": "string",
},
},
switch_updown_threshold=0,
synthetic_test={
"aggressiveness": "string",
"custom_probes": {
"string": {
"aggressiveness": "string",
"target": "string",
"threshold": 0,
"type": "string",
},
},
"disabled": False,
"lan_networks": [{
"networks": ["string"],
"probes": ["string"],
}],
"wan_speedtest": {
"enabled": False,
"time_of_day": "string",
},
},
track_anonymous_devices=False,
tunterm_monitoring_disabled=False,
tunterm_monitorings=[{
"host": "string",
"port": 0,
"protocol": "string",
"src_vlan_id": 0,
"timeout": 0,
}],
tunterm_multicast_config={
"mdns": {
"enabled": False,
"vlan_ids": [0],
},
"multicast_all": False,
"ssdp": {
"enabled": False,
"vlan_ids": [0],
},
},
uplink_port_config={
"dot1x": False,
"keep_wlans_up_if_down": False,
},
vars={
"string": "string",
},
vars_annotations={
"string": {
"note": "string",
"type": "string",
},
},
vna={
"enabled": False,
},
vpn_path_updown_threshold=0,
vpn_peer_updown_threshold=0,
vs_instance={
"string": {
"networks": ["string"],
},
},
wan_vna={
"enabled": False,
},
wids={
"repeated_auth_failures": {
"duration": 0,
"threshold": 0,
},
},
wifi={
"cisco_enabled": False,
"disable11k": False,
"disable_radios_when_power_constrained": False,
"enable_arp_spoof_check": False,
"enable_shared_radio_scanning": False,
"enabled": False,
"locate_connected": False,
"locate_unconnected": False,
"mesh_allow_dfs": False,
"mesh_enable_crm": False,
"mesh_enabled": False,
"mesh_psk": "string",
"mesh_ssid": "string",
"proxy_arp": "string",
},
wired_vna={
"enabled": False,
},
zone_occupancy_alert={
"email_notifiers": ["string"],
"enabled": False,
"threshold": 0,
})
const junipermistSettingResource = new junipermist.site.Setting("junipermistSettingResource", {
siteId: "string",
allowMist: false,
analytic: {
enabled: false,
},
apSyntheticTest: {
additionalVlanIds: ["string"],
},
apUpdownThreshold: 0,
autoUpgrade: {
customVersions: {
string: "string",
},
dayOfWeek: "string",
enabled: false,
timeOfDay: "string",
version: "string",
},
autoUpgradeEsl: {
allowDowngrade: false,
customVersions: {
string: "string",
},
dayOfWeek: "string",
enabled: false,
timeOfDay: "string",
version: "string",
},
bgpNeighborUpdownThreshold: 0,
bleConfig: {
beaconEnabled: false,
beaconRate: 0,
beaconRateMode: "string",
beamDisableds: [0],
customBlePacketEnabled: false,
customBlePacketFrame: "string",
customBlePacketFreqMsec: 0,
eddystoneUidAdvPower: 0,
eddystoneUidBeams: "string",
eddystoneUidEnabled: false,
eddystoneUidFreqMsec: 0,
eddystoneUidInstance: "string",
eddystoneUidNamespace: "string",
eddystoneUrlAdvPower: 0,
eddystoneUrlBeams: "string",
eddystoneUrlEnabled: false,
eddystoneUrlFreqMsec: 0,
eddystoneUrlUrl: "string",
ibeaconAdvPower: 0,
ibeaconBeams: "string",
ibeaconEnabled: false,
ibeaconFreqMsec: 0,
ibeaconMajor: 0,
ibeaconMinor: 0,
ibeaconUuid: "string",
power: 0,
powerMode: "string",
},
configAutoRevert: false,
configPushPolicy: {
noPush: false,
pushWindow: {
enabled: false,
hours: {
fri: "string",
mon: "string",
sat: "string",
sun: "string",
thu: "string",
tue: "string",
wed: "string",
},
},
},
criticalUrlMonitoring: {
enabled: false,
monitors: [{
url: "string",
vlanId: "string",
}],
},
deviceUpdownThreshold: 0,
enableUnii4: false,
engagement: {
dwellTagNames: {
bounce: "string",
engaged: "string",
passerby: "string",
stationed: "string",
},
dwellTags: {
bounce: "string",
engaged: "string",
passerby: "string",
stationed: "string",
},
hours: {
fri: "string",
mon: "string",
sat: "string",
sun: "string",
thu: "string",
tue: "string",
wed: "string",
},
maxDwell: 0,
minDwell: 0,
},
gatewayMgmt: {
adminSshkeys: ["string"],
appProbing: {
apps: ["string"],
customApps: [{
hostnames: ["string"],
name: "string",
protocol: "string",
address: "string",
appType: "string",
key: "string",
network: "string",
packetSize: 0,
url: "string",
vrf: "string",
}],
enabled: false,
},
appUsage: false,
autoSignatureUpdate: {
dayOfWeek: "string",
enable: false,
timeOfDay: "string",
},
configRevertTimer: 0,
disableConsole: false,
disableOob: false,
disableUsb: false,
fipsEnabled: false,
probeHosts: ["string"],
probeHostsv6s: ["string"],
protectRe: {
allowedServices: ["string"],
customs: [{
subnets: ["string"],
portRange: "string",
protocol: "string",
}],
enabled: false,
hitCount: false,
trustedHosts: ["string"],
},
rootPassword: "string",
securityLogSourceAddress: "string",
securityLogSourceInterface: "string",
},
gatewayTunnelUpdownThreshold: 0,
gatewayUpdownThreshold: 0,
iotproxy: {
enabled: false,
visionline: {
accessId: "string",
cacerts: ["string"],
enabled: false,
host: "string",
password: "string",
port: 0,
username: "string",
},
},
juniperSrx: {
autoUpgrade: {
customVersions: {
string: "string",
},
enabled: false,
snapshot: false,
version: "string",
},
gateways: [{
apiKey: "string",
apiPassword: "string",
apiUrl: "string",
}],
sendMistNacUserInfo: false,
},
led: {
brightness: 0,
enabled: false,
},
marvis: {
autoOperations: {
apInsufficientCapacity: false,
apLoop: false,
apNonCompliant: false,
bouncePortForAbnormalPoeClient: false,
disablePortWhenDdosProtocolViolation: false,
disablePortWhenRogueDhcpServerDetected: false,
gatewayNonCompliant: false,
switchMisconfiguredPort: false,
switchPortStuck: false,
},
},
mxedgeMgmt: {
configAutoRevert: false,
fipsEnabled: false,
mistPassword: "string",
oobIpType: "string",
oobIpType6: "string",
rootPassword: "string",
},
mxtunnels: {
additionalMxtunnels: {
string: {
helloInterval: 0,
helloRetries: 0,
protocol: "string",
tuntermClusters: [{
name: "string",
tuntermHosts: ["string"],
}],
vlanIds: [0],
},
},
apSubnets: ["string"],
autoPreemption: {
dayOfWeek: "string",
enabled: false,
timeOfDay: "string",
},
clusters: [{
name: "string",
tuntermHosts: ["string"],
}],
createdTime: 0,
enabled: false,
forSite: false,
helloInterval: 0,
helloRetries: 0,
hosts: ["string"],
id: "string",
modifiedTime: 0,
mtu: 0,
orgId: "string",
protocol: "string",
radsec: {
acctServers: [{
host: "string",
secret: "string",
keywrapEnabled: false,
keywrapFormat: "string",
keywrapKek: "string",
keywrapMack: "string",
port: "string",
}],
authServers: [{
host: "string",
secret: "string",
keywrapEnabled: false,
keywrapFormat: "string",
keywrapKek: "string",
keywrapMack: "string",
port: "string",
requireMessageAuthenticator: false,
}],
enabled: false,
useMxedge: false,
},
siteId: "string",
vlanIds: [0],
},
occupancy: {
assetsEnabled: false,
clientsEnabled: false,
minDuration: 0,
sdkclientsEnabled: false,
unconnectedClientsEnabled: false,
},
persistConfigOnDevice: false,
proxy: {
disabled: false,
url: "string",
},
removeExistingConfigs: false,
reportGatt: false,
rogue: {
allowedVlanIds: [0],
enabled: false,
honeypotEnabled: false,
minDuration: 0,
minRogueDuration: 0,
minRogueRssi: 0,
minRssi: 0,
whitelistedBssids: ["string"],
whitelistedSsids: ["string"],
},
rtsa: {
appWaking: false,
disableDeadReckoning: false,
disablePressureSensor: false,
enabled: false,
trackAsset: false,
},
simpleAlert: {
arpFailure: {
clientCount: 0,
duration: 0,
incidentCount: 0,
},
dhcpFailure: {
clientCount: 0,
duration: 0,
incidentCount: 0,
},
dnsFailure: {
clientCount: 0,
duration: 0,
incidentCount: 0,
},
},
skyatp: {
enabled: false,
sendIpMacMapping: false,
},
sleThresholds: {
capacity: 0,
coverage: 0,
throughput: 0,
timetoconnect: 0,
},
srxApp: {
enabled: false,
},
sshKeys: ["string"],
ssr: {
autoUpgrade: {
channel: "string",
customVersions: {
string: "string",
},
enabled: false,
version: "string",
},
conductorHosts: ["string"],
conductorToken: "string",
disableStats: false,
proxy: {
disabled: false,
url: "string",
},
},
switchUpdownThreshold: 0,
syntheticTest: {
aggressiveness: "string",
customProbes: {
string: {
aggressiveness: "string",
target: "string",
threshold: 0,
type: "string",
},
},
disabled: false,
lanNetworks: [{
networks: ["string"],
probes: ["string"],
}],
wanSpeedtest: {
enabled: false,
timeOfDay: "string",
},
},
trackAnonymousDevices: false,
tuntermMonitoringDisabled: false,
tuntermMonitorings: [{
host: "string",
port: 0,
protocol: "string",
srcVlanId: 0,
timeout: 0,
}],
tuntermMulticastConfig: {
mdns: {
enabled: false,
vlanIds: [0],
},
multicastAll: false,
ssdp: {
enabled: false,
vlanIds: [0],
},
},
uplinkPortConfig: {
dot1x: false,
keepWlansUpIfDown: false,
},
vars: {
string: "string",
},
varsAnnotations: {
string: {
note: "string",
type: "string",
},
},
vna: {
enabled: false,
},
vpnPathUpdownThreshold: 0,
vpnPeerUpdownThreshold: 0,
vsInstance: {
string: {
networks: ["string"],
},
},
wanVna: {
enabled: false,
},
wids: {
repeatedAuthFailures: {
duration: 0,
threshold: 0,
},
},
wifi: {
ciscoEnabled: false,
disable11k: false,
disableRadiosWhenPowerConstrained: false,
enableArpSpoofCheck: false,
enableSharedRadioScanning: false,
enabled: false,
locateConnected: false,
locateUnconnected: false,
meshAllowDfs: false,
meshEnableCrm: false,
meshEnabled: false,
meshPsk: "string",
meshSsid: "string",
proxyArp: "string",
},
wiredVna: {
enabled: false,
},
zoneOccupancyAlert: {
emailNotifiers: ["string"],
enabled: false,
threshold: 0,
},
});
type: junipermist:site:Setting
properties:
allowMist: false
analytic:
enabled: false
apSyntheticTest:
additionalVlanIds:
- string
apUpdownThreshold: 0
autoUpgrade:
customVersions:
string: string
dayOfWeek: string
enabled: false
timeOfDay: string
version: string
autoUpgradeEsl:
allowDowngrade: false
customVersions:
string: string
dayOfWeek: string
enabled: false
timeOfDay: string
version: string
bgpNeighborUpdownThreshold: 0
bleConfig:
beaconEnabled: false
beaconRate: 0
beaconRateMode: string
beamDisableds:
- 0
customBlePacketEnabled: false
customBlePacketFrame: string
customBlePacketFreqMsec: 0
eddystoneUidAdvPower: 0
eddystoneUidBeams: string
eddystoneUidEnabled: false
eddystoneUidFreqMsec: 0
eddystoneUidInstance: string
eddystoneUidNamespace: string
eddystoneUrlAdvPower: 0
eddystoneUrlBeams: string
eddystoneUrlEnabled: false
eddystoneUrlFreqMsec: 0
eddystoneUrlUrl: string
ibeaconAdvPower: 0
ibeaconBeams: string
ibeaconEnabled: false
ibeaconFreqMsec: 0
ibeaconMajor: 0
ibeaconMinor: 0
ibeaconUuid: string
power: 0
powerMode: string
configAutoRevert: false
configPushPolicy:
noPush: false
pushWindow:
enabled: false
hours:
fri: string
mon: string
sat: string
sun: string
thu: string
tue: string
wed: string
criticalUrlMonitoring:
enabled: false
monitors:
- url: string
vlanId: string
deviceUpdownThreshold: 0
enableUnii4: false
engagement:
dwellTagNames:
bounce: string
engaged: string
passerby: string
stationed: string
dwellTags:
bounce: string
engaged: string
passerby: string
stationed: string
hours:
fri: string
mon: string
sat: string
sun: string
thu: string
tue: string
wed: string
maxDwell: 0
minDwell: 0
gatewayMgmt:
adminSshkeys:
- string
appProbing:
apps:
- string
customApps:
- address: string
appType: string
hostnames:
- string
key: string
name: string
network: string
packetSize: 0
protocol: string
url: string
vrf: string
enabled: false
appUsage: false
autoSignatureUpdate:
dayOfWeek: string
enable: false
timeOfDay: string
configRevertTimer: 0
disableConsole: false
disableOob: false
disableUsb: false
fipsEnabled: false
probeHosts:
- string
probeHostsv6s:
- string
protectRe:
allowedServices:
- string
customs:
- portRange: string
protocol: string
subnets:
- string
enabled: false
hitCount: false
trustedHosts:
- string
rootPassword: string
securityLogSourceAddress: string
securityLogSourceInterface: string
gatewayTunnelUpdownThreshold: 0
gatewayUpdownThreshold: 0
iotproxy:
enabled: false
visionline:
accessId: string
cacerts:
- string
enabled: false
host: string
password: string
port: 0
username: string
juniperSrx:
autoUpgrade:
customVersions:
string: string
enabled: false
snapshot: false
version: string
gateways:
- apiKey: string
apiPassword: string
apiUrl: string
sendMistNacUserInfo: false
led:
brightness: 0
enabled: false
marvis:
autoOperations:
apInsufficientCapacity: false
apLoop: false
apNonCompliant: false
bouncePortForAbnormalPoeClient: false
disablePortWhenDdosProtocolViolation: false
disablePortWhenRogueDhcpServerDetected: false
gatewayNonCompliant: false
switchMisconfiguredPort: false
switchPortStuck: false
mxedgeMgmt:
configAutoRevert: false
fipsEnabled: false
mistPassword: string
oobIpType: string
oobIpType6: string
rootPassword: string
mxtunnels:
additionalMxtunnels:
string:
helloInterval: 0
helloRetries: 0
protocol: string
tuntermClusters:
- name: string
tuntermHosts:
- string
vlanIds:
- 0
apSubnets:
- string
autoPreemption:
dayOfWeek: string
enabled: false
timeOfDay: string
clusters:
- name: string
tuntermHosts:
- string
createdTime: 0
enabled: false
forSite: false
helloInterval: 0
helloRetries: 0
hosts:
- string
id: string
modifiedTime: 0
mtu: 0
orgId: string
protocol: string
radsec:
acctServers:
- host: string
keywrapEnabled: false
keywrapFormat: string
keywrapKek: string
keywrapMack: string
port: string
secret: string
authServers:
- host: string
keywrapEnabled: false
keywrapFormat: string
keywrapKek: string
keywrapMack: string
port: string
requireMessageAuthenticator: false
secret: string
enabled: false
useMxedge: false
siteId: string
vlanIds:
- 0
occupancy:
assetsEnabled: false
clientsEnabled: false
minDuration: 0
sdkclientsEnabled: false
unconnectedClientsEnabled: false
persistConfigOnDevice: false
proxy:
disabled: false
url: string
removeExistingConfigs: false
reportGatt: false
rogue:
allowedVlanIds:
- 0
enabled: false
honeypotEnabled: false
minDuration: 0
minRogueDuration: 0
minRogueRssi: 0
minRssi: 0
whitelistedBssids:
- string
whitelistedSsids:
- string
rtsa:
appWaking: false
disableDeadReckoning: false
disablePressureSensor: false
enabled: false
trackAsset: false
simpleAlert:
arpFailure:
clientCount: 0
duration: 0
incidentCount: 0
dhcpFailure:
clientCount: 0
duration: 0
incidentCount: 0
dnsFailure:
clientCount: 0
duration: 0
incidentCount: 0
siteId: string
skyatp:
enabled: false
sendIpMacMapping: false
sleThresholds:
capacity: 0
coverage: 0
throughput: 0
timetoconnect: 0
srxApp:
enabled: false
sshKeys:
- string
ssr:
autoUpgrade:
channel: string
customVersions:
string: string
enabled: false
version: string
conductorHosts:
- string
conductorToken: string
disableStats: false
proxy:
disabled: false
url: string
switchUpdownThreshold: 0
syntheticTest:
aggressiveness: string
customProbes:
string:
aggressiveness: string
target: string
threshold: 0
type: string
disabled: false
lanNetworks:
- networks:
- string
probes:
- string
wanSpeedtest:
enabled: false
timeOfDay: string
trackAnonymousDevices: false
tuntermMonitoringDisabled: false
tuntermMonitorings:
- host: string
port: 0
protocol: string
srcVlanId: 0
timeout: 0
tuntermMulticastConfig:
mdns:
enabled: false
vlanIds:
- 0
multicastAll: false
ssdp:
enabled: false
vlanIds:
- 0
uplinkPortConfig:
dot1x: false
keepWlansUpIfDown: false
vars:
string: string
varsAnnotations:
string:
note: string
type: string
vna:
enabled: false
vpnPathUpdownThreshold: 0
vpnPeerUpdownThreshold: 0
vsInstance:
string:
networks:
- string
wanVna:
enabled: false
wids:
repeatedAuthFailures:
duration: 0
threshold: 0
wifi:
ciscoEnabled: false
disable11k: false
disableRadiosWhenPowerConstrained: false
enableArpSpoofCheck: false
enableSharedRadioScanning: false
enabled: false
locateConnected: false
locateUnconnected: false
meshAllowDfs: false
meshEnableCrm: false
meshEnabled: false
meshPsk: string
meshSsid: string
proxyArp: string
wiredVna:
enabled: false
zoneOccupancyAlert:
emailNotifiers:
- string
enabled: false
threshold: 0
Setting 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 Setting resource accepts the following input properties:
- Site
Id string - Identifier of the site these settings apply to
- Allow
Mist bool - whether to allow Mist to look at this org
- Analytic
Pulumi.
Juniper Mist. Site. Inputs. Setting Analytic - Advanced analytics configuration for the site
- Ap
Synthetic Pulumi.Test Juniper Mist. Site. Inputs. Setting Ap Synthetic Test - Synthetic test configuration for APs at the site
- Ap
Updown intThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - Auto
Upgrade Pulumi.Juniper Mist. Site. Inputs. Setting Auto Upgrade - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- Auto
Upgrade Pulumi.Esl Juniper Mist. Site. Inputs. Setting Auto Upgrade Esl - Automatic ESL firmware upgrade settings for the site
- Bgp
Neighbor intUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- Ble
Config Pulumi.Juniper Mist. Site. Inputs. Setting Ble Config - Bluetooth Low Energy configuration applied to APs at the site
- Config
Auto boolRevert - Whether to enable ap auto config revert
- Config
Push Pulumi.Policy Juniper Mist. Site. Inputs. Setting Config Push Policy - Policy controlling how site configuration pushes are applied
- Critical
Url Pulumi.Monitoring Juniper Mist. Site. Inputs. Setting Critical Url Monitoring - Monitoring configuration for critical URLs at the site
- Device
Updown intThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Enable
Unii4 bool - Whether UNII-4 channels are enabled for the site
- Engagement
Pulumi.
Juniper Mist. Site. Inputs. Setting Engagement - Dwell-time analytics rules for the site
- Gateway
Mgmt Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt - Management access settings for gateways at the site
- Gateway
Tunnel intUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- Gateway
Updown intThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - Iotproxy
Pulumi.
Juniper Mist. Site. Inputs. Setting Iotproxy - Proxy settings for IoT traffic at the site
- Juniper
Srx Pulumi.Juniper Mist. Site. Inputs. Setting Juniper Srx - SRX integration settings for the site
- Led
Pulumi.
Juniper Mist. Site. Inputs. Setting Led - AP LED behavior configured for the site
- Marvis
Pulumi.
Juniper Mist. Site. Inputs. Setting Marvis - AI assistant settings for Marvis at the site
- Mxedge
Mgmt Pulumi.Juniper Mist. Site. Inputs. Setting Mxedge Mgmt - Mist Edge management access settings for the site
- Mxtunnels
Pulumi.
Juniper Mist. Site. Inputs. Setting Mxtunnels - Site Mist Tunnel configuration
- Occupancy
Pulumi.
Juniper Mist. Site. Inputs. Setting Occupancy - Analytics settings for site occupancy
- Persist
Config boolOn Device - Whether to store the config on AP
- Proxy
Pulumi.
Juniper Mist. Site. Inputs. Setting Proxy - Network proxy settings for devices at the site
- Remove
Existing boolConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - Report
Gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- Rogue
Pulumi.
Juniper Mist. Site. Inputs. Setting Rogue - AP threat detection settings for the site
- Rtsa
Pulumi.
Juniper Mist. Site. Inputs. Setting Rtsa - Managed mobility and asset tracking settings for the site
- Simple
Alert Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert - Threshold alert settings for the site
- Skyatp
Pulumi.
Juniper Mist. Site. Inputs. Setting Skyatp - Threat intelligence settings from Sky ATP for the site
- Sle
Thresholds Pulumi.Juniper Mist. Site. Inputs. Setting Sle Thresholds - Service level expectation threshold settings for the site
- Srx
App Pulumi.Juniper Mist. Site. Inputs. Setting Srx App - Juniper SRX application visibility settings for the site
- Ssh
Keys List<string> - Public SSH keys configured for the site
- Ssr
Pulumi.
Juniper Mist. Site. Inputs. Setting Ssr - Session Smart Router settings for the site
- Switch
Updown intThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - Synthetic
Test Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test - Active monitoring test configuration for the site
- Track
Anonymous boolDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- Tunterm
Monitoring boolDisabled - Whether tunnel termination monitoring is disabled for the site
- Tunterm
Monitorings List<Pulumi.Juniper Mist. Site. Inputs. Setting Tunterm Monitoring> - Tunnel termination monitoring settings for the site
- Tunterm
Multicast Pulumi.Config Juniper Mist. Site. Inputs. Setting Tunterm Multicast Config - Multicast settings for tunnel termination at the site
- Uplink
Port Pulumi.Config Juniper Mist. Site. Inputs. Setting Uplink Port Config - AP uplink port configuration for the site
- Vars Dictionary<string, string>
- Template variables defined for the site
- Vars
Annotations Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Vars Annotations Args> - Metadata annotations for site template variables
- Vna
Pulumi.
Juniper Mist. Site. Inputs. Setting Vna - Virtual Network Assistant settings for the site
- Vpn
Path intUpdown Threshold - enable threshold-based vpn path down delivery.
- Vpn
Peer intUpdown Threshold - enable threshold-based vpn peer down delivery.
- Vs
Instance Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Vs Instance Args> - EX9200 virtual switch instance definitions for the site
- Wan
Vna Pulumi.Juniper Mist. Site. Inputs. Setting Wan Vna - Virtual Network Assistant settings for WAN experiences at the site
- Wids
Pulumi.
Juniper Mist. Site. Inputs. Setting Wids - Wireless intrusion detection settings for the site
- Wifi
Pulumi.
Juniper Mist. Site. Inputs. Setting Wifi - Wireless LAN configuration settings for the site
- Wired
Vna Pulumi.Juniper Mist. Site. Inputs. Setting Wired Vna - Virtual Network Assistant settings for wired experiences at the site
- Zone
Occupancy Pulumi.Alert Juniper Mist. Site. Inputs. Setting Zone Occupancy Alert - Occupancy alert settings for site zones
- Site
Id string - Identifier of the site these settings apply to
- Allow
Mist bool - whether to allow Mist to look at this org
- Analytic
Setting
Analytic Args - Advanced analytics configuration for the site
- Ap
Synthetic SettingTest Ap Synthetic Test Args - Synthetic test configuration for APs at the site
- Ap
Updown intThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - Auto
Upgrade SettingAuto Upgrade Args - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- Auto
Upgrade SettingEsl Auto Upgrade Esl Args - Automatic ESL firmware upgrade settings for the site
- Bgp
Neighbor intUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- Ble
Config SettingBle Config Args - Bluetooth Low Energy configuration applied to APs at the site
- Config
Auto boolRevert - Whether to enable ap auto config revert
- Config
Push SettingPolicy Config Push Policy Args - Policy controlling how site configuration pushes are applied
- Critical
Url SettingMonitoring Critical Url Monitoring Args - Monitoring configuration for critical URLs at the site
- Device
Updown intThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Enable
Unii4 bool - Whether UNII-4 channels are enabled for the site
- Engagement
Setting
Engagement Args - Dwell-time analytics rules for the site
- Gateway
Mgmt SettingGateway Mgmt Args - Management access settings for gateways at the site
- Gateway
Tunnel intUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- Gateway
Updown intThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - Iotproxy
Setting
Iotproxy Args - Proxy settings for IoT traffic at the site
- Juniper
Srx SettingJuniper Srx Args - SRX integration settings for the site
- Led
Setting
Led Args - AP LED behavior configured for the site
- Marvis
Setting
Marvis Args - AI assistant settings for Marvis at the site
- Mxedge
Mgmt SettingMxedge Mgmt Args - Mist Edge management access settings for the site
- Mxtunnels
Setting
Mxtunnels Args - Site Mist Tunnel configuration
- Occupancy
Setting
Occupancy Args - Analytics settings for site occupancy
- Persist
Config boolOn Device - Whether to store the config on AP
- Proxy
Setting
Proxy Args - Network proxy settings for devices at the site
- Remove
Existing boolConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - Report
Gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- Rogue
Setting
Rogue Args - AP threat detection settings for the site
- Rtsa
Setting
Rtsa Args - Managed mobility and asset tracking settings for the site
- Simple
Alert SettingSimple Alert Args - Threshold alert settings for the site
- Skyatp
Setting
Skyatp Args - Threat intelligence settings from Sky ATP for the site
- Sle
Thresholds SettingSle Thresholds Args - Service level expectation threshold settings for the site
- Srx
App SettingSrx App Args - Juniper SRX application visibility settings for the site
- Ssh
Keys []string - Public SSH keys configured for the site
- Ssr
Setting
Ssr Args - Session Smart Router settings for the site
- Switch
Updown intThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - Synthetic
Test SettingSynthetic Test Args - Active monitoring test configuration for the site
- Track
Anonymous boolDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- Tunterm
Monitoring boolDisabled - Whether tunnel termination monitoring is disabled for the site
- Tunterm
Monitorings []SettingTunterm Monitoring Args - Tunnel termination monitoring settings for the site
- Tunterm
Multicast SettingConfig Tunterm Multicast Config Args - Multicast settings for tunnel termination at the site
- Uplink
Port SettingConfig Uplink Port Config Args - AP uplink port configuration for the site
- Vars map[string]string
- Template variables defined for the site
- Vars
Annotations map[string]SettingVars Annotations Args - Metadata annotations for site template variables
- Vna
Setting
Vna Args - Virtual Network Assistant settings for the site
- Vpn
Path intUpdown Threshold - enable threshold-based vpn path down delivery.
- Vpn
Peer intUpdown Threshold - enable threshold-based vpn peer down delivery.
- Vs
Instance map[string]SettingVs Instance Args - EX9200 virtual switch instance definitions for the site
- Wan
Vna SettingWan Vna Args - Virtual Network Assistant settings for WAN experiences at the site
- Wids
Setting
Wids Args - Wireless intrusion detection settings for the site
- Wifi
Setting
Wifi Args - Wireless LAN configuration settings for the site
- Wired
Vna SettingWired Vna Args - Virtual Network Assistant settings for wired experiences at the site
- Zone
Occupancy SettingAlert Zone Occupancy Alert Args - Occupancy alert settings for site zones
- site_
id string - Identifier of the site these settings apply to
- allow_
mist bool - whether to allow Mist to look at this org
- analytic object
- Advanced analytics configuration for the site
- ap_
synthetic_ objecttest - Synthetic test configuration for APs at the site
- ap_
updown_ numberthreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto_
upgrade object - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto_
upgrade_ objectesl - Automatic ESL firmware upgrade settings for the site
- bgp_
neighbor_ numberupdown_ threshold - enable threshold-based bgp neighbor down delivery.
- ble_
config object - Bluetooth Low Energy configuration applied to APs at the site
- config_
auto_ boolrevert - Whether to enable ap auto config revert
- config_
push_ objectpolicy - Policy controlling how site configuration pushes are applied
- critical_
url_ objectmonitoring - Monitoring configuration for critical URLs at the site
- device_
updown_ numberthreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable_
unii4 bool - Whether UNII-4 channels are enabled for the site
- engagement object
- Dwell-time analytics rules for the site
- gateway_
mgmt object - Management access settings for gateways at the site
- gateway_
tunnel_ numberupdown_ threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway_
updown_ numberthreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy object
- Proxy settings for IoT traffic at the site
- juniper_
srx object - SRX integration settings for the site
- led object
- AP LED behavior configured for the site
- marvis object
- AI assistant settings for Marvis at the site
- mxedge_
mgmt object - Mist Edge management access settings for the site
- mxtunnels object
- Site Mist Tunnel configuration
- occupancy object
- Analytics settings for site occupancy
- persist_
config_ boolon_ device - Whether to store the config on AP
- proxy object
- Network proxy settings for devices at the site
- remove_
existing_ boolconfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report_
gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue object
- AP threat detection settings for the site
- rtsa object
- Managed mobility and asset tracking settings for the site
- simple_
alert object - Threshold alert settings for the site
- skyatp object
- Threat intelligence settings from Sky ATP for the site
- sle_
thresholds object - Service level expectation threshold settings for the site
- srx_
app object - Juniper SRX application visibility settings for the site
- ssh_
keys list(string) - Public SSH keys configured for the site
- ssr object
- Session Smart Router settings for the site
- switch_
updown_ numberthreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic_
test object - Active monitoring test configuration for the site
- track_
anonymous_ booldevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm_
monitoring_ booldisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm_
monitorings list(object) - Tunnel termination monitoring settings for the site
- tunterm_
multicast_ objectconfig - Multicast settings for tunnel termination at the site
- uplink_
port_ objectconfig - AP uplink port configuration for the site
- vars map(string)
- Template variables defined for the site
- vars_
annotations map(object) - Metadata annotations for site template variables
- vna object
- Virtual Network Assistant settings for the site
- vpn_
path_ numberupdown_ threshold - enable threshold-based vpn path down delivery.
- vpn_
peer_ numberupdown_ threshold - enable threshold-based vpn peer down delivery.
- vs_
instance map(object) - EX9200 virtual switch instance definitions for the site
- wan_
vna object - Virtual Network Assistant settings for WAN experiences at the site
- wids object
- Wireless intrusion detection settings for the site
- wifi object
- Wireless LAN configuration settings for the site
- wired_
vna object - Virtual Network Assistant settings for wired experiences at the site
- zone_
occupancy_ objectalert - Occupancy alert settings for site zones
- site
Id String - Identifier of the site these settings apply to
- allow
Mist Boolean - whether to allow Mist to look at this org
- analytic
Setting
Analytic - Advanced analytics configuration for the site
- ap
Synthetic SettingTest Ap Synthetic Test - Synthetic test configuration for APs at the site
- ap
Updown IntegerThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto
Upgrade SettingAuto Upgrade - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto
Upgrade SettingEsl Auto Upgrade Esl - Automatic ESL firmware upgrade settings for the site
- bgp
Neighbor IntegerUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- ble
Config SettingBle Config - Bluetooth Low Energy configuration applied to APs at the site
- config
Auto BooleanRevert - Whether to enable ap auto config revert
- config
Push SettingPolicy Config Push Policy - Policy controlling how site configuration pushes are applied
- critical
Url SettingMonitoring Critical Url Monitoring - Monitoring configuration for critical URLs at the site
- device
Updown IntegerThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable
Unii4 Boolean - Whether UNII-4 channels are enabled for the site
- engagement
Setting
Engagement - Dwell-time analytics rules for the site
- gateway
Mgmt SettingGateway Mgmt - Management access settings for gateways at the site
- gateway
Tunnel IntegerUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway
Updown IntegerThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy
Setting
Iotproxy - Proxy settings for IoT traffic at the site
- juniper
Srx SettingJuniper Srx - SRX integration settings for the site
- led
Setting
Led - AP LED behavior configured for the site
- marvis
Setting
Marvis - AI assistant settings for Marvis at the site
- mxedge
Mgmt SettingMxedge Mgmt - Mist Edge management access settings for the site
- mxtunnels
Setting
Mxtunnels - Site Mist Tunnel configuration
- occupancy
Setting
Occupancy - Analytics settings for site occupancy
- persist
Config BooleanOn Device - Whether to store the config on AP
- proxy
Setting
Proxy - Network proxy settings for devices at the site
- remove
Existing BooleanConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report
Gatt Boolean - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
Setting
Rogue - AP threat detection settings for the site
- rtsa
Setting
Rtsa - Managed mobility and asset tracking settings for the site
- simple
Alert SettingSimple Alert - Threshold alert settings for the site
- skyatp
Setting
Skyatp - Threat intelligence settings from Sky ATP for the site
- sle
Thresholds SettingSle Thresholds - Service level expectation threshold settings for the site
- srx
App SettingSrx App - Juniper SRX application visibility settings for the site
- ssh
Keys List<String> - Public SSH keys configured for the site
- ssr
Setting
Ssr - Session Smart Router settings for the site
- switch
Updown IntegerThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic
Test SettingSynthetic Test - Active monitoring test configuration for the site
- track
Anonymous BooleanDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm
Monitoring BooleanDisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm
Monitorings List<SettingTunterm Monitoring> - Tunnel termination monitoring settings for the site
- tunterm
Multicast SettingConfig Tunterm Multicast Config - Multicast settings for tunnel termination at the site
- uplink
Port SettingConfig Uplink Port Config - AP uplink port configuration for the site
- vars Map<String,String>
- Template variables defined for the site
- vars
Annotations Map<String,SettingVars Annotations Args> - Metadata annotations for site template variables
- vna
Setting
Vna - Virtual Network Assistant settings for the site
- vpn
Path IntegerUpdown Threshold - enable threshold-based vpn path down delivery.
- vpn
Peer IntegerUpdown Threshold - enable threshold-based vpn peer down delivery.
- vs
Instance Map<String,SettingVs Instance Args> - EX9200 virtual switch instance definitions for the site
- wan
Vna SettingWan Vna - Virtual Network Assistant settings for WAN experiences at the site
- wids
Setting
Wids - Wireless intrusion detection settings for the site
- wifi
Setting
Wifi - Wireless LAN configuration settings for the site
- wired
Vna SettingWired Vna - Virtual Network Assistant settings for wired experiences at the site
- zone
Occupancy SettingAlert Zone Occupancy Alert - Occupancy alert settings for site zones
- site
Id string - Identifier of the site these settings apply to
- allow
Mist boolean - whether to allow Mist to look at this org
- analytic
Setting
Analytic - Advanced analytics configuration for the site
- ap
Synthetic SettingTest Ap Synthetic Test - Synthetic test configuration for APs at the site
- ap
Updown numberThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto
Upgrade SettingAuto Upgrade - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto
Upgrade SettingEsl Auto Upgrade Esl - Automatic ESL firmware upgrade settings for the site
- bgp
Neighbor numberUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- ble
Config SettingBle Config - Bluetooth Low Energy configuration applied to APs at the site
- config
Auto booleanRevert - Whether to enable ap auto config revert
- config
Push SettingPolicy Config Push Policy - Policy controlling how site configuration pushes are applied
- critical
Url SettingMonitoring Critical Url Monitoring - Monitoring configuration for critical URLs at the site
- device
Updown numberThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable
Unii4 boolean - Whether UNII-4 channels are enabled for the site
- engagement
Setting
Engagement - Dwell-time analytics rules for the site
- gateway
Mgmt SettingGateway Mgmt - Management access settings for gateways at the site
- gateway
Tunnel numberUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway
Updown numberThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy
Setting
Iotproxy - Proxy settings for IoT traffic at the site
- juniper
Srx SettingJuniper Srx - SRX integration settings for the site
- led
Setting
Led - AP LED behavior configured for the site
- marvis
Setting
Marvis - AI assistant settings for Marvis at the site
- mxedge
Mgmt SettingMxedge Mgmt - Mist Edge management access settings for the site
- mxtunnels
Setting
Mxtunnels - Site Mist Tunnel configuration
- occupancy
Setting
Occupancy - Analytics settings for site occupancy
- persist
Config booleanOn Device - Whether to store the config on AP
- proxy
Setting
Proxy - Network proxy settings for devices at the site
- remove
Existing booleanConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report
Gatt boolean - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
Setting
Rogue - AP threat detection settings for the site
- rtsa
Setting
Rtsa - Managed mobility and asset tracking settings for the site
- simple
Alert SettingSimple Alert - Threshold alert settings for the site
- skyatp
Setting
Skyatp - Threat intelligence settings from Sky ATP for the site
- sle
Thresholds SettingSle Thresholds - Service level expectation threshold settings for the site
- srx
App SettingSrx App - Juniper SRX application visibility settings for the site
- ssh
Keys string[] - Public SSH keys configured for the site
- ssr
Setting
Ssr - Session Smart Router settings for the site
- switch
Updown numberThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic
Test SettingSynthetic Test - Active monitoring test configuration for the site
- track
Anonymous booleanDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm
Monitoring booleanDisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm
Monitorings SettingTunterm Monitoring[] - Tunnel termination monitoring settings for the site
- tunterm
Multicast SettingConfig Tunterm Multicast Config - Multicast settings for tunnel termination at the site
- uplink
Port SettingConfig Uplink Port Config - AP uplink port configuration for the site
- vars {[key: string]: string}
- Template variables defined for the site
- vars
Annotations {[key: string]: SettingVars Annotations Args} - Metadata annotations for site template variables
- vna
Setting
Vna - Virtual Network Assistant settings for the site
- vpn
Path numberUpdown Threshold - enable threshold-based vpn path down delivery.
- vpn
Peer numberUpdown Threshold - enable threshold-based vpn peer down delivery.
- vs
Instance {[key: string]: SettingVs Instance Args} - EX9200 virtual switch instance definitions for the site
- wan
Vna SettingWan Vna - Virtual Network Assistant settings for WAN experiences at the site
- wids
Setting
Wids - Wireless intrusion detection settings for the site
- wifi
Setting
Wifi - Wireless LAN configuration settings for the site
- wired
Vna SettingWired Vna - Virtual Network Assistant settings for wired experiences at the site
- zone
Occupancy SettingAlert Zone Occupancy Alert - Occupancy alert settings for site zones
- site_
id str - Identifier of the site these settings apply to
- allow_
mist bool - whether to allow Mist to look at this org
- analytic
Setting
Analytic Args - Advanced analytics configuration for the site
- ap_
synthetic_ Settingtest Ap Synthetic Test Args - Synthetic test configuration for APs at the site
- ap_
updown_ intthreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto_
upgrade SettingAuto Upgrade Args - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto_
upgrade_ Settingesl Auto Upgrade Esl Args - Automatic ESL firmware upgrade settings for the site
- bgp_
neighbor_ intupdown_ threshold - enable threshold-based bgp neighbor down delivery.
- ble_
config SettingBle Config Args - Bluetooth Low Energy configuration applied to APs at the site
- config_
auto_ boolrevert - Whether to enable ap auto config revert
- config_
push_ Settingpolicy Config Push Policy Args - Policy controlling how site configuration pushes are applied
- critical_
url_ Settingmonitoring Critical Url Monitoring Args - Monitoring configuration for critical URLs at the site
- device_
updown_ intthreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable_
unii4 bool - Whether UNII-4 channels are enabled for the site
- engagement
Setting
Engagement Args - Dwell-time analytics rules for the site
- gateway_
mgmt SettingGateway Mgmt Args - Management access settings for gateways at the site
- gateway_
tunnel_ intupdown_ threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway_
updown_ intthreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy
Setting
Iotproxy Args - Proxy settings for IoT traffic at the site
- juniper_
srx SettingJuniper Srx Args - SRX integration settings for the site
- led
Setting
Led Args - AP LED behavior configured for the site
- marvis
Setting
Marvis Args - AI assistant settings for Marvis at the site
- mxedge_
mgmt SettingMxedge Mgmt Args - Mist Edge management access settings for the site
- mxtunnels
Setting
Mxtunnels Args - Site Mist Tunnel configuration
- occupancy
Setting
Occupancy Args - Analytics settings for site occupancy
- persist_
config_ boolon_ device - Whether to store the config on AP
- proxy
Setting
Proxy Args - Network proxy settings for devices at the site
- remove_
existing_ boolconfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report_
gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
Setting
Rogue Args - AP threat detection settings for the site
- rtsa
Setting
Rtsa Args - Managed mobility and asset tracking settings for the site
- simple_
alert SettingSimple Alert Args - Threshold alert settings for the site
- skyatp
Setting
Skyatp Args - Threat intelligence settings from Sky ATP for the site
- sle_
thresholds SettingSle Thresholds Args - Service level expectation threshold settings for the site
- srx_
app SettingSrx App Args - Juniper SRX application visibility settings for the site
- ssh_
keys Sequence[str] - Public SSH keys configured for the site
- ssr
Setting
Ssr Args - Session Smart Router settings for the site
- switch_
updown_ intthreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic_
test SettingSynthetic Test Args - Active monitoring test configuration for the site
- track_
anonymous_ booldevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm_
monitoring_ booldisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm_
monitorings Sequence[SettingTunterm Monitoring Args] - Tunnel termination monitoring settings for the site
- tunterm_
multicast_ Settingconfig Tunterm Multicast Config Args - Multicast settings for tunnel termination at the site
- uplink_
port_ Settingconfig Uplink Port Config Args - AP uplink port configuration for the site
- vars Mapping[str, str]
- Template variables defined for the site
- vars_
annotations Mapping[str, SettingVars Annotations Args] - Metadata annotations for site template variables
- vna
Setting
Vna Args - Virtual Network Assistant settings for the site
- vpn_
path_ intupdown_ threshold - enable threshold-based vpn path down delivery.
- vpn_
peer_ intupdown_ threshold - enable threshold-based vpn peer down delivery.
- vs_
instance Mapping[str, SettingVs Instance Args] - EX9200 virtual switch instance definitions for the site
- wan_
vna SettingWan Vna Args - Virtual Network Assistant settings for WAN experiences at the site
- wids
Setting
Wids Args - Wireless intrusion detection settings for the site
- wifi
Setting
Wifi Args - Wireless LAN configuration settings for the site
- wired_
vna SettingWired Vna Args - Virtual Network Assistant settings for wired experiences at the site
- zone_
occupancy_ Settingalert Zone Occupancy Alert Args - Occupancy alert settings for site zones
- site
Id String - Identifier of the site these settings apply to
- allow
Mist Boolean - whether to allow Mist to look at this org
- analytic Property Map
- Advanced analytics configuration for the site
- ap
Synthetic Property MapTest - Synthetic test configuration for APs at the site
- ap
Updown NumberThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto
Upgrade Property Map - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto
Upgrade Property MapEsl - Automatic ESL firmware upgrade settings for the site
- bgp
Neighbor NumberUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- ble
Config Property Map - Bluetooth Low Energy configuration applied to APs at the site
- config
Auto BooleanRevert - Whether to enable ap auto config revert
- config
Push Property MapPolicy - Policy controlling how site configuration pushes are applied
- critical
Url Property MapMonitoring - Monitoring configuration for critical URLs at the site
- device
Updown NumberThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable
Unii4 Boolean - Whether UNII-4 channels are enabled for the site
- engagement Property Map
- Dwell-time analytics rules for the site
- gateway
Mgmt Property Map - Management access settings for gateways at the site
- gateway
Tunnel NumberUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway
Updown NumberThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy Property Map
- Proxy settings for IoT traffic at the site
- juniper
Srx Property Map - SRX integration settings for the site
- led Property Map
- AP LED behavior configured for the site
- marvis Property Map
- AI assistant settings for Marvis at the site
- mxedge
Mgmt Property Map - Mist Edge management access settings for the site
- mxtunnels Property Map
- Site Mist Tunnel configuration
- occupancy Property Map
- Analytics settings for site occupancy
- persist
Config BooleanOn Device - Whether to store the config on AP
- proxy Property Map
- Network proxy settings for devices at the site
- remove
Existing BooleanConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report
Gatt Boolean - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue Property Map
- AP threat detection settings for the site
- rtsa Property Map
- Managed mobility and asset tracking settings for the site
- simple
Alert Property Map - Threshold alert settings for the site
- skyatp Property Map
- Threat intelligence settings from Sky ATP for the site
- sle
Thresholds Property Map - Service level expectation threshold settings for the site
- srx
App Property Map - Juniper SRX application visibility settings for the site
- ssh
Keys List<String> - Public SSH keys configured for the site
- ssr Property Map
- Session Smart Router settings for the site
- switch
Updown NumberThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic
Test Property Map - Active monitoring test configuration for the site
- track
Anonymous BooleanDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm
Monitoring BooleanDisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm
Monitorings List<Property Map> - Tunnel termination monitoring settings for the site
- tunterm
Multicast Property MapConfig - Multicast settings for tunnel termination at the site
- uplink
Port Property MapConfig - AP uplink port configuration for the site
- vars Map<String>
- Template variables defined for the site
- vars
Annotations Map<Property Map> - Metadata annotations for site template variables
- vna Property Map
- Virtual Network Assistant settings for the site
- vpn
Path NumberUpdown Threshold - enable threshold-based vpn path down delivery.
- vpn
Peer NumberUpdown Threshold - enable threshold-based vpn peer down delivery.
- vs
Instance Map<Property Map> - EX9200 virtual switch instance definitions for the site
- wan
Vna Property Map - Virtual Network Assistant settings for WAN experiences at the site
- wids Property Map
- Wireless intrusion detection settings for the site
- wifi Property Map
- Wireless LAN configuration settings for the site
- wired
Vna Property Map - Virtual Network Assistant settings for wired experiences at the site
- zone
Occupancy Property MapAlert - Occupancy alert settings for site zones
Outputs
All input properties are implicitly available as output properties. Additionally, the Setting resource produces the following output properties:
- Blacklist
Url string - Read-only URL for the site blacklist file
- Id string
- The provider-assigned unique ID for this managed resource.
- Watched
Station stringUrl - Read-only URL for the watched station list file
- Whitelist
Url string - Read-only URL for the site whitelist file
- Blacklist
Url string - Read-only URL for the site blacklist file
- Id string
- The provider-assigned unique ID for this managed resource.
- Watched
Station stringUrl - Read-only URL for the watched station list file
- Whitelist
Url string - Read-only URL for the site whitelist file
- blacklist_
url string - Read-only URL for the site blacklist file
- id string
- The provider-assigned unique ID for this managed resource.
- watched_
station_ stringurl - Read-only URL for the watched station list file
- whitelist_
url string - Read-only URL for the site whitelist file
- blacklist
Url String - Read-only URL for the site blacklist file
- id String
- The provider-assigned unique ID for this managed resource.
- watched
Station StringUrl - Read-only URL for the watched station list file
- whitelist
Url String - Read-only URL for the site whitelist file
- blacklist
Url string - Read-only URL for the site blacklist file
- id string
- The provider-assigned unique ID for this managed resource.
- watched
Station stringUrl - Read-only URL for the watched station list file
- whitelist
Url string - Read-only URL for the site whitelist file
- blacklist_
url str - Read-only URL for the site blacklist file
- id str
- The provider-assigned unique ID for this managed resource.
- watched_
station_ strurl - Read-only URL for the watched station list file
- whitelist_
url str - Read-only URL for the site whitelist file
- blacklist
Url String - Read-only URL for the site blacklist file
- id String
- The provider-assigned unique ID for this managed resource.
- watched
Station StringUrl - Read-only URL for the watched station list file
- whitelist
Url String - Read-only URL for the site whitelist file
Look up Existing Setting Resource
Get an existing Setting 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?: SettingState, opts?: CustomResourceOptions): Setting@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_mist: Optional[bool] = None,
analytic: Optional[SettingAnalyticArgs] = None,
ap_synthetic_test: Optional[SettingApSyntheticTestArgs] = None,
ap_updown_threshold: Optional[int] = None,
auto_upgrade: Optional[SettingAutoUpgradeArgs] = None,
auto_upgrade_esl: Optional[SettingAutoUpgradeEslArgs] = None,
bgp_neighbor_updown_threshold: Optional[int] = None,
blacklist_url: Optional[str] = None,
ble_config: Optional[SettingBleConfigArgs] = None,
config_auto_revert: Optional[bool] = None,
config_push_policy: Optional[SettingConfigPushPolicyArgs] = None,
critical_url_monitoring: Optional[SettingCriticalUrlMonitoringArgs] = None,
device_updown_threshold: Optional[int] = None,
enable_unii4: Optional[bool] = None,
engagement: Optional[SettingEngagementArgs] = None,
gateway_mgmt: Optional[SettingGatewayMgmtArgs] = None,
gateway_tunnel_updown_threshold: Optional[int] = None,
gateway_updown_threshold: Optional[int] = None,
iotproxy: Optional[SettingIotproxyArgs] = None,
juniper_srx: Optional[SettingJuniperSrxArgs] = None,
led: Optional[SettingLedArgs] = None,
marvis: Optional[SettingMarvisArgs] = None,
mxedge_mgmt: Optional[SettingMxedgeMgmtArgs] = None,
mxtunnels: Optional[SettingMxtunnelsArgs] = None,
occupancy: Optional[SettingOccupancyArgs] = None,
persist_config_on_device: Optional[bool] = None,
proxy: Optional[SettingProxyArgs] = None,
remove_existing_configs: Optional[bool] = None,
report_gatt: Optional[bool] = None,
rogue: Optional[SettingRogueArgs] = None,
rtsa: Optional[SettingRtsaArgs] = None,
simple_alert: Optional[SettingSimpleAlertArgs] = None,
site_id: Optional[str] = None,
skyatp: Optional[SettingSkyatpArgs] = None,
sle_thresholds: Optional[SettingSleThresholdsArgs] = None,
srx_app: Optional[SettingSrxAppArgs] = None,
ssh_keys: Optional[Sequence[str]] = None,
ssr: Optional[SettingSsrArgs] = None,
switch_updown_threshold: Optional[int] = None,
synthetic_test: Optional[SettingSyntheticTestArgs] = None,
track_anonymous_devices: Optional[bool] = None,
tunterm_monitoring_disabled: Optional[bool] = None,
tunterm_monitorings: Optional[Sequence[SettingTuntermMonitoringArgs]] = None,
tunterm_multicast_config: Optional[SettingTuntermMulticastConfigArgs] = None,
uplink_port_config: Optional[SettingUplinkPortConfigArgs] = None,
vars: Optional[Mapping[str, str]] = None,
vars_annotations: Optional[Mapping[str, SettingVarsAnnotationsArgs]] = None,
vna: Optional[SettingVnaArgs] = None,
vpn_path_updown_threshold: Optional[int] = None,
vpn_peer_updown_threshold: Optional[int] = None,
vs_instance: Optional[Mapping[str, SettingVsInstanceArgs]] = None,
wan_vna: Optional[SettingWanVnaArgs] = None,
watched_station_url: Optional[str] = None,
whitelist_url: Optional[str] = None,
wids: Optional[SettingWidsArgs] = None,
wifi: Optional[SettingWifiArgs] = None,
wired_vna: Optional[SettingWiredVnaArgs] = None,
zone_occupancy_alert: Optional[SettingZoneOccupancyAlertArgs] = None) -> Settingfunc GetSetting(ctx *Context, name string, id IDInput, state *SettingState, opts ...ResourceOption) (*Setting, error)public static Setting Get(string name, Input<string> id, SettingState? state, CustomResourceOptions? opts = null)public static Setting get(String name, Output<String> id, SettingState state, CustomResourceOptions options)resources: _: type: junipermist:site:Setting get: id: ${id}import {
to = junipermist_site_setting.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.
- Allow
Mist bool - whether to allow Mist to look at this org
- Analytic
Pulumi.
Juniper Mist. Site. Inputs. Setting Analytic - Advanced analytics configuration for the site
- Ap
Synthetic Pulumi.Test Juniper Mist. Site. Inputs. Setting Ap Synthetic Test - Synthetic test configuration for APs at the site
- Ap
Updown intThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - Auto
Upgrade Pulumi.Juniper Mist. Site. Inputs. Setting Auto Upgrade - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- Auto
Upgrade Pulumi.Esl Juniper Mist. Site. Inputs. Setting Auto Upgrade Esl - Automatic ESL firmware upgrade settings for the site
- Bgp
Neighbor intUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- Blacklist
Url string - Read-only URL for the site blacklist file
- Ble
Config Pulumi.Juniper Mist. Site. Inputs. Setting Ble Config - Bluetooth Low Energy configuration applied to APs at the site
- Config
Auto boolRevert - Whether to enable ap auto config revert
- Config
Push Pulumi.Policy Juniper Mist. Site. Inputs. Setting Config Push Policy - Policy controlling how site configuration pushes are applied
- Critical
Url Pulumi.Monitoring Juniper Mist. Site. Inputs. Setting Critical Url Monitoring - Monitoring configuration for critical URLs at the site
- Device
Updown intThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Enable
Unii4 bool - Whether UNII-4 channels are enabled for the site
- Engagement
Pulumi.
Juniper Mist. Site. Inputs. Setting Engagement - Dwell-time analytics rules for the site
- Gateway
Mgmt Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt - Management access settings for gateways at the site
- Gateway
Tunnel intUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- Gateway
Updown intThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - Iotproxy
Pulumi.
Juniper Mist. Site. Inputs. Setting Iotproxy - Proxy settings for IoT traffic at the site
- Juniper
Srx Pulumi.Juniper Mist. Site. Inputs. Setting Juniper Srx - SRX integration settings for the site
- Led
Pulumi.
Juniper Mist. Site. Inputs. Setting Led - AP LED behavior configured for the site
- Marvis
Pulumi.
Juniper Mist. Site. Inputs. Setting Marvis - AI assistant settings for Marvis at the site
- Mxedge
Mgmt Pulumi.Juniper Mist. Site. Inputs. Setting Mxedge Mgmt - Mist Edge management access settings for the site
- Mxtunnels
Pulumi.
Juniper Mist. Site. Inputs. Setting Mxtunnels - Site Mist Tunnel configuration
- Occupancy
Pulumi.
Juniper Mist. Site. Inputs. Setting Occupancy - Analytics settings for site occupancy
- Persist
Config boolOn Device - Whether to store the config on AP
- Proxy
Pulumi.
Juniper Mist. Site. Inputs. Setting Proxy - Network proxy settings for devices at the site
- Remove
Existing boolConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - Report
Gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- Rogue
Pulumi.
Juniper Mist. Site. Inputs. Setting Rogue - AP threat detection settings for the site
- Rtsa
Pulumi.
Juniper Mist. Site. Inputs. Setting Rtsa - Managed mobility and asset tracking settings for the site
- Simple
Alert Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert - Threshold alert settings for the site
- Site
Id string - Identifier of the site these settings apply to
- Skyatp
Pulumi.
Juniper Mist. Site. Inputs. Setting Skyatp - Threat intelligence settings from Sky ATP for the site
- Sle
Thresholds Pulumi.Juniper Mist. Site. Inputs. Setting Sle Thresholds - Service level expectation threshold settings for the site
- Srx
App Pulumi.Juniper Mist. Site. Inputs. Setting Srx App - Juniper SRX application visibility settings for the site
- Ssh
Keys List<string> - Public SSH keys configured for the site
- Ssr
Pulumi.
Juniper Mist. Site. Inputs. Setting Ssr - Session Smart Router settings for the site
- Switch
Updown intThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - Synthetic
Test Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test - Active monitoring test configuration for the site
- Track
Anonymous boolDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- Tunterm
Monitoring boolDisabled - Whether tunnel termination monitoring is disabled for the site
- Tunterm
Monitorings List<Pulumi.Juniper Mist. Site. Inputs. Setting Tunterm Monitoring> - Tunnel termination monitoring settings for the site
- Tunterm
Multicast Pulumi.Config Juniper Mist. Site. Inputs. Setting Tunterm Multicast Config - Multicast settings for tunnel termination at the site
- Uplink
Port Pulumi.Config Juniper Mist. Site. Inputs. Setting Uplink Port Config - AP uplink port configuration for the site
- Vars Dictionary<string, string>
- Template variables defined for the site
- Vars
Annotations Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Vars Annotations Args> - Metadata annotations for site template variables
- Vna
Pulumi.
Juniper Mist. Site. Inputs. Setting Vna - Virtual Network Assistant settings for the site
- Vpn
Path intUpdown Threshold - enable threshold-based vpn path down delivery.
- Vpn
Peer intUpdown Threshold - enable threshold-based vpn peer down delivery.
- Vs
Instance Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Vs Instance Args> - EX9200 virtual switch instance definitions for the site
- Wan
Vna Pulumi.Juniper Mist. Site. Inputs. Setting Wan Vna - Virtual Network Assistant settings for WAN experiences at the site
- Watched
Station stringUrl - Read-only URL for the watched station list file
- Whitelist
Url string - Read-only URL for the site whitelist file
- Wids
Pulumi.
Juniper Mist. Site. Inputs. Setting Wids - Wireless intrusion detection settings for the site
- Wifi
Pulumi.
Juniper Mist. Site. Inputs. Setting Wifi - Wireless LAN configuration settings for the site
- Wired
Vna Pulumi.Juniper Mist. Site. Inputs. Setting Wired Vna - Virtual Network Assistant settings for wired experiences at the site
- Zone
Occupancy Pulumi.Alert Juniper Mist. Site. Inputs. Setting Zone Occupancy Alert - Occupancy alert settings for site zones
- Allow
Mist bool - whether to allow Mist to look at this org
- Analytic
Setting
Analytic Args - Advanced analytics configuration for the site
- Ap
Synthetic SettingTest Ap Synthetic Test Args - Synthetic test configuration for APs at the site
- Ap
Updown intThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - Auto
Upgrade SettingAuto Upgrade Args - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- Auto
Upgrade SettingEsl Auto Upgrade Esl Args - Automatic ESL firmware upgrade settings for the site
- Bgp
Neighbor intUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- Blacklist
Url string - Read-only URL for the site blacklist file
- Ble
Config SettingBle Config Args - Bluetooth Low Energy configuration applied to APs at the site
- Config
Auto boolRevert - Whether to enable ap auto config revert
- Config
Push SettingPolicy Config Push Policy Args - Policy controlling how site configuration pushes are applied
- Critical
Url SettingMonitoring Critical Url Monitoring Args - Monitoring configuration for critical URLs at the site
- Device
Updown intThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Enable
Unii4 bool - Whether UNII-4 channels are enabled for the site
- Engagement
Setting
Engagement Args - Dwell-time analytics rules for the site
- Gateway
Mgmt SettingGateway Mgmt Args - Management access settings for gateways at the site
- Gateway
Tunnel intUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- Gateway
Updown intThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - Iotproxy
Setting
Iotproxy Args - Proxy settings for IoT traffic at the site
- Juniper
Srx SettingJuniper Srx Args - SRX integration settings for the site
- Led
Setting
Led Args - AP LED behavior configured for the site
- Marvis
Setting
Marvis Args - AI assistant settings for Marvis at the site
- Mxedge
Mgmt SettingMxedge Mgmt Args - Mist Edge management access settings for the site
- Mxtunnels
Setting
Mxtunnels Args - Site Mist Tunnel configuration
- Occupancy
Setting
Occupancy Args - Analytics settings for site occupancy
- Persist
Config boolOn Device - Whether to store the config on AP
- Proxy
Setting
Proxy Args - Network proxy settings for devices at the site
- Remove
Existing boolConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - Report
Gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- Rogue
Setting
Rogue Args - AP threat detection settings for the site
- Rtsa
Setting
Rtsa Args - Managed mobility and asset tracking settings for the site
- Simple
Alert SettingSimple Alert Args - Threshold alert settings for the site
- Site
Id string - Identifier of the site these settings apply to
- Skyatp
Setting
Skyatp Args - Threat intelligence settings from Sky ATP for the site
- Sle
Thresholds SettingSle Thresholds Args - Service level expectation threshold settings for the site
- Srx
App SettingSrx App Args - Juniper SRX application visibility settings for the site
- Ssh
Keys []string - Public SSH keys configured for the site
- Ssr
Setting
Ssr Args - Session Smart Router settings for the site
- Switch
Updown intThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - Synthetic
Test SettingSynthetic Test Args - Active monitoring test configuration for the site
- Track
Anonymous boolDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- Tunterm
Monitoring boolDisabled - Whether tunnel termination monitoring is disabled for the site
- Tunterm
Monitorings []SettingTunterm Monitoring Args - Tunnel termination monitoring settings for the site
- Tunterm
Multicast SettingConfig Tunterm Multicast Config Args - Multicast settings for tunnel termination at the site
- Uplink
Port SettingConfig Uplink Port Config Args - AP uplink port configuration for the site
- Vars map[string]string
- Template variables defined for the site
- Vars
Annotations map[string]SettingVars Annotations Args - Metadata annotations for site template variables
- Vna
Setting
Vna Args - Virtual Network Assistant settings for the site
- Vpn
Path intUpdown Threshold - enable threshold-based vpn path down delivery.
- Vpn
Peer intUpdown Threshold - enable threshold-based vpn peer down delivery.
- Vs
Instance map[string]SettingVs Instance Args - EX9200 virtual switch instance definitions for the site
- Wan
Vna SettingWan Vna Args - Virtual Network Assistant settings for WAN experiences at the site
- Watched
Station stringUrl - Read-only URL for the watched station list file
- Whitelist
Url string - Read-only URL for the site whitelist file
- Wids
Setting
Wids Args - Wireless intrusion detection settings for the site
- Wifi
Setting
Wifi Args - Wireless LAN configuration settings for the site
- Wired
Vna SettingWired Vna Args - Virtual Network Assistant settings for wired experiences at the site
- Zone
Occupancy SettingAlert Zone Occupancy Alert Args - Occupancy alert settings for site zones
- allow_
mist bool - whether to allow Mist to look at this org
- analytic object
- Advanced analytics configuration for the site
- ap_
synthetic_ objecttest - Synthetic test configuration for APs at the site
- ap_
updown_ numberthreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto_
upgrade object - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto_
upgrade_ objectesl - Automatic ESL firmware upgrade settings for the site
- bgp_
neighbor_ numberupdown_ threshold - enable threshold-based bgp neighbor down delivery.
- blacklist_
url string - Read-only URL for the site blacklist file
- ble_
config object - Bluetooth Low Energy configuration applied to APs at the site
- config_
auto_ boolrevert - Whether to enable ap auto config revert
- config_
push_ objectpolicy - Policy controlling how site configuration pushes are applied
- critical_
url_ objectmonitoring - Monitoring configuration for critical URLs at the site
- device_
updown_ numberthreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable_
unii4 bool - Whether UNII-4 channels are enabled for the site
- engagement object
- Dwell-time analytics rules for the site
- gateway_
mgmt object - Management access settings for gateways at the site
- gateway_
tunnel_ numberupdown_ threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway_
updown_ numberthreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy object
- Proxy settings for IoT traffic at the site
- juniper_
srx object - SRX integration settings for the site
- led object
- AP LED behavior configured for the site
- marvis object
- AI assistant settings for Marvis at the site
- mxedge_
mgmt object - Mist Edge management access settings for the site
- mxtunnels object
- Site Mist Tunnel configuration
- occupancy object
- Analytics settings for site occupancy
- persist_
config_ boolon_ device - Whether to store the config on AP
- proxy object
- Network proxy settings for devices at the site
- remove_
existing_ boolconfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report_
gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue object
- AP threat detection settings for the site
- rtsa object
- Managed mobility and asset tracking settings for the site
- simple_
alert object - Threshold alert settings for the site
- site_
id string - Identifier of the site these settings apply to
- skyatp object
- Threat intelligence settings from Sky ATP for the site
- sle_
thresholds object - Service level expectation threshold settings for the site
- srx_
app object - Juniper SRX application visibility settings for the site
- ssh_
keys list(string) - Public SSH keys configured for the site
- ssr object
- Session Smart Router settings for the site
- switch_
updown_ numberthreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic_
test object - Active monitoring test configuration for the site
- track_
anonymous_ booldevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm_
monitoring_ booldisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm_
monitorings list(object) - Tunnel termination monitoring settings for the site
- tunterm_
multicast_ objectconfig - Multicast settings for tunnel termination at the site
- uplink_
port_ objectconfig - AP uplink port configuration for the site
- vars map(string)
- Template variables defined for the site
- vars_
annotations map(object) - Metadata annotations for site template variables
- vna object
- Virtual Network Assistant settings for the site
- vpn_
path_ numberupdown_ threshold - enable threshold-based vpn path down delivery.
- vpn_
peer_ numberupdown_ threshold - enable threshold-based vpn peer down delivery.
- vs_
instance map(object) - EX9200 virtual switch instance definitions for the site
- wan_
vna object - Virtual Network Assistant settings for WAN experiences at the site
- watched_
station_ stringurl - Read-only URL for the watched station list file
- whitelist_
url string - Read-only URL for the site whitelist file
- wids object
- Wireless intrusion detection settings for the site
- wifi object
- Wireless LAN configuration settings for the site
- wired_
vna object - Virtual Network Assistant settings for wired experiences at the site
- zone_
occupancy_ objectalert - Occupancy alert settings for site zones
- allow
Mist Boolean - whether to allow Mist to look at this org
- analytic
Setting
Analytic - Advanced analytics configuration for the site
- ap
Synthetic SettingTest Ap Synthetic Test - Synthetic test configuration for APs at the site
- ap
Updown IntegerThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto
Upgrade SettingAuto Upgrade - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto
Upgrade SettingEsl Auto Upgrade Esl - Automatic ESL firmware upgrade settings for the site
- bgp
Neighbor IntegerUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- blacklist
Url String - Read-only URL for the site blacklist file
- ble
Config SettingBle Config - Bluetooth Low Energy configuration applied to APs at the site
- config
Auto BooleanRevert - Whether to enable ap auto config revert
- config
Push SettingPolicy Config Push Policy - Policy controlling how site configuration pushes are applied
- critical
Url SettingMonitoring Critical Url Monitoring - Monitoring configuration for critical URLs at the site
- device
Updown IntegerThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable
Unii4 Boolean - Whether UNII-4 channels are enabled for the site
- engagement
Setting
Engagement - Dwell-time analytics rules for the site
- gateway
Mgmt SettingGateway Mgmt - Management access settings for gateways at the site
- gateway
Tunnel IntegerUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway
Updown IntegerThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy
Setting
Iotproxy - Proxy settings for IoT traffic at the site
- juniper
Srx SettingJuniper Srx - SRX integration settings for the site
- led
Setting
Led - AP LED behavior configured for the site
- marvis
Setting
Marvis - AI assistant settings for Marvis at the site
- mxedge
Mgmt SettingMxedge Mgmt - Mist Edge management access settings for the site
- mxtunnels
Setting
Mxtunnels - Site Mist Tunnel configuration
- occupancy
Setting
Occupancy - Analytics settings for site occupancy
- persist
Config BooleanOn Device - Whether to store the config on AP
- proxy
Setting
Proxy - Network proxy settings for devices at the site
- remove
Existing BooleanConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report
Gatt Boolean - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
Setting
Rogue - AP threat detection settings for the site
- rtsa
Setting
Rtsa - Managed mobility and asset tracking settings for the site
- simple
Alert SettingSimple Alert - Threshold alert settings for the site
- site
Id String - Identifier of the site these settings apply to
- skyatp
Setting
Skyatp - Threat intelligence settings from Sky ATP for the site
- sle
Thresholds SettingSle Thresholds - Service level expectation threshold settings for the site
- srx
App SettingSrx App - Juniper SRX application visibility settings for the site
- ssh
Keys List<String> - Public SSH keys configured for the site
- ssr
Setting
Ssr - Session Smart Router settings for the site
- switch
Updown IntegerThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic
Test SettingSynthetic Test - Active monitoring test configuration for the site
- track
Anonymous BooleanDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm
Monitoring BooleanDisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm
Monitorings List<SettingTunterm Monitoring> - Tunnel termination monitoring settings for the site
- tunterm
Multicast SettingConfig Tunterm Multicast Config - Multicast settings for tunnel termination at the site
- uplink
Port SettingConfig Uplink Port Config - AP uplink port configuration for the site
- vars Map<String,String>
- Template variables defined for the site
- vars
Annotations Map<String,SettingVars Annotations Args> - Metadata annotations for site template variables
- vna
Setting
Vna - Virtual Network Assistant settings for the site
- vpn
Path IntegerUpdown Threshold - enable threshold-based vpn path down delivery.
- vpn
Peer IntegerUpdown Threshold - enable threshold-based vpn peer down delivery.
- vs
Instance Map<String,SettingVs Instance Args> - EX9200 virtual switch instance definitions for the site
- wan
Vna SettingWan Vna - Virtual Network Assistant settings for WAN experiences at the site
- watched
Station StringUrl - Read-only URL for the watched station list file
- whitelist
Url String - Read-only URL for the site whitelist file
- wids
Setting
Wids - Wireless intrusion detection settings for the site
- wifi
Setting
Wifi - Wireless LAN configuration settings for the site
- wired
Vna SettingWired Vna - Virtual Network Assistant settings for wired experiences at the site
- zone
Occupancy SettingAlert Zone Occupancy Alert - Occupancy alert settings for site zones
- allow
Mist boolean - whether to allow Mist to look at this org
- analytic
Setting
Analytic - Advanced analytics configuration for the site
- ap
Synthetic SettingTest Ap Synthetic Test - Synthetic test configuration for APs at the site
- ap
Updown numberThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto
Upgrade SettingAuto Upgrade - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto
Upgrade SettingEsl Auto Upgrade Esl - Automatic ESL firmware upgrade settings for the site
- bgp
Neighbor numberUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- blacklist
Url string - Read-only URL for the site blacklist file
- ble
Config SettingBle Config - Bluetooth Low Energy configuration applied to APs at the site
- config
Auto booleanRevert - Whether to enable ap auto config revert
- config
Push SettingPolicy Config Push Policy - Policy controlling how site configuration pushes are applied
- critical
Url SettingMonitoring Critical Url Monitoring - Monitoring configuration for critical URLs at the site
- device
Updown numberThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable
Unii4 boolean - Whether UNII-4 channels are enabled for the site
- engagement
Setting
Engagement - Dwell-time analytics rules for the site
- gateway
Mgmt SettingGateway Mgmt - Management access settings for gateways at the site
- gateway
Tunnel numberUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway
Updown numberThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy
Setting
Iotproxy - Proxy settings for IoT traffic at the site
- juniper
Srx SettingJuniper Srx - SRX integration settings for the site
- led
Setting
Led - AP LED behavior configured for the site
- marvis
Setting
Marvis - AI assistant settings for Marvis at the site
- mxedge
Mgmt SettingMxedge Mgmt - Mist Edge management access settings for the site
- mxtunnels
Setting
Mxtunnels - Site Mist Tunnel configuration
- occupancy
Setting
Occupancy - Analytics settings for site occupancy
- persist
Config booleanOn Device - Whether to store the config on AP
- proxy
Setting
Proxy - Network proxy settings for devices at the site
- remove
Existing booleanConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report
Gatt boolean - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
Setting
Rogue - AP threat detection settings for the site
- rtsa
Setting
Rtsa - Managed mobility and asset tracking settings for the site
- simple
Alert SettingSimple Alert - Threshold alert settings for the site
- site
Id string - Identifier of the site these settings apply to
- skyatp
Setting
Skyatp - Threat intelligence settings from Sky ATP for the site
- sle
Thresholds SettingSle Thresholds - Service level expectation threshold settings for the site
- srx
App SettingSrx App - Juniper SRX application visibility settings for the site
- ssh
Keys string[] - Public SSH keys configured for the site
- ssr
Setting
Ssr - Session Smart Router settings for the site
- switch
Updown numberThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic
Test SettingSynthetic Test - Active monitoring test configuration for the site
- track
Anonymous booleanDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm
Monitoring booleanDisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm
Monitorings SettingTunterm Monitoring[] - Tunnel termination monitoring settings for the site
- tunterm
Multicast SettingConfig Tunterm Multicast Config - Multicast settings for tunnel termination at the site
- uplink
Port SettingConfig Uplink Port Config - AP uplink port configuration for the site
- vars {[key: string]: string}
- Template variables defined for the site
- vars
Annotations {[key: string]: SettingVars Annotations Args} - Metadata annotations for site template variables
- vna
Setting
Vna - Virtual Network Assistant settings for the site
- vpn
Path numberUpdown Threshold - enable threshold-based vpn path down delivery.
- vpn
Peer numberUpdown Threshold - enable threshold-based vpn peer down delivery.
- vs
Instance {[key: string]: SettingVs Instance Args} - EX9200 virtual switch instance definitions for the site
- wan
Vna SettingWan Vna - Virtual Network Assistant settings for WAN experiences at the site
- watched
Station stringUrl - Read-only URL for the watched station list file
- whitelist
Url string - Read-only URL for the site whitelist file
- wids
Setting
Wids - Wireless intrusion detection settings for the site
- wifi
Setting
Wifi - Wireless LAN configuration settings for the site
- wired
Vna SettingWired Vna - Virtual Network Assistant settings for wired experiences at the site
- zone
Occupancy SettingAlert Zone Occupancy Alert - Occupancy alert settings for site zones
- allow_
mist bool - whether to allow Mist to look at this org
- analytic
Setting
Analytic Args - Advanced analytics configuration for the site
- ap_
synthetic_ Settingtest Ap Synthetic Test Args - Synthetic test configuration for APs at the site
- ap_
updown_ intthreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto_
upgrade SettingAuto Upgrade Args - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto_
upgrade_ Settingesl Auto Upgrade Esl Args - Automatic ESL firmware upgrade settings for the site
- bgp_
neighbor_ intupdown_ threshold - enable threshold-based bgp neighbor down delivery.
- blacklist_
url str - Read-only URL for the site blacklist file
- ble_
config SettingBle Config Args - Bluetooth Low Energy configuration applied to APs at the site
- config_
auto_ boolrevert - Whether to enable ap auto config revert
- config_
push_ Settingpolicy Config Push Policy Args - Policy controlling how site configuration pushes are applied
- critical_
url_ Settingmonitoring Critical Url Monitoring Args - Monitoring configuration for critical URLs at the site
- device_
updown_ intthreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable_
unii4 bool - Whether UNII-4 channels are enabled for the site
- engagement
Setting
Engagement Args - Dwell-time analytics rules for the site
- gateway_
mgmt SettingGateway Mgmt Args - Management access settings for gateways at the site
- gateway_
tunnel_ intupdown_ threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway_
updown_ intthreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy
Setting
Iotproxy Args - Proxy settings for IoT traffic at the site
- juniper_
srx SettingJuniper Srx Args - SRX integration settings for the site
- led
Setting
Led Args - AP LED behavior configured for the site
- marvis
Setting
Marvis Args - AI assistant settings for Marvis at the site
- mxedge_
mgmt SettingMxedge Mgmt Args - Mist Edge management access settings for the site
- mxtunnels
Setting
Mxtunnels Args - Site Mist Tunnel configuration
- occupancy
Setting
Occupancy Args - Analytics settings for site occupancy
- persist_
config_ boolon_ device - Whether to store the config on AP
- proxy
Setting
Proxy Args - Network proxy settings for devices at the site
- remove_
existing_ boolconfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report_
gatt bool - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
Setting
Rogue Args - AP threat detection settings for the site
- rtsa
Setting
Rtsa Args - Managed mobility and asset tracking settings for the site
- simple_
alert SettingSimple Alert Args - Threshold alert settings for the site
- site_
id str - Identifier of the site these settings apply to
- skyatp
Setting
Skyatp Args - Threat intelligence settings from Sky ATP for the site
- sle_
thresholds SettingSle Thresholds Args - Service level expectation threshold settings for the site
- srx_
app SettingSrx App Args - Juniper SRX application visibility settings for the site
- ssh_
keys Sequence[str] - Public SSH keys configured for the site
- ssr
Setting
Ssr Args - Session Smart Router settings for the site
- switch_
updown_ intthreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic_
test SettingSynthetic Test Args - Active monitoring test configuration for the site
- track_
anonymous_ booldevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm_
monitoring_ booldisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm_
monitorings Sequence[SettingTunterm Monitoring Args] - Tunnel termination monitoring settings for the site
- tunterm_
multicast_ Settingconfig Tunterm Multicast Config Args - Multicast settings for tunnel termination at the site
- uplink_
port_ Settingconfig Uplink Port Config Args - AP uplink port configuration for the site
- vars Mapping[str, str]
- Template variables defined for the site
- vars_
annotations Mapping[str, SettingVars Annotations Args] - Metadata annotations for site template variables
- vna
Setting
Vna Args - Virtual Network Assistant settings for the site
- vpn_
path_ intupdown_ threshold - enable threshold-based vpn path down delivery.
- vpn_
peer_ intupdown_ threshold - enable threshold-based vpn peer down delivery.
- vs_
instance Mapping[str, SettingVs Instance Args] - EX9200 virtual switch instance definitions for the site
- wan_
vna SettingWan Vna Args - Virtual Network Assistant settings for WAN experiences at the site
- watched_
station_ strurl - Read-only URL for the watched station list file
- whitelist_
url str - Read-only URL for the site whitelist file
- wids
Setting
Wids Args - Wireless intrusion detection settings for the site
- wifi
Setting
Wifi Args - Wireless LAN configuration settings for the site
- wired_
vna SettingWired Vna Args - Virtual Network Assistant settings for wired experiences at the site
- zone_
occupancy_ Settingalert Zone Occupancy Alert Args - Occupancy alert settings for site zones
- allow
Mist Boolean - whether to allow Mist to look at this org
- analytic Property Map
- Advanced analytics configuration for the site
- ap
Synthetic Property MapTest - Synthetic test configuration for APs at the site
- ap
Updown NumberThreshold - Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
deviceUpdownThresholdis ignored. - auto
Upgrade Property Map - Automatic AP firmware upgrade settings for the site. Overrides org setting when provided.
- auto
Upgrade Property MapEsl - Automatic ESL firmware upgrade settings for the site
- bgp
Neighbor NumberUpdown Threshold - enable threshold-based bgp neighbor down delivery.
- blacklist
Url String - Read-only URL for the site blacklist file
- ble
Config Property Map - Bluetooth Low Energy configuration applied to APs at the site
- config
Auto BooleanRevert - Whether to enable ap auto config revert
- config
Push Property MapPolicy - Policy controlling how site configuration pushes are applied
- critical
Url Property MapMonitoring - Monitoring configuration for critical URLs at the site
- device
Updown NumberThreshold - By default, device_updown_threshold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- enable
Unii4 Boolean - Whether UNII-4 channels are enabled for the site
- engagement Property Map
- Dwell-time analytics rules for the site
- gateway
Mgmt Property Map - Management access settings for gateways at the site
- gateway
Tunnel NumberUpdown Threshold - enable threshold-based gateway tunnel (secure edge tunnels) up-down delivery.
- gateway
Updown NumberThreshold - Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
deviceUpdownThresholdis ignored. - iotproxy Property Map
- Proxy settings for IoT traffic at the site
- juniper
Srx Property Map - SRX integration settings for the site
- led Property Map
- AP LED behavior configured for the site
- marvis Property Map
- AI assistant settings for Marvis at the site
- mxedge
Mgmt Property Map - Mist Edge management access settings for the site
- mxtunnels Property Map
- Site Mist Tunnel configuration
- occupancy Property Map
- Analytics settings for site occupancy
- persist
Config BooleanOn Device - Whether to store the config on AP
- proxy Property Map
- Network proxy settings for devices at the site
- remove
Existing BooleanConfigs - By default, only the configuration generated by Mist is cleaned up during the configuration process. If
true, all the existing configuration will be removed. - report
Gatt Boolean - Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue Property Map
- AP threat detection settings for the site
- rtsa Property Map
- Managed mobility and asset tracking settings for the site
- simple
Alert Property Map - Threshold alert settings for the site
- site
Id String - Identifier of the site these settings apply to
- skyatp Property Map
- Threat intelligence settings from Sky ATP for the site
- sle
Thresholds Property Map - Service level expectation threshold settings for the site
- srx
App Property Map - Juniper SRX application visibility settings for the site
- ssh
Keys List<String> - Public SSH keys configured for the site
- ssr Property Map
- Session Smart Router settings for the site
- switch
Updown NumberThreshold - Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
deviceUpdownThresholdis ignored. - synthetic
Test Property Map - Active monitoring test configuration for the site
- track
Anonymous BooleanDevices - Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- tunterm
Monitoring BooleanDisabled - Whether tunnel termination monitoring is disabled for the site
- tunterm
Monitorings List<Property Map> - Tunnel termination monitoring settings for the site
- tunterm
Multicast Property MapConfig - Multicast settings for tunnel termination at the site
- uplink
Port Property MapConfig - AP uplink port configuration for the site
- vars Map<String>
- Template variables defined for the site
- vars
Annotations Map<Property Map> - Metadata annotations for site template variables
- vna Property Map
- Virtual Network Assistant settings for the site
- vpn
Path NumberUpdown Threshold - enable threshold-based vpn path down delivery.
- vpn
Peer NumberUpdown Threshold - enable threshold-based vpn peer down delivery.
- vs
Instance Map<Property Map> - EX9200 virtual switch instance definitions for the site
- wan
Vna Property Map - Virtual Network Assistant settings for WAN experiences at the site
- watched
Station StringUrl - Read-only URL for the watched station list file
- whitelist
Url String - Read-only URL for the site whitelist file
- wids Property Map
- Wireless intrusion detection settings for the site
- wifi Property Map
- Wireless LAN configuration settings for the site
- wired
Vna Property Map - Virtual Network Assistant settings for wired experiences at the site
- zone
Occupancy Property MapAlert - Occupancy alert settings for site zones
Supporting Types
SettingAnalytic, SettingAnalyticArgs
- Enabled bool
- Enable Advanced Analytic feature (using SUB-ANA license)
- Enabled bool
- Enable Advanced Analytic feature (using SUB-ANA license)
- enabled bool
- Enable Advanced Analytic feature (using SUB-ANA license)
- enabled Boolean
- Enable Advanced Analytic feature (using SUB-ANA license)
- enabled boolean
- Enable Advanced Analytic feature (using SUB-ANA license)
- enabled bool
- Enable Advanced Analytic feature (using SUB-ANA license)
- enabled Boolean
- Enable Advanced Analytic feature (using SUB-ANA license)
SettingApSyntheticTest, SettingApSyntheticTestArgs
- Additional
Vlan List<string>Ids - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
- Additional
Vlan []stringIds - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
- additional_
vlan_ list(string)ids - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
- additional
Vlan List<String>Ids - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
- additional
Vlan string[]Ids - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
- additional_
vlan_ Sequence[str]ids - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
- additional
Vlan List<String>Ids - VLAN IDs included in addition to the default VLAN set for AP synthetic tests
SettingAutoUpgrade, SettingAutoUpgradeArgs
- Custom
Versions Dictionary<string, string> - Per-AP-model firmware versions or channels used for auto-upgrade
- Day
Of stringWeek - Weekly AP auto-upgrade day for the maintenance window
- Enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- Time
Of stringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- Version string
- Firmware release channel or custom version used for AP auto-upgrade
- Custom
Versions map[string]string - Per-AP-model firmware versions or channels used for auto-upgrade
- Day
Of stringWeek - Weekly AP auto-upgrade day for the maintenance window
- Enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- Time
Of stringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- Version string
- Firmware release channel or custom version used for AP auto-upgrade
- custom_
versions map(string) - Per-AP-model firmware versions or channels used for auto-upgrade
- day_
of_ stringweek - Weekly AP auto-upgrade day for the maintenance window
- enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time_
of_ stringday any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version string
- Firmware release channel or custom version used for AP auto-upgrade
- custom
Versions Map<String,String> - Per-AP-model firmware versions or channels used for auto-upgrade
- day
Of StringWeek - Weekly AP auto-upgrade day for the maintenance window
- enabled Boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time
Of StringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version String
- Firmware release channel or custom version used for AP auto-upgrade
- custom
Versions {[key: string]: string} - Per-AP-model firmware versions or channels used for auto-upgrade
- day
Of stringWeek - Weekly AP auto-upgrade day for the maintenance window
- enabled boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time
Of stringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version string
- Firmware release channel or custom version used for AP auto-upgrade
- custom_
versions Mapping[str, str] - Per-AP-model firmware versions or channels used for auto-upgrade
- day_
of_ strweek - Weekly AP auto-upgrade day for the maintenance window
- enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time_
of_ strday any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version str
- Firmware release channel or custom version used for AP auto-upgrade
- custom
Versions Map<String> - Per-AP-model firmware versions or channels used for auto-upgrade
- day
Of StringWeek - Weekly AP auto-upgrade day for the maintenance window
- enabled Boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time
Of StringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version String
- Firmware release channel or custom version used for AP auto-upgrade
SettingAutoUpgradeEsl, SettingAutoUpgradeEslArgs
- Allow
Downgrade bool - If true, it will allow downgrade to a lower version
- Custom
Versions Dictionary<string, string> - Custom versions for different models. Property key is the model name (e.g. "AP41")
- Day
Of stringWeek - Weekly ESL auto-upgrade day for the maintenance window
- Enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- Time
Of stringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- Version string
- ESL firmware version used for auto-upgrade
- Allow
Downgrade bool - If true, it will allow downgrade to a lower version
- Custom
Versions map[string]string - Custom versions for different models. Property key is the model name (e.g. "AP41")
- Day
Of stringWeek - Weekly ESL auto-upgrade day for the maintenance window
- Enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- Time
Of stringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- Version string
- ESL firmware version used for auto-upgrade
- allow_
downgrade bool - If true, it will allow downgrade to a lower version
- custom_
versions map(string) - Custom versions for different models. Property key is the model name (e.g. "AP41")
- day_
of_ stringweek - Weekly ESL auto-upgrade day for the maintenance window
- enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time_
of_ stringday any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version string
- ESL firmware version used for auto-upgrade
- allow
Downgrade Boolean - If true, it will allow downgrade to a lower version
- custom
Versions Map<String,String> - Custom versions for different models. Property key is the model name (e.g. "AP41")
- day
Of StringWeek - Weekly ESL auto-upgrade day for the maintenance window
- enabled Boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time
Of StringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version String
- ESL firmware version used for auto-upgrade
- allow
Downgrade boolean - If true, it will allow downgrade to a lower version
- custom
Versions {[key: string]: string} - Custom versions for different models. Property key is the model name (e.g. "AP41")
- day
Of stringWeek - Weekly ESL auto-upgrade day for the maintenance window
- enabled boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time
Of stringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version string
- ESL firmware version used for auto-upgrade
- allow_
downgrade bool - If true, it will allow downgrade to a lower version
- custom_
versions Mapping[str, str] - Custom versions for different models. Property key is the model name (e.g. "AP41")
- day_
of_ strweek - Weekly ESL auto-upgrade day for the maintenance window
- enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time_
of_ strday any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version str
- ESL firmware version used for auto-upgrade
- allow
Downgrade Boolean - If true, it will allow downgrade to a lower version
- custom
Versions Map<String> - Custom versions for different models. Property key is the model name (e.g. "AP41")
- day
Of StringWeek - Weekly ESL auto-upgrade day for the maintenance window
- enabled Boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- time
Of StringDay any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time- version String
- ESL firmware version used for auto-upgrade
SettingBleConfig, SettingBleConfigArgs
- Beacon
Enabled bool - Whether Mist beacons is enabled
- Beacon
Rate int - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - Beacon
Rate stringMode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- Beam
Disableds List<int> - AP BLE beam numbers disabled for location advertisements
- Custom
Ble boolPacket Enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - Custom
Ble stringPacket Frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- Custom
Ble intPacket Freq Msec - Frequency (msec) of data emitted by custom ble beacon
- Eddystone
Uid intAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- Eddystone
Uid stringBeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - Eddystone
Uid boolEnabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - Eddystone
Uid intFreq Msec - Frequency (msec) of data emit by Eddystone-UID beacon
- Eddystone
Uid stringInstance - Eddystone-UID instance for the device
- Eddystone
Uid stringNamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- Eddystone
Url intAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- Eddystone
Url stringBeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - Eddystone
Url boolEnabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - Eddystone
Url intFreq Msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- Eddystone
Url stringUrl - URL pointed by Eddystone-URL beacon
- Ibeacon
Adv intPower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- Ibeacon
Beams string - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - Ibeacon
Enabled bool - Can be enabled if
beaconEnabled==true, whether to send iBeacon - Ibeacon
Freq intMsec - Frequency (msec) of data emit for iBeacon
- Ibeacon
Major int - iBeacon major value broadcast by the AP
- Ibeacon
Minor int - iBeacon minor value broadcast by the AP
- Ibeacon
Uuid string - Optional, if not specified, the same UUID as the beacon will be used
- Power int
- Required if
powerMode==custom; else usepowerModeas default - Power
Mode string - Transmit power mode for BLE beacons; use custom to set
power
- Beacon
Enabled bool - Whether Mist beacons is enabled
- Beacon
Rate int - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - Beacon
Rate stringMode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- Beam
Disableds []int - AP BLE beam numbers disabled for location advertisements
- Custom
Ble boolPacket Enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - Custom
Ble stringPacket Frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- Custom
Ble intPacket Freq Msec - Frequency (msec) of data emitted by custom ble beacon
- Eddystone
Uid intAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- Eddystone
Uid stringBeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - Eddystone
Uid boolEnabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - Eddystone
Uid intFreq Msec - Frequency (msec) of data emit by Eddystone-UID beacon
- Eddystone
Uid stringInstance - Eddystone-UID instance for the device
- Eddystone
Uid stringNamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- Eddystone
Url intAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- Eddystone
Url stringBeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - Eddystone
Url boolEnabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - Eddystone
Url intFreq Msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- Eddystone
Url stringUrl - URL pointed by Eddystone-URL beacon
- Ibeacon
Adv intPower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- Ibeacon
Beams string - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - Ibeacon
Enabled bool - Can be enabled if
beaconEnabled==true, whether to send iBeacon - Ibeacon
Freq intMsec - Frequency (msec) of data emit for iBeacon
- Ibeacon
Major int - iBeacon major value broadcast by the AP
- Ibeacon
Minor int - iBeacon minor value broadcast by the AP
- Ibeacon
Uuid string - Optional, if not specified, the same UUID as the beacon will be used
- Power int
- Required if
powerMode==custom; else usepowerModeas default - Power
Mode string - Transmit power mode for BLE beacons; use custom to set
power
- beacon_
enabled bool - Whether Mist beacons is enabled
- beacon_
rate number - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - beacon_
rate_ stringmode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- beam_
disableds list(number) - AP BLE beam numbers disabled for location advertisements
- custom_
ble_ boolpacket_ enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - custom_
ble_ stringpacket_ frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- custom_
ble_ numberpacket_ freq_ msec - Frequency (msec) of data emitted by custom ble beacon
- eddystone_
uid_ numberadv_ power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone_
uid_ stringbeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - eddystone_
uid_ boolenabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - eddystone_
uid_ numberfreq_ msec - Frequency (msec) of data emit by Eddystone-UID beacon
- eddystone_
uid_ stringinstance - Eddystone-UID instance for the device
- eddystone_
uid_ stringnamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- eddystone_
url_ numberadv_ power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone_
url_ stringbeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - eddystone_
url_ boolenabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - eddystone_
url_ numberfreq_ msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- eddystone_
url_ stringurl - URL pointed by Eddystone-URL beacon
- ibeacon_
adv_ numberpower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeacon_
beams string - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - ibeacon_
enabled bool - Can be enabled if
beaconEnabled==true, whether to send iBeacon - ibeacon_
freq_ numbermsec - Frequency (msec) of data emit for iBeacon
- ibeacon_
major number - iBeacon major value broadcast by the AP
- ibeacon_
minor number - iBeacon minor value broadcast by the AP
- ibeacon_
uuid string - Optional, if not specified, the same UUID as the beacon will be used
- power number
- Required if
powerMode==custom; else usepowerModeas default - power_
mode string - Transmit power mode for BLE beacons; use custom to set
power
- beacon
Enabled Boolean - Whether Mist beacons is enabled
- beacon
Rate Integer - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - beacon
Rate StringMode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- beam
Disableds List<Integer> - AP BLE beam numbers disabled for location advertisements
- custom
Ble BooleanPacket Enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - custom
Ble StringPacket Frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- custom
Ble IntegerPacket Freq Msec - Frequency (msec) of data emitted by custom ble beacon
- eddystone
Uid IntegerAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone
Uid StringBeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - eddystone
Uid BooleanEnabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - eddystone
Uid IntegerFreq Msec - Frequency (msec) of data emit by Eddystone-UID beacon
- eddystone
Uid StringInstance - Eddystone-UID instance for the device
- eddystone
Uid StringNamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- eddystone
Url IntegerAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone
Url StringBeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - eddystone
Url BooleanEnabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - eddystone
Url IntegerFreq Msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- eddystone
Url StringUrl - URL pointed by Eddystone-URL beacon
- ibeacon
Adv IntegerPower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeacon
Beams String - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - ibeacon
Enabled Boolean - Can be enabled if
beaconEnabled==true, whether to send iBeacon - ibeacon
Freq IntegerMsec - Frequency (msec) of data emit for iBeacon
- ibeacon
Major Integer - iBeacon major value broadcast by the AP
- ibeacon
Minor Integer - iBeacon minor value broadcast by the AP
- ibeacon
Uuid String - Optional, if not specified, the same UUID as the beacon will be used
- power Integer
- Required if
powerMode==custom; else usepowerModeas default - power
Mode String - Transmit power mode for BLE beacons; use custom to set
power
- beacon
Enabled boolean - Whether Mist beacons is enabled
- beacon
Rate number - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - beacon
Rate stringMode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- beam
Disableds number[] - AP BLE beam numbers disabled for location advertisements
- custom
Ble booleanPacket Enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - custom
Ble stringPacket Frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- custom
Ble numberPacket Freq Msec - Frequency (msec) of data emitted by custom ble beacon
- eddystone
Uid numberAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone
Uid stringBeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - eddystone
Uid booleanEnabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - eddystone
Uid numberFreq Msec - Frequency (msec) of data emit by Eddystone-UID beacon
- eddystone
Uid stringInstance - Eddystone-UID instance for the device
- eddystone
Uid stringNamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- eddystone
Url numberAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone
Url stringBeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - eddystone
Url booleanEnabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - eddystone
Url numberFreq Msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- eddystone
Url stringUrl - URL pointed by Eddystone-URL beacon
- ibeacon
Adv numberPower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeacon
Beams string - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - ibeacon
Enabled boolean - Can be enabled if
beaconEnabled==true, whether to send iBeacon - ibeacon
Freq numberMsec - Frequency (msec) of data emit for iBeacon
- ibeacon
Major number - iBeacon major value broadcast by the AP
- ibeacon
Minor number - iBeacon minor value broadcast by the AP
- ibeacon
Uuid string - Optional, if not specified, the same UUID as the beacon will be used
- power number
- Required if
powerMode==custom; else usepowerModeas default - power
Mode string - Transmit power mode for BLE beacons; use custom to set
power
- beacon_
enabled bool - Whether Mist beacons is enabled
- beacon_
rate int - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - beacon_
rate_ strmode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- beam_
disableds Sequence[int] - AP BLE beam numbers disabled for location advertisements
- custom_
ble_ boolpacket_ enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - custom_
ble_ strpacket_ frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- custom_
ble_ intpacket_ freq_ msec - Frequency (msec) of data emitted by custom ble beacon
- eddystone_
uid_ intadv_ power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone_
uid_ strbeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - eddystone_
uid_ boolenabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - eddystone_
uid_ intfreq_ msec - Frequency (msec) of data emit by Eddystone-UID beacon
- eddystone_
uid_ strinstance - Eddystone-UID instance for the device
- eddystone_
uid_ strnamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- eddystone_
url_ intadv_ power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone_
url_ strbeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - eddystone_
url_ boolenabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - eddystone_
url_ intfreq_ msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- eddystone_
url_ strurl - URL pointed by Eddystone-URL beacon
- ibeacon_
adv_ intpower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeacon_
beams str - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - ibeacon_
enabled bool - Can be enabled if
beaconEnabled==true, whether to send iBeacon - ibeacon_
freq_ intmsec - Frequency (msec) of data emit for iBeacon
- ibeacon_
major int - iBeacon major value broadcast by the AP
- ibeacon_
minor int - iBeacon minor value broadcast by the AP
- ibeacon_
uuid str - Optional, if not specified, the same UUID as the beacon will be used
- power int
- Required if
powerMode==custom; else usepowerModeas default - power_
mode str - Transmit power mode for BLE beacons; use custom to set
power
- beacon
Enabled Boolean - Whether Mist beacons is enabled
- beacon
Rate Number - Required if
beaconRateMode==custom, 1-10, in number-beacons-per-second - beacon
Rate StringMode - Beacon rate mode for Mist BLE beacons; use custom to set beacon_rate
- beam
Disableds List<Number> - AP BLE beam numbers disabled for location advertisements
- custom
Ble BooleanPacket Enabled - Can be enabled if
beaconEnabled==true, whether to send custom packet - custom
Ble StringPacket Frame - The custom frame to be sent out in this beacon. The frame must be a hexstring
- custom
Ble NumberPacket Freq Msec - Frequency (msec) of data emitted by custom ble beacon
- eddystone
Uid NumberAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone
Uid StringBeams - BLE beams used to transmit Eddystone-UID advertisements, expressed as ranges such as
2-4,7 - eddystone
Uid BooleanEnabled - Only if
beaconEnabled==false, Whether Eddystone-UID beacon is enabled - eddystone
Uid NumberFreq Msec - Frequency (msec) of data emit by Eddystone-UID beacon
- eddystone
Uid StringInstance - Eddystone-UID instance for the device
- eddystone
Uid StringNamespace - Eddystone-UID namespace broadcast by the AP, as a 10-byte hex string
- eddystone
Url NumberAdv Power - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone
Url StringBeams - BLE beams used to transmit Eddystone-URL advertisements, expressed as ranges such as
2-4,7 - eddystone
Url BooleanEnabled - Only if
beaconEnabled==false, Whether Eddystone-URL beacon is enabled - eddystone
Url NumberFreq Msec - Frequency (msec) of data emitted by Eddystone-URL beacon
- eddystone
Url StringUrl - URL pointed by Eddystone-URL beacon
- ibeacon
Adv NumberPower - Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeacon
Beams String - BLE beams used to transmit iBeacon advertisements, expressed as ranges such as
2-4,7 - ibeacon
Enabled Boolean - Can be enabled if
beaconEnabled==true, whether to send iBeacon - ibeacon
Freq NumberMsec - Frequency (msec) of data emit for iBeacon
- ibeacon
Major Number - iBeacon major value broadcast by the AP
- ibeacon
Minor Number - iBeacon minor value broadcast by the AP
- ibeacon
Uuid String - Optional, if not specified, the same UUID as the beacon will be used
- power Number
- Required if
powerMode==custom; else usepowerModeas default - power
Mode String - Transmit power mode for BLE beacons; use custom to set
power
SettingConfigPushPolicy, SettingConfigPushPolicyArgs
- No
Push bool - Stop any new config from being pushed to the device
- Push
Window Pulumi.Juniper Mist. Site. Inputs. Setting Config Push Policy Push Window - Allowed time window during which configuration pushes may run
- No
Push bool - Stop any new config from being pushed to the device
- Push
Window SettingConfig Push Policy Push Window - Allowed time window during which configuration pushes may run
- no_
push bool - Stop any new config from being pushed to the device
- push_
window object - Allowed time window during which configuration pushes may run
- no
Push Boolean - Stop any new config from being pushed to the device
- push
Window SettingConfig Push Policy Push Window - Allowed time window during which configuration pushes may run
- no
Push boolean - Stop any new config from being pushed to the device
- push
Window SettingConfig Push Policy Push Window - Allowed time window during which configuration pushes may run
- no_
push bool - Stop any new config from being pushed to the device
- push_
window SettingConfig Push Policy Push Window - Allowed time window during which configuration pushes may run
- no
Push Boolean - Stop any new config from being pushed to the device
- push
Window Property Map - Allowed time window during which configuration pushes may run
SettingConfigPushPolicyPushWindow, SettingConfigPushPolicyPushWindowArgs
- Enabled bool
- Whether configuration pushes are limited to the configured push window
- Hours
Pulumi.
Juniper Mist. Site. Inputs. Setting Config Push Policy Push Window Hours - Day-of-week hour ranges when configuration pushes are allowed
- Enabled bool
- Whether configuration pushes are limited to the configured push window
- Hours
Setting
Config Push Policy Push Window Hours - Day-of-week hour ranges when configuration pushes are allowed
- enabled Boolean
- Whether configuration pushes are limited to the configured push window
- hours
Setting
Config Push Policy Push Window Hours - Day-of-week hour ranges when configuration pushes are allowed
- enabled boolean
- Whether configuration pushes are limited to the configured push window
- hours
Setting
Config Push Policy Push Window Hours - Day-of-week hour ranges when configuration pushes are allowed
- enabled bool
- Whether configuration pushes are limited to the configured push window
- hours
Setting
Config Push Policy Push Window Hours - Day-of-week hour ranges when configuration pushes are allowed
- enabled Boolean
- Whether configuration pushes are limited to the configured push window
- hours Property Map
- Day-of-week hour ranges when configuration pushes are allowed
SettingConfigPushPolicyPushWindowHours, SettingConfigPushPolicyPushWindowHoursArgs
SettingCriticalUrlMonitoring, SettingCriticalUrlMonitoringArgs
- Enabled bool
- Whether critical URL monitoring is enabled
- Monitors
List<Pulumi.
Juniper Mist. Site. Inputs. Setting Critical Url Monitoring Monitor> - Critical URLs monitored for site health latency
- Enabled bool
- Whether critical URL monitoring is enabled
- Monitors
[]Setting
Critical Url Monitoring Monitor - Critical URLs monitored for site health latency
- enabled bool
- Whether critical URL monitoring is enabled
- monitors list(object)
- Critical URLs monitored for site health latency
- enabled Boolean
- Whether critical URL monitoring is enabled
- monitors
List<Setting
Critical Url Monitoring Monitor> - Critical URLs monitored for site health latency
- enabled boolean
- Whether critical URL monitoring is enabled
- monitors
Setting
Critical Url Monitoring Monitor[] - Critical URLs monitored for site health latency
- enabled bool
- Whether critical URL monitoring is enabled
- monitors
Sequence[Setting
Critical Url Monitoring Monitor] - Critical URLs monitored for site health latency
- enabled Boolean
- Whether critical URL monitoring is enabled
- monitors List<Property Map>
- Critical URLs monitored for site health latency
SettingCriticalUrlMonitoringMonitor, SettingCriticalUrlMonitoringMonitorArgs
SettingEngagement, SettingEngagementArgs
- Dwell
Tag Pulumi.Names Juniper Mist. Site. Inputs. Setting Engagement Dwell Tag Names - Display labels for dwell-time visit categories
-
Pulumi.
Juniper Mist. Site. Inputs. Setting Engagement Dwell Tags - Visit duration ranges used to assign engagement categories
- Hours
Pulumi.
Juniper Mist. Site. Inputs. Setting Engagement Hours - Schedule during which engagement analytics rules apply
- Max
Dwell int - Maximum dwell time in seconds considered by engagement analytics
- Min
Dwell int - Minimum dwell time in seconds for engagement analytics
- Dwell
Tag SettingNames Engagement Dwell Tag Names - Display labels for dwell-time visit categories
-
Setting
Engagement Dwell Tags - Visit duration ranges used to assign engagement categories
- Hours
Setting
Engagement Hours - Schedule during which engagement analytics rules apply
- Max
Dwell int - Maximum dwell time in seconds considered by engagement analytics
- Min
Dwell int - Minimum dwell time in seconds for engagement analytics
- dwell_
tag_ objectnames - Display labels for dwell-time visit categories
- object
- Visit duration ranges used to assign engagement categories
- hours object
- Schedule during which engagement analytics rules apply
- max_
dwell number - Maximum dwell time in seconds considered by engagement analytics
- min_
dwell number - Minimum dwell time in seconds for engagement analytics
- dwell
Tag SettingNames Engagement Dwell Tag Names - Display labels for dwell-time visit categories
-
Setting
Engagement Dwell Tags - Visit duration ranges used to assign engagement categories
- hours
Setting
Engagement Hours - Schedule during which engagement analytics rules apply
- max
Dwell Integer - Maximum dwell time in seconds considered by engagement analytics
- min
Dwell Integer - Minimum dwell time in seconds for engagement analytics
- dwell
Tag SettingNames Engagement Dwell Tag Names - Display labels for dwell-time visit categories
-
Setting
Engagement Dwell Tags - Visit duration ranges used to assign engagement categories
- hours
Setting
Engagement Hours - Schedule during which engagement analytics rules apply
- max
Dwell number - Maximum dwell time in seconds considered by engagement analytics
- min
Dwell number - Minimum dwell time in seconds for engagement analytics
- dwell_
tag_ Settingnames Engagement Dwell Tag Names - Display labels for dwell-time visit categories
-
Setting
Engagement Dwell Tags - Visit duration ranges used to assign engagement categories
- hours
Setting
Engagement Hours - Schedule during which engagement analytics rules apply
- max_
dwell int - Maximum dwell time in seconds considered by engagement analytics
- min_
dwell int - Minimum dwell time in seconds for engagement analytics
- dwell
Tag Property MapNames - Display labels for dwell-time visit categories
- Property Map
- Visit duration ranges used to assign engagement categories
- hours Property Map
- Schedule during which engagement analytics rules apply
- max
Dwell Number - Maximum dwell time in seconds considered by engagement analytics
- min
Dwell Number - Minimum dwell time in seconds for engagement analytics
SettingEngagementDwellTagNames, SettingEngagementDwellTagNamesArgs
SettingEngagementDwellTags, SettingEngagementDwellTagsArgs
SettingEngagementHours, SettingEngagementHoursArgs
SettingGatewayMgmt, SettingGatewayMgmtArgs
- Admin
Sshkeys List<string> - SSR-only SSH public keys for administrative access
- App
Probing Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt App Probing - Application probing configuration for gateway monitoring
- App
Usage bool - Consumes uplink bandwidth, requires WA license
- Auto
Signature Pulumi.Update Juniper Mist. Site. Inputs. Setting Gateway Mgmt Auto Signature Update - Schedule for automatic security signature updates
- Config
Revert intTimer - Rollback timer for commit confirmed
- Disable
Console bool - For SSR and SRX, disable console port
- Disable
Oob bool - For SSR and SRX, disable management interface
- Disable
Usb bool - For SSR and SRX, disable usb interface
- Fips
Enabled bool - Whether FIPS mode is enabled on the gateway
- Probe
Hosts List<string> - IPv4 probe targets used for gateway connectivity checks
- Probe
Hostsv6s List<string> - IPv6 probe targets used for gateway connectivity checks
- Protect
Re Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt Protect Re - Control-plane protection settings for the gateway
- Root
Password string - SRX only. Root password for local gateway access
- Security
Log stringSource Address - IPv4 source address used for gateway security log traffic
- Security
Log stringSource Interface - Source interface used for gateway security log traffic
- Admin
Sshkeys []string - SSR-only SSH public keys for administrative access
- App
Probing SettingGateway Mgmt App Probing - Application probing configuration for gateway monitoring
- App
Usage bool - Consumes uplink bandwidth, requires WA license
- Auto
Signature SettingUpdate Gateway Mgmt Auto Signature Update - Schedule for automatic security signature updates
- Config
Revert intTimer - Rollback timer for commit confirmed
- Disable
Console bool - For SSR and SRX, disable console port
- Disable
Oob bool - For SSR and SRX, disable management interface
- Disable
Usb bool - For SSR and SRX, disable usb interface
- Fips
Enabled bool - Whether FIPS mode is enabled on the gateway
- Probe
Hosts []string - IPv4 probe targets used for gateway connectivity checks
- Probe
Hostsv6s []string - IPv6 probe targets used for gateway connectivity checks
- Protect
Re SettingGateway Mgmt Protect Re - Control-plane protection settings for the gateway
- Root
Password string - SRX only. Root password for local gateway access
- Security
Log stringSource Address - IPv4 source address used for gateway security log traffic
- Security
Log stringSource Interface - Source interface used for gateway security log traffic
- admin_
sshkeys list(string) - SSR-only SSH public keys for administrative access
- app_
probing object - Application probing configuration for gateway monitoring
- app_
usage bool - Consumes uplink bandwidth, requires WA license
- auto_
signature_ objectupdate - Schedule for automatic security signature updates
- config_
revert_ numbertimer - Rollback timer for commit confirmed
- disable_
console bool - For SSR and SRX, disable console port
- disable_
oob bool - For SSR and SRX, disable management interface
- disable_
usb bool - For SSR and SRX, disable usb interface
- fips_
enabled bool - Whether FIPS mode is enabled on the gateway
- probe_
hosts list(string) - IPv4 probe targets used for gateway connectivity checks
- probe_
hostsv6s list(string) - IPv6 probe targets used for gateway connectivity checks
- protect_
re object - Control-plane protection settings for the gateway
- root_
password string - SRX only. Root password for local gateway access
- security_
log_ stringsource_ address - IPv4 source address used for gateway security log traffic
- security_
log_ stringsource_ interface - Source interface used for gateway security log traffic
- admin
Sshkeys List<String> - SSR-only SSH public keys for administrative access
- app
Probing SettingGateway Mgmt App Probing - Application probing configuration for gateway monitoring
- app
Usage Boolean - Consumes uplink bandwidth, requires WA license
- auto
Signature SettingUpdate Gateway Mgmt Auto Signature Update - Schedule for automatic security signature updates
- config
Revert IntegerTimer - Rollback timer for commit confirmed
- disable
Console Boolean - For SSR and SRX, disable console port
- disable
Oob Boolean - For SSR and SRX, disable management interface
- disable
Usb Boolean - For SSR and SRX, disable usb interface
- fips
Enabled Boolean - Whether FIPS mode is enabled on the gateway
- probe
Hosts List<String> - IPv4 probe targets used for gateway connectivity checks
- probe
Hostsv6s List<String> - IPv6 probe targets used for gateway connectivity checks
- protect
Re SettingGateway Mgmt Protect Re - Control-plane protection settings for the gateway
- root
Password String - SRX only. Root password for local gateway access
- security
Log StringSource Address - IPv4 source address used for gateway security log traffic
- security
Log StringSource Interface - Source interface used for gateway security log traffic
- admin
Sshkeys string[] - SSR-only SSH public keys for administrative access
- app
Probing SettingGateway Mgmt App Probing - Application probing configuration for gateway monitoring
- app
Usage boolean - Consumes uplink bandwidth, requires WA license
- auto
Signature SettingUpdate Gateway Mgmt Auto Signature Update - Schedule for automatic security signature updates
- config
Revert numberTimer - Rollback timer for commit confirmed
- disable
Console boolean - For SSR and SRX, disable console port
- disable
Oob boolean - For SSR and SRX, disable management interface
- disable
Usb boolean - For SSR and SRX, disable usb interface
- fips
Enabled boolean - Whether FIPS mode is enabled on the gateway
- probe
Hosts string[] - IPv4 probe targets used for gateway connectivity checks
- probe
Hostsv6s string[] - IPv6 probe targets used for gateway connectivity checks
- protect
Re SettingGateway Mgmt Protect Re - Control-plane protection settings for the gateway
- root
Password string - SRX only. Root password for local gateway access
- security
Log stringSource Address - IPv4 source address used for gateway security log traffic
- security
Log stringSource Interface - Source interface used for gateway security log traffic
- admin_
sshkeys Sequence[str] - SSR-only SSH public keys for administrative access
- app_
probing SettingGateway Mgmt App Probing - Application probing configuration for gateway monitoring
- app_
usage bool - Consumes uplink bandwidth, requires WA license
- auto_
signature_ Settingupdate Gateway Mgmt Auto Signature Update - Schedule for automatic security signature updates
- config_
revert_ inttimer - Rollback timer for commit confirmed
- disable_
console bool - For SSR and SRX, disable console port
- disable_
oob bool - For SSR and SRX, disable management interface
- disable_
usb bool - For SSR and SRX, disable usb interface
- fips_
enabled bool - Whether FIPS mode is enabled on the gateway
- probe_
hosts Sequence[str] - IPv4 probe targets used for gateway connectivity checks
- probe_
hostsv6s Sequence[str] - IPv6 probe targets used for gateway connectivity checks
- protect_
re SettingGateway Mgmt Protect Re - Control-plane protection settings for the gateway
- root_
password str - SRX only. Root password for local gateway access
- security_
log_ strsource_ address - IPv4 source address used for gateway security log traffic
- security_
log_ strsource_ interface - Source interface used for gateway security log traffic
- admin
Sshkeys List<String> - SSR-only SSH public keys for administrative access
- app
Probing Property Map - Application probing configuration for gateway monitoring
- app
Usage Boolean - Consumes uplink bandwidth, requires WA license
- auto
Signature Property MapUpdate - Schedule for automatic security signature updates
- config
Revert NumberTimer - Rollback timer for commit confirmed
- disable
Console Boolean - For SSR and SRX, disable console port
- disable
Oob Boolean - For SSR and SRX, disable management interface
- disable
Usb Boolean - For SSR and SRX, disable usb interface
- fips
Enabled Boolean - Whether FIPS mode is enabled on the gateway
- probe
Hosts List<String> - IPv4 probe targets used for gateway connectivity checks
- probe
Hostsv6s List<String> - IPv6 probe targets used for gateway connectivity checks
- protect
Re Property Map - Control-plane protection settings for the gateway
- root
Password String - SRX only. Root password for local gateway access
- security
Log StringSource Address - IPv4 source address used for gateway security log traffic
- security
Log StringSource Interface - Source interface used for gateway security log traffic
SettingGatewayMgmtAppProbing, SettingGatewayMgmtAppProbingArgs
- Apps List<string>
- Predefined application keys to probe
- Custom
Apps List<Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt App Probing Custom App> - User-defined application probe definitions
- Enabled bool
- Whether gateway application probing is enabled
- Apps []string
- Predefined application keys to probe
- Custom
Apps []SettingGateway Mgmt App Probing Custom App - User-defined application probe definitions
- Enabled bool
- Whether gateway application probing is enabled
- apps list(string)
- Predefined application keys to probe
- custom_
apps list(object) - User-defined application probe definitions
- enabled bool
- Whether gateway application probing is enabled
- apps List<String>
- Predefined application keys to probe
- custom
Apps List<SettingGateway Mgmt App Probing Custom App> - User-defined application probe definitions
- enabled Boolean
- Whether gateway application probing is enabled
- apps string[]
- Predefined application keys to probe
- custom
Apps SettingGateway Mgmt App Probing Custom App[] - User-defined application probe definitions
- enabled boolean
- Whether gateway application probing is enabled
- apps Sequence[str]
- Predefined application keys to probe
- custom_
apps Sequence[SettingGateway Mgmt App Probing Custom App] - User-defined application probe definitions
- enabled bool
- Whether gateway application probing is enabled
- apps List<String>
- Predefined application keys to probe
- custom
Apps List<Property Map> - User-defined application probe definitions
- enabled Boolean
- Whether gateway application probing is enabled
SettingGatewayMgmtAppProbingCustomApp, SettingGatewayMgmtAppProbingCustomAppArgs
- Hostnames List<string>
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - Name string
- Display name for this custom application probe
- Protocol string
- Probe protocol used by this custom application definition
- Address string
- App
Type string - Category label used for this custom application probe
- Key string
- Stable key used to identify this custom application probe
- Network string
- Gateway network used as the source context for this probe
- Packet
Size int - If
protocol==icmp. ICMP packet size used by this custom app probe - Url string
- Vrf string
- Gateway VRF used as the source context for this probe
- Hostnames []string
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - Name string
- Display name for this custom application probe
- Protocol string
- Probe protocol used by this custom application definition
- Address string
- App
Type string - Category label used for this custom application probe
- Key string
- Stable key used to identify this custom application probe
- Network string
- Gateway network used as the source context for this probe
- Packet
Size int - If
protocol==icmp. ICMP packet size used by this custom app probe - Url string
- Vrf string
- Gateway VRF used as the source context for this probe
- hostnames list(string)
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - name string
- Display name for this custom application probe
- protocol string
- Probe protocol used by this custom application definition
- address string
- app_
type string - Category label used for this custom application probe
- key string
- Stable key used to identify this custom application probe
- network string
- Gateway network used as the source context for this probe
- packet_
size number - If
protocol==icmp. ICMP packet size used by this custom app probe - url string
- vrf string
- Gateway VRF used as the source context for this probe
- hostnames List<String>
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - name String
- Display name for this custom application probe
- protocol String
- Probe protocol used by this custom application definition
- address String
- app
Type String - Category label used for this custom application probe
- key String
- Stable key used to identify this custom application probe
- network String
- Gateway network used as the source context for this probe
- packet
Size Integer - If
protocol==icmp. ICMP packet size used by this custom app probe - url String
- vrf String
- Gateway VRF used as the source context for this probe
- hostnames string[]
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - name string
- Display name for this custom application probe
- protocol string
- Probe protocol used by this custom application definition
- address string
- app
Type string - Category label used for this custom application probe
- key string
- Stable key used to identify this custom application probe
- network string
- Gateway network used as the source context for this probe
- packet
Size number - If
protocol==icmp. ICMP packet size used by this custom app probe - url string
- vrf string
- Gateway VRF used as the source context for this probe
- hostnames Sequence[str]
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - name str
- Display name for this custom application probe
- protocol str
- Probe protocol used by this custom application definition
- address str
- app_
type str - Category label used for this custom application probe
- key str
- Stable key used to identify this custom application probe
- network str
- Gateway network used as the source context for this probe
- packet_
size int - If
protocol==icmp. ICMP packet size used by this custom app probe - url str
- vrf str
- Gateway VRF used as the source context for this probe
- hostnames List<String>
- Only 1 entry is allowed:
* if
protocol==http: URL (e.g.http://test.comorhttps://test.com) * ifprotocol==icmp: IP Address (e.g.1.2.3.4) - name String
- Display name for this custom application probe
- protocol String
- Probe protocol used by this custom application definition
- address String
- app
Type String - Category label used for this custom application probe
- key String
- Stable key used to identify this custom application probe
- network String
- Gateway network used as the source context for this probe
- packet
Size Number - If
protocol==icmp. ICMP packet size used by this custom app probe - url String
- vrf String
- Gateway VRF used as the source context for this probe
SettingGatewayMgmtAutoSignatureUpdate, SettingGatewayMgmtAutoSignatureUpdateArgs
- day_
of_ stringweek - Scheduled weekday for automatic signature updates
- enable bool
- Whether automatic security signature updates are enabled
- time_
of_ stringday - Optional, Mist will decide the timing
- day_
of_ strweek - Scheduled weekday for automatic signature updates
- enable bool
- Whether automatic security signature updates are enabled
- time_
of_ strday - Optional, Mist will decide the timing
SettingGatewayMgmtProtectRe, SettingGatewayMgmtProtectReArgs
- Allowed
Services List<string> - optionally, services we'll allow. enum:
icmp,ssh - Customs
List<Pulumi.
Juniper Mist. Site. Inputs. Setting Gateway Mgmt Protect Re Custom> - Additional ACL entries allowed by the Protect RE policy
- Enabled bool
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- Hit
Count bool - Whether to enable hit count for Protect_RE policy
- Trusted
Hosts List<string> - Trusted host or subnet entries allowed by the Protect RE policy
- Allowed
Services []string - optionally, services we'll allow. enum:
icmp,ssh - Customs
[]Setting
Gateway Mgmt Protect Re Custom - Additional ACL entries allowed by the Protect RE policy
- Enabled bool
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- Hit
Count bool - Whether to enable hit count for Protect_RE policy
- Trusted
Hosts []string - Trusted host or subnet entries allowed by the Protect RE policy
- allowed_
services list(string) - optionally, services we'll allow. enum:
icmp,ssh - customs list(object)
- Additional ACL entries allowed by the Protect RE policy
- enabled bool
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- hit_
count bool - Whether to enable hit count for Protect_RE policy
- trusted_
hosts list(string) - Trusted host or subnet entries allowed by the Protect RE policy
- allowed
Services List<String> - optionally, services we'll allow. enum:
icmp,ssh - customs
List<Setting
Gateway Mgmt Protect Re Custom> - Additional ACL entries allowed by the Protect RE policy
- enabled Boolean
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- hit
Count Boolean - Whether to enable hit count for Protect_RE policy
- trusted
Hosts List<String> - Trusted host or subnet entries allowed by the Protect RE policy
- allowed
Services string[] - optionally, services we'll allow. enum:
icmp,ssh - customs
Setting
Gateway Mgmt Protect Re Custom[] - Additional ACL entries allowed by the Protect RE policy
- enabled boolean
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- hit
Count boolean - Whether to enable hit count for Protect_RE policy
- trusted
Hosts string[] - Trusted host or subnet entries allowed by the Protect RE policy
- allowed_
services Sequence[str] - optionally, services we'll allow. enum:
icmp,ssh - customs
Sequence[Setting
Gateway Mgmt Protect Re Custom] - Additional ACL entries allowed by the Protect RE policy
- enabled bool
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- hit_
count bool - Whether to enable hit count for Protect_RE policy
- trusted_
hosts Sequence[str] - Trusted host or subnet entries allowed by the Protect RE policy
- allowed
Services List<String> - optionally, services we'll allow. enum:
icmp,ssh - customs List<Property Map>
- Additional ACL entries allowed by the Protect RE policy
- enabled Boolean
- When enabled, all traffic that is not essential to our operation will be dropped e.g. ntp / dns / traffic to mist will be allowed by default if dhcpd is enabled, we'll make sure it works
- hit
Count Boolean - Whether to enable hit count for Protect_RE policy
- trusted
Hosts List<String> - Trusted host or subnet entries allowed by the Protect RE policy
SettingGatewayMgmtProtectReCustom, SettingGatewayMgmtProtectReCustomArgs
- Subnets List<string>
- Source subnets matched by this custom Protect RE ACL
- Port
Range string - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - Protocol string
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
- Subnets []string
- Source subnets matched by this custom Protect RE ACL
- Port
Range string - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - Protocol string
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
- subnets list(string)
- Source subnets matched by this custom Protect RE ACL
- port_
range string - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - protocol string
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
- subnets List<String>
- Source subnets matched by this custom Protect RE ACL
- port
Range String - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - protocol String
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
- subnets string[]
- Source subnets matched by this custom Protect RE ACL
- port
Range string - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - protocol string
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
- subnets Sequence[str]
- Source subnets matched by this custom Protect RE ACL
- port_
range str - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - protocol str
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
- subnets List<String>
- Source subnets matched by this custom Protect RE ACL
- port
Range String - matched dst port, "0" means any. Note: For
protocol==anyandportRange==any, configuretrustedHostsinstead - protocol String
- enum:
any,icmp,tcp,udp. Note: Forprotocol==anyandportRange==any, configuretrustedHostsinstead
SettingIotproxy, SettingIotproxyArgs
- Enabled bool
- Whether the site IoT proxy is enabled
- Visionline
Pulumi.
Juniper Mist. Site. Inputs. Setting Iotproxy Visionline - Site access-control integration settings for Visionline
- Enabled bool
- Whether the site IoT proxy is enabled
- Visionline
Setting
Iotproxy Visionline - Site access-control integration settings for Visionline
- enabled bool
- Whether the site IoT proxy is enabled
- visionline object
- Site access-control integration settings for Visionline
- enabled Boolean
- Whether the site IoT proxy is enabled
- visionline
Setting
Iotproxy Visionline - Site access-control integration settings for Visionline
- enabled boolean
- Whether the site IoT proxy is enabled
- visionline
Setting
Iotproxy Visionline - Site access-control integration settings for Visionline
- enabled bool
- Whether the site IoT proxy is enabled
- visionline
Setting
Iotproxy Visionline - Site access-control integration settings for Visionline
- enabled Boolean
- Whether the site IoT proxy is enabled
- visionline Property Map
- Site access-control integration settings for Visionline
SettingIotproxyVisionline, SettingIotproxyVisionlineArgs
- Access
Id string - Access ID for the Visionline service
- Cacerts List<string>
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- Enabled bool
- Whether the Visionline integration is enabled
- Host string
- Collector hostname or IP address for Visionline
- Password string
- Visionline service password used by the IoT proxy
- Port int
- TCP port of the Visionline collector
- Username string
- Visionline service username used by the IoT proxy
- Access
Id string - Access ID for the Visionline service
- Cacerts []string
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- Enabled bool
- Whether the Visionline integration is enabled
- Host string
- Collector hostname or IP address for Visionline
- Password string
- Visionline service password used by the IoT proxy
- Port int
- TCP port of the Visionline collector
- Username string
- Visionline service username used by the IoT proxy
- access_
id string - Access ID for the Visionline service
- cacerts list(string)
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- enabled bool
- Whether the Visionline integration is enabled
- host string
- Collector hostname or IP address for Visionline
- password string
- Visionline service password used by the IoT proxy
- port number
- TCP port of the Visionline collector
- username string
- Visionline service username used by the IoT proxy
- access
Id String - Access ID for the Visionline service
- cacerts List<String>
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- enabled Boolean
- Whether the Visionline integration is enabled
- host String
- Collector hostname or IP address for Visionline
- password String
- Visionline service password used by the IoT proxy
- port Integer
- TCP port of the Visionline collector
- username String
- Visionline service username used by the IoT proxy
- access
Id string - Access ID for the Visionline service
- cacerts string[]
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- enabled boolean
- Whether the Visionline integration is enabled
- host string
- Collector hostname or IP address for Visionline
- password string
- Visionline service password used by the IoT proxy
- port number
- TCP port of the Visionline collector
- username string
- Visionline service username used by the IoT proxy
- access_
id str - Access ID for the Visionline service
- cacerts Sequence[str]
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- enabled bool
- Whether the Visionline integration is enabled
- host str
- Collector hostname or IP address for Visionline
- password str
- Visionline service password used by the IoT proxy
- port int
- TCP port of the Visionline collector
- username str
- Visionline service username used by the IoT proxy
- access
Id String - Access ID for the Visionline service
- cacerts List<String>
- PEM-encoded CA certificates used to verify the Visionline collector's TLS certificate. Required when the collector uses a self-signed certificate
- enabled Boolean
- Whether the Visionline integration is enabled
- host String
- Collector hostname or IP address for Visionline
- password String
- Visionline service password used by the IoT proxy
- port Number
- TCP port of the Visionline collector
- username String
- Visionline service username used by the IoT proxy
SettingJuniperSrx, SettingJuniperSrxArgs
- Auto
Upgrade Pulumi.Juniper Mist. Site. Inputs. Setting Juniper Srx Auto Upgrade - SRX auto-upgrade settings applied when SRX devices are onboarded
- Gateways
List<Pulumi.
Juniper Mist. Site. Inputs. Setting Juniper Srx Gateway> - SRX gateways integrated with this site
- Send
Mist boolNac User Info - Whether Mist NAC user information is sent to Juniper SRX gateways
- Auto
Upgrade SettingJuniper Srx Auto Upgrade - SRX auto-upgrade settings applied when SRX devices are onboarded
- Gateways
[]Setting
Juniper Srx Gateway - SRX gateways integrated with this site
- Send
Mist boolNac User Info - Whether Mist NAC user information is sent to Juniper SRX gateways
- auto_
upgrade object - SRX auto-upgrade settings applied when SRX devices are onboarded
- gateways list(object)
- SRX gateways integrated with this site
- send_
mist_ boolnac_ user_ info - Whether Mist NAC user information is sent to Juniper SRX gateways
- auto
Upgrade SettingJuniper Srx Auto Upgrade - SRX auto-upgrade settings applied when SRX devices are onboarded
- gateways
List<Setting
Juniper Srx Gateway> - SRX gateways integrated with this site
- send
Mist BooleanNac User Info - Whether Mist NAC user information is sent to Juniper SRX gateways
- auto
Upgrade SettingJuniper Srx Auto Upgrade - SRX auto-upgrade settings applied when SRX devices are onboarded
- gateways
Setting
Juniper Srx Gateway[] - SRX gateways integrated with this site
- send
Mist booleanNac User Info - Whether Mist NAC user information is sent to Juniper SRX gateways
- auto_
upgrade SettingJuniper Srx Auto Upgrade - SRX auto-upgrade settings applied when SRX devices are onboarded
- gateways
Sequence[Setting
Juniper Srx Gateway] - SRX gateways integrated with this site
- send_
mist_ boolnac_ user_ info - Whether Mist NAC user information is sent to Juniper SRX gateways
- auto
Upgrade Property Map - SRX auto-upgrade settings applied when SRX devices are onboarded
- gateways List<Property Map>
- SRX gateways integrated with this site
- send
Mist BooleanNac User Info - Whether Mist NAC user information is sent to Juniper SRX gateways
SettingJuniperSrxAutoUpgrade, SettingJuniperSrxAutoUpgradeArgs
- Custom
Versions Dictionary<string, string> - Per-SRX-model firmware versions to deploy instead of the default version
- Enabled bool
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- Snapshot bool
- Whether to take a snapshot during the SRX upgrade process
- Version string
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
- Custom
Versions map[string]string - Per-SRX-model firmware versions to deploy instead of the default version
- Enabled bool
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- Snapshot bool
- Whether to take a snapshot during the SRX upgrade process
- Version string
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
- custom_
versions map(string) - Per-SRX-model firmware versions to deploy instead of the default version
- enabled bool
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- snapshot bool
- Whether to take a snapshot during the SRX upgrade process
- version string
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
- custom
Versions Map<String,String> - Per-SRX-model firmware versions to deploy instead of the default version
- enabled Boolean
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- snapshot Boolean
- Whether to take a snapshot during the SRX upgrade process
- version String
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
- custom
Versions {[key: string]: string} - Per-SRX-model firmware versions to deploy instead of the default version
- enabled boolean
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- snapshot boolean
- Whether to take a snapshot during the SRX upgrade process
- version string
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
- custom_
versions Mapping[str, str] - Per-SRX-model firmware versions to deploy instead of the default version
- enabled bool
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- snapshot bool
- Whether to take a snapshot during the SRX upgrade process
- version str
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
- custom
Versions Map<String> - Per-SRX-model firmware versions to deploy instead of the default version
- enabled Boolean
- Whether SRX auto-upgrade is enabled for newly onboarded devices
- snapshot Boolean
- Whether to take a snapshot during the SRX upgrade process
- version String
- Firmware version to deploy (e.g. 23.4R2-S5.5). Optional, used when customVersions not specified
SettingJuniperSrxGateway, SettingJuniperSrxGatewayArgs
- Api
Key string - Authentication key used to access the Juniper SRX gateway API
- Api
Password string - Authentication password used to access the Juniper SRX gateway API
- Api
Url string - Base URL for the Juniper SRX gateway API
- Api
Key string - Authentication key used to access the Juniper SRX gateway API
- Api
Password string - Authentication password used to access the Juniper SRX gateway API
- Api
Url string - Base URL for the Juniper SRX gateway API
- api_
key string - Authentication key used to access the Juniper SRX gateway API
- api_
password string - Authentication password used to access the Juniper SRX gateway API
- api_
url string - Base URL for the Juniper SRX gateway API
- api
Key String - Authentication key used to access the Juniper SRX gateway API
- api
Password String - Authentication password used to access the Juniper SRX gateway API
- api
Url String - Base URL for the Juniper SRX gateway API
- api
Key string - Authentication key used to access the Juniper SRX gateway API
- api
Password string - Authentication password used to access the Juniper SRX gateway API
- api
Url string - Base URL for the Juniper SRX gateway API
- api_
key str - Authentication key used to access the Juniper SRX gateway API
- api_
password str - Authentication password used to access the Juniper SRX gateway API
- api_
url str - Base URL for the Juniper SRX gateway API
- api
Key String - Authentication key used to access the Juniper SRX gateway API
- api
Password String - Authentication password used to access the Juniper SRX gateway API
- api
Url String - Base URL for the Juniper SRX gateway API
SettingLed, SettingLedArgs
- Brightness int
- Indicator LED brightness level from 0 to 255
- Enabled bool
- Whether the AP indicator LED is enabled
- Brightness int
- Indicator LED brightness level from 0 to 255
- Enabled bool
- Whether the AP indicator LED is enabled
- brightness number
- Indicator LED brightness level from 0 to 255
- enabled bool
- Whether the AP indicator LED is enabled
- brightness Integer
- Indicator LED brightness level from 0 to 255
- enabled Boolean
- Whether the AP indicator LED is enabled
- brightness number
- Indicator LED brightness level from 0 to 255
- enabled boolean
- Whether the AP indicator LED is enabled
- brightness int
- Indicator LED brightness level from 0 to 255
- enabled bool
- Whether the AP indicator LED is enabled
- brightness Number
- Indicator LED brightness level from 0 to 255
- enabled Boolean
- Whether the AP indicator LED is enabled
SettingMarvis, SettingMarvisArgs
- Auto
Operations Pulumi.Juniper Mist. Site. Inputs. Setting Marvis Auto Operations - Automatic remediation operations controlled by Marvis
- Auto
Operations SettingMarvis Auto Operations - Automatic remediation operations controlled by Marvis
- auto_
operations object - Automatic remediation operations controlled by Marvis
- auto
Operations SettingMarvis Auto Operations - Automatic remediation operations controlled by Marvis
- auto
Operations SettingMarvis Auto Operations - Automatic remediation operations controlled by Marvis
- auto_
operations SettingMarvis Auto Operations - Automatic remediation operations controlled by Marvis
- auto
Operations Property Map - Automatic remediation operations controlled by Marvis
SettingMarvisAutoOperations, SettingMarvisAutoOperationsArgs
- Ap
Insufficient boolCapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- Ap
Loop bool - Whether Marvis may remediate AP loop issues automatically
- Ap
Non boolCompliant - Whether Marvis may remediate AP non-compliance automatically
- Bounce
Port boolFor Abnormal Poe Client - Whether Marvis may bounce switch ports for abnormal PoE clients
- Disable
Port boolWhen Ddos Protocol Violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- Disable
Port boolWhen Rogue Dhcp Server Detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- Gateway
Non boolCompliant - Whether Marvis may remediate non-compliant gateways automatically
- Switch
Misconfigured boolPort - Whether Marvis may remediate misconfigured switch ports automatically
- Switch
Port boolStuck - Whether Marvis may remediate stuck switch ports automatically
- Ap
Insufficient boolCapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- Ap
Loop bool - Whether Marvis may remediate AP loop issues automatically
- Ap
Non boolCompliant - Whether Marvis may remediate AP non-compliance automatically
- Bounce
Port boolFor Abnormal Poe Client - Whether Marvis may bounce switch ports for abnormal PoE clients
- Disable
Port boolWhen Ddos Protocol Violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- Disable
Port boolWhen Rogue Dhcp Server Detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- Gateway
Non boolCompliant - Whether Marvis may remediate non-compliant gateways automatically
- Switch
Misconfigured boolPort - Whether Marvis may remediate misconfigured switch ports automatically
- Switch
Port boolStuck - Whether Marvis may remediate stuck switch ports automatically
- ap_
insufficient_ boolcapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- ap_
loop bool - Whether Marvis may remediate AP loop issues automatically
- ap_
non_ boolcompliant - Whether Marvis may remediate AP non-compliance automatically
- bounce_
port_ boolfor_ abnormal_ poe_ client - Whether Marvis may bounce switch ports for abnormal PoE clients
- disable_
port_ boolwhen_ ddos_ protocol_ violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- disable_
port_ boolwhen_ rogue_ dhcp_ server_ detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- gateway_
non_ boolcompliant - Whether Marvis may remediate non-compliant gateways automatically
- switch_
misconfigured_ boolport - Whether Marvis may remediate misconfigured switch ports automatically
- switch_
port_ boolstuck - Whether Marvis may remediate stuck switch ports automatically
- ap
Insufficient BooleanCapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- ap
Loop Boolean - Whether Marvis may remediate AP loop issues automatically
- ap
Non BooleanCompliant - Whether Marvis may remediate AP non-compliance automatically
- bounce
Port BooleanFor Abnormal Poe Client - Whether Marvis may bounce switch ports for abnormal PoE clients
- disable
Port BooleanWhen Ddos Protocol Violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- disable
Port BooleanWhen Rogue Dhcp Server Detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- gateway
Non BooleanCompliant - Whether Marvis may remediate non-compliant gateways automatically
- switch
Misconfigured BooleanPort - Whether Marvis may remediate misconfigured switch ports automatically
- switch
Port BooleanStuck - Whether Marvis may remediate stuck switch ports automatically
- ap
Insufficient booleanCapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- ap
Loop boolean - Whether Marvis may remediate AP loop issues automatically
- ap
Non booleanCompliant - Whether Marvis may remediate AP non-compliance automatically
- bounce
Port booleanFor Abnormal Poe Client - Whether Marvis may bounce switch ports for abnormal PoE clients
- disable
Port booleanWhen Ddos Protocol Violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- disable
Port booleanWhen Rogue Dhcp Server Detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- gateway
Non booleanCompliant - Whether Marvis may remediate non-compliant gateways automatically
- switch
Misconfigured booleanPort - Whether Marvis may remediate misconfigured switch ports automatically
- switch
Port booleanStuck - Whether Marvis may remediate stuck switch ports automatically
- ap_
insufficient_ boolcapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- ap_
loop bool - Whether Marvis may remediate AP loop issues automatically
- ap_
non_ boolcompliant - Whether Marvis may remediate AP non-compliance automatically
- bounce_
port_ boolfor_ abnormal_ poe_ client - Whether Marvis may bounce switch ports for abnormal PoE clients
- disable_
port_ boolwhen_ ddos_ protocol_ violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- disable_
port_ boolwhen_ rogue_ dhcp_ server_ detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- gateway_
non_ boolcompliant - Whether Marvis may remediate non-compliant gateways automatically
- switch_
misconfigured_ boolport - Whether Marvis may remediate misconfigured switch ports automatically
- switch_
port_ boolstuck - Whether Marvis may remediate stuck switch ports automatically
- ap
Insufficient BooleanCapacity - Whether Marvis may remediate AP insufficient-capacity issues automatically
- ap
Loop Boolean - Whether Marvis may remediate AP loop issues automatically
- ap
Non BooleanCompliant - Whether Marvis may remediate AP non-compliance automatically
- bounce
Port BooleanFor Abnormal Poe Client - Whether Marvis may bounce switch ports for abnormal PoE clients
- disable
Port BooleanWhen Ddos Protocol Violation - Whether Marvis may disable a port when DDOS protocol violations are detected
- disable
Port BooleanWhen Rogue Dhcp Server Detected - Whether Marvis may disable a port when a rogue DHCP server is detected
- gateway
Non BooleanCompliant - Whether Marvis may remediate non-compliant gateways automatically
- switch
Misconfigured BooleanPort - Whether Marvis may remediate misconfigured switch ports automatically
- switch
Port BooleanStuck - Whether Marvis may remediate stuck switch ports automatically
SettingMxedgeMgmt, SettingMxedgeMgmtArgs
- Config
Auto boolRevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- Fips
Enabled bool - Whether FIPS mode is enabled on the Mist Edge
- Mist
Password string - Password for the Mist service account on the Mist Edge
- Oob
Ip stringType - IPv4 address assignment mode for out-of-band management
- Oob
Ip stringType6 - IPv6 address assignment mode for out-of-band management
- Root
Password string - Root account password for the Mist Edge
- Config
Auto boolRevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- Fips
Enabled bool - Whether FIPS mode is enabled on the Mist Edge
- Mist
Password string - Password for the Mist service account on the Mist Edge
- Oob
Ip stringType - IPv4 address assignment mode for out-of-band management
- Oob
Ip stringType6 - IPv6 address assignment mode for out-of-band management
- Root
Password string - Root account password for the Mist Edge
- config_
auto_ boolrevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- fips_
enabled bool - Whether FIPS mode is enabled on the Mist Edge
- mist_
password string - Password for the Mist service account on the Mist Edge
- oob_
ip_ stringtype - IPv4 address assignment mode for out-of-band management
- oob_
ip_ stringtype6 - IPv6 address assignment mode for out-of-band management
- root_
password string - Root account password for the Mist Edge
- config
Auto BooleanRevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- fips
Enabled Boolean - Whether FIPS mode is enabled on the Mist Edge
- mist
Password String - Password for the Mist service account on the Mist Edge
- oob
Ip StringType - IPv4 address assignment mode for out-of-band management
- oob
Ip StringType6 - IPv6 address assignment mode for out-of-band management
- root
Password String - Root account password for the Mist Edge
- config
Auto booleanRevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- fips
Enabled boolean - Whether FIPS mode is enabled on the Mist Edge
- mist
Password string - Password for the Mist service account on the Mist Edge
- oob
Ip stringType - IPv4 address assignment mode for out-of-band management
- oob
Ip stringType6 - IPv6 address assignment mode for out-of-band management
- root
Password string - Root account password for the Mist Edge
- config_
auto_ boolrevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- fips_
enabled bool - Whether FIPS mode is enabled on the Mist Edge
- mist_
password str - Password for the Mist service account on the Mist Edge
- oob_
ip_ strtype - IPv4 address assignment mode for out-of-band management
- oob_
ip_ strtype6 - IPv6 address assignment mode for out-of-band management
- root_
password str - Root account password for the Mist Edge
- config
Auto BooleanRevert - Whether the Mist Edge automatically reverts configuration changes if connectivity is lost
- fips
Enabled Boolean - Whether FIPS mode is enabled on the Mist Edge
- mist
Password String - Password for the Mist service account on the Mist Edge
- oob
Ip StringType - IPv4 address assignment mode for out-of-band management
- oob
Ip StringType6 - IPv6 address assignment mode for out-of-band management
- root
Password String - Root account password for the Mist Edge
SettingMxtunnels, SettingMxtunnelsArgs
- Additional
Mxtunnels Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Mxtunnels Additional Mxtunnels> - Additional named Mist Tunnel definitions configured for the site
- Ap
Subnets List<string> - AP source subnets allowed to establish Mist Tunnels
- Auto
Preemption Pulumi.Juniper Mist. Site. Inputs. Setting Mxtunnels Auto Preemption - Preemption behavior for restoring preferred tunnel peers after failover
- Clusters
List<Pulumi.
Juniper Mist. Site. Inputs. Setting Mxtunnels Cluster> - Tunnel peer clusters used by APs for this site Mist Tunnel
- Created
Time double - Timestamp when the site Mist Tunnel configuration was created
- Enabled bool
- Whether site Mist Tunnel tunneling is enabled
- For
Site bool - Whether this Mist Tunnel configuration is scoped to a site
- Hello
Interval int - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- Hello
Retries int - Number of missed hello heartbeats before an AP tries another tunnel peer
- Hosts List<string>
- Tunnel peer hostnames or IP addresses reachable from APs
- Id string
- Unique value identifying the site Mist Tunnel configuration
- Modified
Time double - Timestamp when the site Mist Tunnel configuration was last modified
- Mtu int
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- Org
Id string - Identifier of the org that owns the site Mist Tunnel configuration
- Protocol string
- Encapsulation protocol used for the site Mist Tunnel
- Radsec
Pulumi.
Juniper Mist. Site. Inputs. Setting Mxtunnels Radsec - TLS-secured RADIUS proxy settings for the site Mist Tunnel
- Site
Id string - Identifier of the site that owns this Mist Tunnel configuration
- Vlan
Ids List<int> - List of VLAN IDs carried by this site Mist Tunnel
- Additional
Mxtunnels map[string]SettingMxtunnels Additional Mxtunnels - Additional named Mist Tunnel definitions configured for the site
- Ap
Subnets []string - AP source subnets allowed to establish Mist Tunnels
- Auto
Preemption SettingMxtunnels Auto Preemption - Preemption behavior for restoring preferred tunnel peers after failover
- Clusters
[]Setting
Mxtunnels Cluster - Tunnel peer clusters used by APs for this site Mist Tunnel
- Created
Time float64 - Timestamp when the site Mist Tunnel configuration was created
- Enabled bool
- Whether site Mist Tunnel tunneling is enabled
- For
Site bool - Whether this Mist Tunnel configuration is scoped to a site
- Hello
Interval int - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- Hello
Retries int - Number of missed hello heartbeats before an AP tries another tunnel peer
- Hosts []string
- Tunnel peer hostnames or IP addresses reachable from APs
- Id string
- Unique value identifying the site Mist Tunnel configuration
- Modified
Time float64 - Timestamp when the site Mist Tunnel configuration was last modified
- Mtu int
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- Org
Id string - Identifier of the org that owns the site Mist Tunnel configuration
- Protocol string
- Encapsulation protocol used for the site Mist Tunnel
- Radsec
Setting
Mxtunnels Radsec - TLS-secured RADIUS proxy settings for the site Mist Tunnel
- Site
Id string - Identifier of the site that owns this Mist Tunnel configuration
- Vlan
Ids []int - List of VLAN IDs carried by this site Mist Tunnel
- additional_
mxtunnels map(object) - Additional named Mist Tunnel definitions configured for the site
- ap_
subnets list(string) - AP source subnets allowed to establish Mist Tunnels
- auto_
preemption object - Preemption behavior for restoring preferred tunnel peers after failover
- clusters list(object)
- Tunnel peer clusters used by APs for this site Mist Tunnel
- created_
time number - Timestamp when the site Mist Tunnel configuration was created
- enabled bool
- Whether site Mist Tunnel tunneling is enabled
- for_
site bool - Whether this Mist Tunnel configuration is scoped to a site
- hello_
interval number - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello_
retries number - Number of missed hello heartbeats before an AP tries another tunnel peer
- hosts list(string)
- Tunnel peer hostnames or IP addresses reachable from APs
- id string
- Unique value identifying the site Mist Tunnel configuration
- modified_
time number - Timestamp when the site Mist Tunnel configuration was last modified
- mtu number
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- org_
id string - Identifier of the org that owns the site Mist Tunnel configuration
- protocol string
- Encapsulation protocol used for the site Mist Tunnel
- radsec object
- TLS-secured RADIUS proxy settings for the site Mist Tunnel
- site_
id string - Identifier of the site that owns this Mist Tunnel configuration
- vlan_
ids list(number) - List of VLAN IDs carried by this site Mist Tunnel
- additional
Mxtunnels Map<String,SettingMxtunnels Additional Mxtunnels> - Additional named Mist Tunnel definitions configured for the site
- ap
Subnets List<String> - AP source subnets allowed to establish Mist Tunnels
- auto
Preemption SettingMxtunnels Auto Preemption - Preemption behavior for restoring preferred tunnel peers after failover
- clusters
List<Setting
Mxtunnels Cluster> - Tunnel peer clusters used by APs for this site Mist Tunnel
- created
Time Double - Timestamp when the site Mist Tunnel configuration was created
- enabled Boolean
- Whether site Mist Tunnel tunneling is enabled
- for
Site Boolean - Whether this Mist Tunnel configuration is scoped to a site
- hello
Interval Integer - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello
Retries Integer - Number of missed hello heartbeats before an AP tries another tunnel peer
- hosts List<String>
- Tunnel peer hostnames or IP addresses reachable from APs
- id String
- Unique value identifying the site Mist Tunnel configuration
- modified
Time Double - Timestamp when the site Mist Tunnel configuration was last modified
- mtu Integer
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- org
Id String - Identifier of the org that owns the site Mist Tunnel configuration
- protocol String
- Encapsulation protocol used for the site Mist Tunnel
- radsec
Setting
Mxtunnels Radsec - TLS-secured RADIUS proxy settings for the site Mist Tunnel
- site
Id String - Identifier of the site that owns this Mist Tunnel configuration
- vlan
Ids List<Integer> - List of VLAN IDs carried by this site Mist Tunnel
- additional
Mxtunnels {[key: string]: SettingMxtunnels Additional Mxtunnels} - Additional named Mist Tunnel definitions configured for the site
- ap
Subnets string[] - AP source subnets allowed to establish Mist Tunnels
- auto
Preemption SettingMxtunnels Auto Preemption - Preemption behavior for restoring preferred tunnel peers after failover
- clusters
Setting
Mxtunnels Cluster[] - Tunnel peer clusters used by APs for this site Mist Tunnel
- created
Time number - Timestamp when the site Mist Tunnel configuration was created
- enabled boolean
- Whether site Mist Tunnel tunneling is enabled
- for
Site boolean - Whether this Mist Tunnel configuration is scoped to a site
- hello
Interval number - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello
Retries number - Number of missed hello heartbeats before an AP tries another tunnel peer
- hosts string[]
- Tunnel peer hostnames or IP addresses reachable from APs
- id string
- Unique value identifying the site Mist Tunnel configuration
- modified
Time number - Timestamp when the site Mist Tunnel configuration was last modified
- mtu number
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- org
Id string - Identifier of the org that owns the site Mist Tunnel configuration
- protocol string
- Encapsulation protocol used for the site Mist Tunnel
- radsec
Setting
Mxtunnels Radsec - TLS-secured RADIUS proxy settings for the site Mist Tunnel
- site
Id string - Identifier of the site that owns this Mist Tunnel configuration
- vlan
Ids number[] - List of VLAN IDs carried by this site Mist Tunnel
- additional_
mxtunnels Mapping[str, SettingMxtunnels Additional Mxtunnels] - Additional named Mist Tunnel definitions configured for the site
- ap_
subnets Sequence[str] - AP source subnets allowed to establish Mist Tunnels
- auto_
preemption SettingMxtunnels Auto Preemption - Preemption behavior for restoring preferred tunnel peers after failover
- clusters
Sequence[Setting
Mxtunnels Cluster] - Tunnel peer clusters used by APs for this site Mist Tunnel
- created_
time float - Timestamp when the site Mist Tunnel configuration was created
- enabled bool
- Whether site Mist Tunnel tunneling is enabled
- for_
site bool - Whether this Mist Tunnel configuration is scoped to a site
- hello_
interval int - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello_
retries int - Number of missed hello heartbeats before an AP tries another tunnel peer
- hosts Sequence[str]
- Tunnel peer hostnames or IP addresses reachable from APs
- id str
- Unique value identifying the site Mist Tunnel configuration
- modified_
time float - Timestamp when the site Mist Tunnel configuration was last modified
- mtu int
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- org_
id str - Identifier of the org that owns the site Mist Tunnel configuration
- protocol str
- Encapsulation protocol used for the site Mist Tunnel
- radsec
Setting
Mxtunnels Radsec - TLS-secured RADIUS proxy settings for the site Mist Tunnel
- site_
id str - Identifier of the site that owns this Mist Tunnel configuration
- vlan_
ids Sequence[int] - List of VLAN IDs carried by this site Mist Tunnel
- additional
Mxtunnels Map<Property Map> - Additional named Mist Tunnel definitions configured for the site
- ap
Subnets List<String> - AP source subnets allowed to establish Mist Tunnels
- auto
Preemption Property Map - Preemption behavior for restoring preferred tunnel peers after failover
- clusters List<Property Map>
- Tunnel peer clusters used by APs for this site Mist Tunnel
- created
Time Number - Timestamp when the site Mist Tunnel configuration was created
- enabled Boolean
- Whether site Mist Tunnel tunneling is enabled
- for
Site Boolean - Whether this Mist Tunnel configuration is scoped to a site
- hello
Interval Number - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello
Retries Number - Number of missed hello heartbeats before an AP tries another tunnel peer
- hosts List<String>
- Tunnel peer hostnames or IP addresses reachable from APs
- id String
- Unique value identifying the site Mist Tunnel configuration
- modified
Time Number - Timestamp when the site Mist Tunnel configuration was last modified
- mtu Number
- 0 to enable MTU, 552-1500 to start MTU with a lower MTU
- org
Id String - Identifier of the org that owns the site Mist Tunnel configuration
- protocol String
- Encapsulation protocol used for the site Mist Tunnel
- radsec Property Map
- TLS-secured RADIUS proxy settings for the site Mist Tunnel
- site
Id String - Identifier of the site that owns this Mist Tunnel configuration
- vlan
Ids List<Number> - List of VLAN IDs carried by this site Mist Tunnel
SettingMxtunnelsAdditionalMxtunnels, SettingMxtunnelsAdditionalMxtunnelsArgs
- Hello
Interval int - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- Hello
Retries int - Number of missed hello heartbeats before an AP tries another tunnel peer
- Protocol string
- Encapsulation protocol used for this additional Mist Tunnel
- Tunterm
Clusters List<Pulumi.Juniper Mist. Site. Inputs. Setting Mxtunnels Additional Mxtunnels Tunterm Cluster> - Tunnel peer clusters used by APs for this additional Mist Tunnel
- Vlan
Ids List<int> - List of VLAN IDs carried by this additional Mist Tunnel
- Hello
Interval int - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- Hello
Retries int - Number of missed hello heartbeats before an AP tries another tunnel peer
- Protocol string
- Encapsulation protocol used for this additional Mist Tunnel
- Tunterm
Clusters []SettingMxtunnels Additional Mxtunnels Tunterm Cluster - Tunnel peer clusters used by APs for this additional Mist Tunnel
- Vlan
Ids []int - List of VLAN IDs carried by this additional Mist Tunnel
- hello_
interval number - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello_
retries number - Number of missed hello heartbeats before an AP tries another tunnel peer
- protocol string
- Encapsulation protocol used for this additional Mist Tunnel
- tunterm_
clusters list(object) - Tunnel peer clusters used by APs for this additional Mist Tunnel
- vlan_
ids list(number) - List of VLAN IDs carried by this additional Mist Tunnel
- hello
Interval Integer - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello
Retries Integer - Number of missed hello heartbeats before an AP tries another tunnel peer
- protocol String
- Encapsulation protocol used for this additional Mist Tunnel
- tunterm
Clusters List<SettingMxtunnels Additional Mxtunnels Tunterm Cluster> - Tunnel peer clusters used by APs for this additional Mist Tunnel
- vlan
Ids List<Integer> - List of VLAN IDs carried by this additional Mist Tunnel
- hello
Interval number - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello
Retries number - Number of missed hello heartbeats before an AP tries another tunnel peer
- protocol string
- Encapsulation protocol used for this additional Mist Tunnel
- tunterm
Clusters SettingMxtunnels Additional Mxtunnels Tunterm Cluster[] - Tunnel peer clusters used by APs for this additional Mist Tunnel
- vlan
Ids number[] - List of VLAN IDs carried by this additional Mist Tunnel
- hello_
interval int - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello_
retries int - Number of missed hello heartbeats before an AP tries another tunnel peer
- protocol str
- Encapsulation protocol used for this additional Mist Tunnel
- tunterm_
clusters Sequence[SettingMxtunnels Additional Mxtunnels Tunterm Cluster] - Tunnel peer clusters used by APs for this additional Mist Tunnel
- vlan_
ids Sequence[int] - List of VLAN IDs carried by this additional Mist Tunnel
- hello
Interval Number - In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
- hello
Retries Number - Number of missed hello heartbeats before an AP tries another tunnel peer
- protocol String
- Encapsulation protocol used for this additional Mist Tunnel
- tunterm
Clusters List<Property Map> - Tunnel peer clusters used by APs for this additional Mist Tunnel
- vlan
Ids List<Number> - List of VLAN IDs carried by this additional Mist Tunnel
SettingMxtunnelsAdditionalMxtunnelsTuntermCluster, SettingMxtunnelsAdditionalMxtunnelsTuntermClusterArgs
- Name string
- Peer cluster name used in the site Mist Tunnel configuration
- Tunterm
Hosts List<string> - Tunnel termination hostnames or IP addresses in this peer cluster
- Name string
- Peer cluster name used in the site Mist Tunnel configuration
- Tunterm
Hosts []string - Tunnel termination hostnames or IP addresses in this peer cluster
- name string
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm_
hosts list(string) - Tunnel termination hostnames or IP addresses in this peer cluster
- name String
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm
Hosts List<String> - Tunnel termination hostnames or IP addresses in this peer cluster
- name string
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm
Hosts string[] - Tunnel termination hostnames or IP addresses in this peer cluster
- name str
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm_
hosts Sequence[str] - Tunnel termination hostnames or IP addresses in this peer cluster
- name String
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm
Hosts List<String> - Tunnel termination hostnames or IP addresses in this peer cluster
SettingMxtunnelsAutoPreemption, SettingMxtunnelsAutoPreemptionArgs
- day_
of_ stringweek - Scheduled weekday for auto preemption
- enabled bool
- Whether auto preemption is enabled
- time_
of_ stringday - Scheduled time of day for auto preemption
- day_
of_ strweek - Scheduled weekday for auto preemption
- enabled bool
- Whether auto preemption is enabled
- time_
of_ strday - Scheduled time of day for auto preemption
SettingMxtunnelsCluster, SettingMxtunnelsClusterArgs
- Name string
- Peer cluster name used in the site Mist Tunnel configuration
- Tunterm
Hosts List<string> - Tunnel termination hostnames or IP addresses in this peer cluster
- Name string
- Peer cluster name used in the site Mist Tunnel configuration
- Tunterm
Hosts []string - Tunnel termination hostnames or IP addresses in this peer cluster
- name string
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm_
hosts list(string) - Tunnel termination hostnames or IP addresses in this peer cluster
- name String
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm
Hosts List<String> - Tunnel termination hostnames or IP addresses in this peer cluster
- name string
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm
Hosts string[] - Tunnel termination hostnames or IP addresses in this peer cluster
- name str
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm_
hosts Sequence[str] - Tunnel termination hostnames or IP addresses in this peer cluster
- name String
- Peer cluster name used in the site Mist Tunnel configuration
- tunterm
Hosts List<String> - Tunnel termination hostnames or IP addresses in this peer cluster
SettingMxtunnelsRadsec, SettingMxtunnelsRadsecArgs
- Acct
Servers List<Pulumi.Juniper Mist. Site. Inputs. Setting Mxtunnels Radsec Acct Server> - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- Auth
Servers List<Pulumi.Juniper Mist. Site. Inputs. Setting Mxtunnels Radsec Auth Server> - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- Enabled bool
- Whether RadSec proxying is enabled for this site Mist Tunnel
- Use
Mxedge bool - Whether RadSec proxying uses Mist Edge
- Acct
Servers []SettingMxtunnels Radsec Acct Server - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- Auth
Servers []SettingMxtunnels Radsec Auth Server - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- Enabled bool
- Whether RadSec proxying is enabled for this site Mist Tunnel
- Use
Mxedge bool - Whether RadSec proxying uses Mist Edge
- acct_
servers list(object) - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- auth_
servers list(object) - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- enabled bool
- Whether RadSec proxying is enabled for this site Mist Tunnel
- use_
mxedge bool - Whether RadSec proxying uses Mist Edge
- acct
Servers List<SettingMxtunnels Radsec Acct Server> - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- auth
Servers List<SettingMxtunnels Radsec Auth Server> - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- enabled Boolean
- Whether RadSec proxying is enabled for this site Mist Tunnel
- use
Mxedge Boolean - Whether RadSec proxying uses Mist Edge
- acct
Servers SettingMxtunnels Radsec Acct Server[] - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- auth
Servers SettingMxtunnels Radsec Auth Server[] - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- enabled boolean
- Whether RadSec proxying is enabled for this site Mist Tunnel
- use
Mxedge boolean - Whether RadSec proxying uses Mist Edge
- acct_
servers Sequence[SettingMxtunnels Radsec Acct Server] - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- auth_
servers Sequence[SettingMxtunnels Radsec Auth Server] - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- enabled bool
- Whether RadSec proxying is enabled for this site Mist Tunnel
- use_
mxedge bool - Whether RadSec proxying uses Mist Edge
- acct
Servers List<Property Map> - RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
- auth
Servers List<Property Map> - RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
- enabled Boolean
- Whether RadSec proxying is enabled for this site Mist Tunnel
- use
Mxedge Boolean - Whether RadSec proxying uses Mist Edge
SettingMxtunnelsRadsecAcctServer, SettingMxtunnelsRadsecAcctServerArgs
- Host string
- Address or hostname of the RADIUS accounting server
- Secret string
- Shared secret used with this RADIUS accounting server
- Keywrap
Enabled bool - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- Keywrap
Format string - Encoding format for RADIUS keywrap KEK and MACK values
- Keywrap
Kek string - RADIUS keywrap key encryption key (KEK)
- Keywrap
Mack string - RADIUS keywrap message authentication code key (MACK)
- Port string
- UDP port used by the RADIUS accounting server
- Host string
- Address or hostname of the RADIUS accounting server
- Secret string
- Shared secret used with this RADIUS accounting server
- Keywrap
Enabled bool - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- Keywrap
Format string - Encoding format for RADIUS keywrap KEK and MACK values
- Keywrap
Kek string - RADIUS keywrap key encryption key (KEK)
- Keywrap
Mack string - RADIUS keywrap message authentication code key (MACK)
- Port string
- UDP port used by the RADIUS accounting server
- host string
- Address or hostname of the RADIUS accounting server
- secret string
- Shared secret used with this RADIUS accounting server
- keywrap_
enabled bool - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- keywrap_
format string - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap_
kek string - RADIUS keywrap key encryption key (KEK)
- keywrap_
mack string - RADIUS keywrap message authentication code key (MACK)
- port string
- UDP port used by the RADIUS accounting server
- host String
- Address or hostname of the RADIUS accounting server
- secret String
- Shared secret used with this RADIUS accounting server
- keywrap
Enabled Boolean - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- keywrap
Format String - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap
Kek String - RADIUS keywrap key encryption key (KEK)
- keywrap
Mack String - RADIUS keywrap message authentication code key (MACK)
- port String
- UDP port used by the RADIUS accounting server
- host string
- Address or hostname of the RADIUS accounting server
- secret string
- Shared secret used with this RADIUS accounting server
- keywrap
Enabled boolean - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- keywrap
Format string - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap
Kek string - RADIUS keywrap key encryption key (KEK)
- keywrap
Mack string - RADIUS keywrap message authentication code key (MACK)
- port string
- UDP port used by the RADIUS accounting server
- host str
- Address or hostname of the RADIUS accounting server
- secret str
- Shared secret used with this RADIUS accounting server
- keywrap_
enabled bool - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- keywrap_
format str - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap_
kek str - RADIUS keywrap key encryption key (KEK)
- keywrap_
mack str - RADIUS keywrap message authentication code key (MACK)
- port str
- UDP port used by the RADIUS accounting server
- host String
- Address or hostname of the RADIUS accounting server
- secret String
- Shared secret used with this RADIUS accounting server
- keywrap
Enabled Boolean - Whether RADIUS keywrap is enabled for messages sent to this accounting server
- keywrap
Format String - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap
Kek String - RADIUS keywrap key encryption key (KEK)
- keywrap
Mack String - RADIUS keywrap message authentication code key (MACK)
- port String
- UDP port used by the RADIUS accounting server
SettingMxtunnelsRadsecAuthServer, SettingMxtunnelsRadsecAuthServerArgs
- Host string
- Address or hostname of the RADIUS authentication server
- Secret string
- Shared secret used with this RADIUS authentication server
- Keywrap
Enabled bool - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- Keywrap
Format string - Encoding format for RADIUS keywrap KEK and MACK values
- Keywrap
Kek string - RADIUS keywrap key encryption key (KEK)
- Keywrap
Mack string - RADIUS keywrap message authentication code key (MACK)
- Port string
- UDP port used by the RADIUS authentication server
- Require
Message boolAuthenticator - Whether to require Message-Authenticator in requests
- Host string
- Address or hostname of the RADIUS authentication server
- Secret string
- Shared secret used with this RADIUS authentication server
- Keywrap
Enabled bool - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- Keywrap
Format string - Encoding format for RADIUS keywrap KEK and MACK values
- Keywrap
Kek string - RADIUS keywrap key encryption key (KEK)
- Keywrap
Mack string - RADIUS keywrap message authentication code key (MACK)
- Port string
- UDP port used by the RADIUS authentication server
- Require
Message boolAuthenticator - Whether to require Message-Authenticator in requests
- host string
- Address or hostname of the RADIUS authentication server
- secret string
- Shared secret used with this RADIUS authentication server
- keywrap_
enabled bool - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- keywrap_
format string - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap_
kek string - RADIUS keywrap key encryption key (KEK)
- keywrap_
mack string - RADIUS keywrap message authentication code key (MACK)
- port string
- UDP port used by the RADIUS authentication server
- require_
message_ boolauthenticator - Whether to require Message-Authenticator in requests
- host String
- Address or hostname of the RADIUS authentication server
- secret String
- Shared secret used with this RADIUS authentication server
- keywrap
Enabled Boolean - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- keywrap
Format String - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap
Kek String - RADIUS keywrap key encryption key (KEK)
- keywrap
Mack String - RADIUS keywrap message authentication code key (MACK)
- port String
- UDP port used by the RADIUS authentication server
- require
Message BooleanAuthenticator - Whether to require Message-Authenticator in requests
- host string
- Address or hostname of the RADIUS authentication server
- secret string
- Shared secret used with this RADIUS authentication server
- keywrap
Enabled boolean - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- keywrap
Format string - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap
Kek string - RADIUS keywrap key encryption key (KEK)
- keywrap
Mack string - RADIUS keywrap message authentication code key (MACK)
- port string
- UDP port used by the RADIUS authentication server
- require
Message booleanAuthenticator - Whether to require Message-Authenticator in requests
- host str
- Address or hostname of the RADIUS authentication server
- secret str
- Shared secret used with this RADIUS authentication server
- keywrap_
enabled bool - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- keywrap_
format str - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap_
kek str - RADIUS keywrap key encryption key (KEK)
- keywrap_
mack str - RADIUS keywrap message authentication code key (MACK)
- port str
- UDP port used by the RADIUS authentication server
- require_
message_ boolauthenticator - Whether to require Message-Authenticator in requests
- host String
- Address or hostname of the RADIUS authentication server
- secret String
- Shared secret used with this RADIUS authentication server
- keywrap
Enabled Boolean - Whether RADIUS keywrap is enabled for messages sent to this authentication server
- keywrap
Format String - Encoding format for RADIUS keywrap KEK and MACK values
- keywrap
Kek String - RADIUS keywrap key encryption key (KEK)
- keywrap
Mack String - RADIUS keywrap message authentication code key (MACK)
- port String
- UDP port used by the RADIUS authentication server
- require
Message BooleanAuthenticator - Whether to require Message-Authenticator in requests
SettingOccupancy, SettingOccupancyArgs
- Assets
Enabled bool - Indicate whether named BLE assets should be included in the zone occupancy calculation
- Clients
Enabled bool - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- Min
Duration int - Minimum dwell duration before a client or asset is counted in occupancy analytics
- Sdkclients
Enabled bool - Indicate whether SDK clients should be included in the zone occupancy calculation
- Unconnected
Clients boolEnabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- Assets
Enabled bool - Indicate whether named BLE assets should be included in the zone occupancy calculation
- Clients
Enabled bool - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- Min
Duration int - Minimum dwell duration before a client or asset is counted in occupancy analytics
- Sdkclients
Enabled bool - Indicate whether SDK clients should be included in the zone occupancy calculation
- Unconnected
Clients boolEnabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assets_
enabled bool - Indicate whether named BLE assets should be included in the zone occupancy calculation
- clients_
enabled bool - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- min_
duration number - Minimum dwell duration before a client or asset is counted in occupancy analytics
- sdkclients_
enabled bool - Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnected_
clients_ boolenabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assets
Enabled Boolean - Indicate whether named BLE assets should be included in the zone occupancy calculation
- clients
Enabled Boolean - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- min
Duration Integer - Minimum dwell duration before a client or asset is counted in occupancy analytics
- sdkclients
Enabled Boolean - Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnected
Clients BooleanEnabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assets
Enabled boolean - Indicate whether named BLE assets should be included in the zone occupancy calculation
- clients
Enabled boolean - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- min
Duration number - Minimum dwell duration before a client or asset is counted in occupancy analytics
- sdkclients
Enabled boolean - Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnected
Clients booleanEnabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assets_
enabled bool - Indicate whether named BLE assets should be included in the zone occupancy calculation
- clients_
enabled bool - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- min_
duration int - Minimum dwell duration before a client or asset is counted in occupancy analytics
- sdkclients_
enabled bool - Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnected_
clients_ boolenabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assets
Enabled Boolean - Indicate whether named BLE assets should be included in the zone occupancy calculation
- clients
Enabled Boolean - Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- min
Duration Number - Minimum dwell duration before a client or asset is counted in occupancy analytics
- sdkclients
Enabled Boolean - Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnected
Clients BooleanEnabled - Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
SettingProxy, SettingProxyArgs
SettingRogue, SettingRogueArgs
- Allowed
Vlan List<int>Ids - VLAN IDs allowed by the rogue detection policy
- Enabled bool
- Whether rogue detection is enabled
- Honeypot
Enabled bool - Whether honeypot detection is enabled
- Min
Duration int - Minimum duration for a bssid to be considered neighbor
- Min
Rogue intDuration - Minimum duration for a bssid to be considered rogue
- Min
Rogue intRssi - Minimum RSSI for an AP to be considered rogue
- Min
Rssi int - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- Whitelisted
Bssids List<string> - BSSID values or wildcard patterns excluded from rogue detection
- Whitelisted
Ssids List<string> - SSID names excluded from rogue detection
- Allowed
Vlan []intIds - VLAN IDs allowed by the rogue detection policy
- Enabled bool
- Whether rogue detection is enabled
- Honeypot
Enabled bool - Whether honeypot detection is enabled
- Min
Duration int - Minimum duration for a bssid to be considered neighbor
- Min
Rogue intDuration - Minimum duration for a bssid to be considered rogue
- Min
Rogue intRssi - Minimum RSSI for an AP to be considered rogue
- Min
Rssi int - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- Whitelisted
Bssids []string - BSSID values or wildcard patterns excluded from rogue detection
- Whitelisted
Ssids []string - SSID names excluded from rogue detection
- allowed_
vlan_ list(number)ids - VLAN IDs allowed by the rogue detection policy
- enabled bool
- Whether rogue detection is enabled
- honeypot_
enabled bool - Whether honeypot detection is enabled
- min_
duration number - Minimum duration for a bssid to be considered neighbor
- min_
rogue_ numberduration - Minimum duration for a bssid to be considered rogue
- min_
rogue_ numberrssi - Minimum RSSI for an AP to be considered rogue
- min_
rssi number - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- whitelisted_
bssids list(string) - BSSID values or wildcard patterns excluded from rogue detection
- whitelisted_
ssids list(string) - SSID names excluded from rogue detection
- allowed
Vlan List<Integer>Ids - VLAN IDs allowed by the rogue detection policy
- enabled Boolean
- Whether rogue detection is enabled
- honeypot
Enabled Boolean - Whether honeypot detection is enabled
- min
Duration Integer - Minimum duration for a bssid to be considered neighbor
- min
Rogue IntegerDuration - Minimum duration for a bssid to be considered rogue
- min
Rogue IntegerRssi - Minimum RSSI for an AP to be considered rogue
- min
Rssi Integer - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- whitelisted
Bssids List<String> - BSSID values or wildcard patterns excluded from rogue detection
- whitelisted
Ssids List<String> - SSID names excluded from rogue detection
- allowed
Vlan number[]Ids - VLAN IDs allowed by the rogue detection policy
- enabled boolean
- Whether rogue detection is enabled
- honeypot
Enabled boolean - Whether honeypot detection is enabled
- min
Duration number - Minimum duration for a bssid to be considered neighbor
- min
Rogue numberDuration - Minimum duration for a bssid to be considered rogue
- min
Rogue numberRssi - Minimum RSSI for an AP to be considered rogue
- min
Rssi number - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- whitelisted
Bssids string[] - BSSID values or wildcard patterns excluded from rogue detection
- whitelisted
Ssids string[] - SSID names excluded from rogue detection
- allowed_
vlan_ Sequence[int]ids - VLAN IDs allowed by the rogue detection policy
- enabled bool
- Whether rogue detection is enabled
- honeypot_
enabled bool - Whether honeypot detection is enabled
- min_
duration int - Minimum duration for a bssid to be considered neighbor
- min_
rogue_ intduration - Minimum duration for a bssid to be considered rogue
- min_
rogue_ intrssi - Minimum RSSI for an AP to be considered rogue
- min_
rssi int - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- whitelisted_
bssids Sequence[str] - BSSID values or wildcard patterns excluded from rogue detection
- whitelisted_
ssids Sequence[str] - SSID names excluded from rogue detection
- allowed
Vlan List<Number>Ids - VLAN IDs allowed by the rogue detection policy
- enabled Boolean
- Whether rogue detection is enabled
- honeypot
Enabled Boolean - Whether honeypot detection is enabled
- min
Duration Number - Minimum duration for a bssid to be considered neighbor
- min
Rogue NumberDuration - Minimum duration for a bssid to be considered rogue
- min
Rogue NumberRssi - Minimum RSSI for an AP to be considered rogue
- min
Rssi Number - Minimum RSSI for an AP to be considered neighbor (ignoring APs that’s far away)
- whitelisted
Bssids List<String> - BSSID values or wildcard patterns excluded from rogue detection
- whitelisted
Ssids List<String> - SSID names excluded from rogue detection
SettingRtsa, SettingRtsaArgs
- App
Waking bool - Whether app wake-up support is enabled for managed mobility
- Disable
Dead boolReckoning - Whether dead reckoning is disabled for managed mobility
- Disable
Pressure boolSensor - Whether pressure sensor use is disabled for managed mobility
- Enabled bool
- Whether managed mobility features are enabled
- Track
Asset bool - Whether BLE asset tracking is enabled for managed mobility
- App
Waking bool - Whether app wake-up support is enabled for managed mobility
- Disable
Dead boolReckoning - Whether dead reckoning is disabled for managed mobility
- Disable
Pressure boolSensor - Whether pressure sensor use is disabled for managed mobility
- Enabled bool
- Whether managed mobility features are enabled
- Track
Asset bool - Whether BLE asset tracking is enabled for managed mobility
- app_
waking bool - Whether app wake-up support is enabled for managed mobility
- disable_
dead_ boolreckoning - Whether dead reckoning is disabled for managed mobility
- disable_
pressure_ boolsensor - Whether pressure sensor use is disabled for managed mobility
- enabled bool
- Whether managed mobility features are enabled
- track_
asset bool - Whether BLE asset tracking is enabled for managed mobility
- app
Waking Boolean - Whether app wake-up support is enabled for managed mobility
- disable
Dead BooleanReckoning - Whether dead reckoning is disabled for managed mobility
- disable
Pressure BooleanSensor - Whether pressure sensor use is disabled for managed mobility
- enabled Boolean
- Whether managed mobility features are enabled
- track
Asset Boolean - Whether BLE asset tracking is enabled for managed mobility
- app
Waking boolean - Whether app wake-up support is enabled for managed mobility
- disable
Dead booleanReckoning - Whether dead reckoning is disabled for managed mobility
- disable
Pressure booleanSensor - Whether pressure sensor use is disabled for managed mobility
- enabled boolean
- Whether managed mobility features are enabled
- track
Asset boolean - Whether BLE asset tracking is enabled for managed mobility
- app_
waking bool - Whether app wake-up support is enabled for managed mobility
- disable_
dead_ boolreckoning - Whether dead reckoning is disabled for managed mobility
- disable_
pressure_ boolsensor - Whether pressure sensor use is disabled for managed mobility
- enabled bool
- Whether managed mobility features are enabled
- track_
asset bool - Whether BLE asset tracking is enabled for managed mobility
- app
Waking Boolean - Whether app wake-up support is enabled for managed mobility
- disable
Dead BooleanReckoning - Whether dead reckoning is disabled for managed mobility
- disable
Pressure BooleanSensor - Whether pressure sensor use is disabled for managed mobility
- enabled Boolean
- Whether managed mobility features are enabled
- track
Asset Boolean - Whether BLE asset tracking is enabled for managed mobility
SettingSimpleAlert, SettingSimpleAlertArgs
- Arp
Failure Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert Arp Failure - Thresholds for ARP failure heuristic alerts
- Dhcp
Failure Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert Dhcp Failure - Thresholds for DHCP failure heuristic alerts
- Dns
Failure Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert Dns Failure - Thresholds for DNS failure heuristic alerts
- Arp
Failure SettingSimple Alert Arp Failure - Thresholds for ARP failure heuristic alerts
- Dhcp
Failure SettingSimple Alert Dhcp Failure - Thresholds for DHCP failure heuristic alerts
- Dns
Failure SettingSimple Alert Dns Failure - Thresholds for DNS failure heuristic alerts
- arp_
failure object - Thresholds for ARP failure heuristic alerts
- dhcp_
failure object - Thresholds for DHCP failure heuristic alerts
- dns_
failure object - Thresholds for DNS failure heuristic alerts
- arp
Failure SettingSimple Alert Arp Failure - Thresholds for ARP failure heuristic alerts
- dhcp
Failure SettingSimple Alert Dhcp Failure - Thresholds for DHCP failure heuristic alerts
- dns
Failure SettingSimple Alert Dns Failure - Thresholds for DNS failure heuristic alerts
- arp
Failure SettingSimple Alert Arp Failure - Thresholds for ARP failure heuristic alerts
- dhcp
Failure SettingSimple Alert Dhcp Failure - Thresholds for DHCP failure heuristic alerts
- dns
Failure SettingSimple Alert Dns Failure - Thresholds for DNS failure heuristic alerts
- arp_
failure SettingSimple Alert Arp Failure - Thresholds for ARP failure heuristic alerts
- dhcp_
failure SettingSimple Alert Dhcp Failure - Thresholds for DHCP failure heuristic alerts
- dns_
failure SettingSimple Alert Dns Failure - Thresholds for DNS failure heuristic alerts
- arp
Failure Property Map - Thresholds for ARP failure heuristic alerts
- dhcp
Failure Property Map - Thresholds for DHCP failure heuristic alerts
- dns
Failure Property Map - Thresholds for DNS failure heuristic alerts
SettingSimpleAlertArpFailure, SettingSimpleAlertArpFailureArgs
- Client
Count int - Number of distinct clients that must encounter ARP failures before alerting
- Duration int
- Time window in minutes for evaluating ARP failures
- Incident
Count int - Number of ARP failure incidents required within the duration window
- Client
Count int - Number of distinct clients that must encounter ARP failures before alerting
- Duration int
- Time window in minutes for evaluating ARP failures
- Incident
Count int - Number of ARP failure incidents required within the duration window
- client_
count number - Number of distinct clients that must encounter ARP failures before alerting
- duration number
- Time window in minutes for evaluating ARP failures
- incident_
count number - Number of ARP failure incidents required within the duration window
- client
Count Integer - Number of distinct clients that must encounter ARP failures before alerting
- duration Integer
- Time window in minutes for evaluating ARP failures
- incident
Count Integer - Number of ARP failure incidents required within the duration window
- client
Count number - Number of distinct clients that must encounter ARP failures before alerting
- duration number
- Time window in minutes for evaluating ARP failures
- incident
Count number - Number of ARP failure incidents required within the duration window
- client_
count int - Number of distinct clients that must encounter ARP failures before alerting
- duration int
- Time window in minutes for evaluating ARP failures
- incident_
count int - Number of ARP failure incidents required within the duration window
- client
Count Number - Number of distinct clients that must encounter ARP failures before alerting
- duration Number
- Time window in minutes for evaluating ARP failures
- incident
Count Number - Number of ARP failure incidents required within the duration window
SettingSimpleAlertDhcpFailure, SettingSimpleAlertDhcpFailureArgs
- Client
Count int - Number of distinct clients that must encounter DHCP failures before alerting
- Duration int
- Time window in minutes for evaluating DHCP failures
- Incident
Count int - Number of DHCP failure incidents required within the duration window
- Client
Count int - Number of distinct clients that must encounter DHCP failures before alerting
- Duration int
- Time window in minutes for evaluating DHCP failures
- Incident
Count int - Number of DHCP failure incidents required within the duration window
- client_
count number - Number of distinct clients that must encounter DHCP failures before alerting
- duration number
- Time window in minutes for evaluating DHCP failures
- incident_
count number - Number of DHCP failure incidents required within the duration window
- client
Count Integer - Number of distinct clients that must encounter DHCP failures before alerting
- duration Integer
- Time window in minutes for evaluating DHCP failures
- incident
Count Integer - Number of DHCP failure incidents required within the duration window
- client
Count number - Number of distinct clients that must encounter DHCP failures before alerting
- duration number
- Time window in minutes for evaluating DHCP failures
- incident
Count number - Number of DHCP failure incidents required within the duration window
- client_
count int - Number of distinct clients that must encounter DHCP failures before alerting
- duration int
- Time window in minutes for evaluating DHCP failures
- incident_
count int - Number of DHCP failure incidents required within the duration window
- client
Count Number - Number of distinct clients that must encounter DHCP failures before alerting
- duration Number
- Time window in minutes for evaluating DHCP failures
- incident
Count Number - Number of DHCP failure incidents required within the duration window
SettingSimpleAlertDnsFailure, SettingSimpleAlertDnsFailureArgs
- Client
Count int - Number of distinct clients that must encounter DNS failures before alerting
- Duration int
- Time window in minutes for evaluating DNS failures
- Incident
Count int - Number of DNS failure incidents required within the duration window
- Client
Count int - Number of distinct clients that must encounter DNS failures before alerting
- Duration int
- Time window in minutes for evaluating DNS failures
- Incident
Count int - Number of DNS failure incidents required within the duration window
- client_
count number - Number of distinct clients that must encounter DNS failures before alerting
- duration number
- Time window in minutes for evaluating DNS failures
- incident_
count number - Number of DNS failure incidents required within the duration window
- client
Count Integer - Number of distinct clients that must encounter DNS failures before alerting
- duration Integer
- Time window in minutes for evaluating DNS failures
- incident
Count Integer - Number of DNS failure incidents required within the duration window
- client
Count number - Number of distinct clients that must encounter DNS failures before alerting
- duration number
- Time window in minutes for evaluating DNS failures
- incident
Count number - Number of DNS failure incidents required within the duration window
- client_
count int - Number of distinct clients that must encounter DNS failures before alerting
- duration int
- Time window in minutes for evaluating DNS failures
- incident_
count int - Number of DNS failure incidents required within the duration window
- client
Count Number - Number of distinct clients that must encounter DNS failures before alerting
- duration Number
- Time window in minutes for evaluating DNS failures
- incident
Count Number - Number of DNS failure incidents required within the duration window
SettingSkyatp, SettingSkyatpArgs
- Enabled bool
- Whether Sky ATP is enabled for the site
- Send
Ip boolMac Mapping - Whether IP-to-MAC mappings are sent to Sky ATP
- Enabled bool
- Whether Sky ATP is enabled for the site
- Send
Ip boolMac Mapping - Whether IP-to-MAC mappings are sent to Sky ATP
- enabled bool
- Whether Sky ATP is enabled for the site
- send_
ip_ boolmac_ mapping - Whether IP-to-MAC mappings are sent to Sky ATP
- enabled Boolean
- Whether Sky ATP is enabled for the site
- send
Ip BooleanMac Mapping - Whether IP-to-MAC mappings are sent to Sky ATP
- enabled boolean
- Whether Sky ATP is enabled for the site
- send
Ip booleanMac Mapping - Whether IP-to-MAC mappings are sent to Sky ATP
- enabled bool
- Whether Sky ATP is enabled for the site
- send_
ip_ boolmac_ mapping - Whether IP-to-MAC mappings are sent to Sky ATP
- enabled Boolean
- Whether Sky ATP is enabled for the site
- send
Ip BooleanMac Mapping - Whether IP-to-MAC mappings are sent to Sky ATP
SettingSleThresholds, SettingSleThresholdsArgs
- Capacity int
- Threshold percentage for capacity SLE scoring
- Coverage int
- RSSI threshold for coverage SLE scoring, in dBm
- Throughput int
- Minimum throughput threshold for SLE scoring, in Mbps
- Timetoconnect int
- Time to connect, in seconds
- Capacity int
- Threshold percentage for capacity SLE scoring
- Coverage int
- RSSI threshold for coverage SLE scoring, in dBm
- Throughput int
- Minimum throughput threshold for SLE scoring, in Mbps
- Timetoconnect int
- Time to connect, in seconds
- capacity number
- Threshold percentage for capacity SLE scoring
- coverage number
- RSSI threshold for coverage SLE scoring, in dBm
- throughput number
- Minimum throughput threshold for SLE scoring, in Mbps
- timetoconnect number
- Time to connect, in seconds
- capacity Integer
- Threshold percentage for capacity SLE scoring
- coverage Integer
- RSSI threshold for coverage SLE scoring, in dBm
- throughput Integer
- Minimum throughput threshold for SLE scoring, in Mbps
- timetoconnect Integer
- Time to connect, in seconds
- capacity number
- Threshold percentage for capacity SLE scoring
- coverage number
- RSSI threshold for coverage SLE scoring, in dBm
- throughput number
- Minimum throughput threshold for SLE scoring, in Mbps
- timetoconnect number
- Time to connect, in seconds
- capacity int
- Threshold percentage for capacity SLE scoring
- coverage int
- RSSI threshold for coverage SLE scoring, in dBm
- throughput int
- Minimum throughput threshold for SLE scoring, in Mbps
- timetoconnect int
- Time to connect, in seconds
- capacity Number
- Threshold percentage for capacity SLE scoring
- coverage Number
- RSSI threshold for coverage SLE scoring, in dBm
- throughput Number
- Minimum throughput threshold for SLE scoring, in Mbps
- timetoconnect Number
- Time to connect, in seconds
SettingSrxApp, SettingSrxAppArgs
- Enabled bool
- Whether Juniper SRX application visibility is enabled
- Enabled bool
- Whether Juniper SRX application visibility is enabled
- enabled bool
- Whether Juniper SRX application visibility is enabled
- enabled Boolean
- Whether Juniper SRX application visibility is enabled
- enabled boolean
- Whether Juniper SRX application visibility is enabled
- enabled bool
- Whether Juniper SRX application visibility is enabled
- enabled Boolean
- Whether Juniper SRX application visibility is enabled
SettingSsr, SettingSsrArgs
- Auto
Upgrade Pulumi.Juniper Mist. Site. Inputs. Setting Ssr Auto Upgrade - Automatic SSR firmware upgrade settings for newly onboarded devices
- Conductor
Hosts List<string> - IP addresses or hostnames of conductors used by SSR devices
- Conductor
Token string - Registration token used by SSR devices to connect to the conductor
- Disable
Stats bool - Whether stats collection is disabled on SSR devices
- Proxy
Pulumi.
Juniper Mist. Site. Inputs. Setting Ssr Proxy - Network proxy settings used by SSR devices to reach Mist
- Auto
Upgrade SettingSsr Auto Upgrade - Automatic SSR firmware upgrade settings for newly onboarded devices
- Conductor
Hosts []string - IP addresses or hostnames of conductors used by SSR devices
- Conductor
Token string - Registration token used by SSR devices to connect to the conductor
- Disable
Stats bool - Whether stats collection is disabled on SSR devices
- Proxy
Setting
Ssr Proxy - Network proxy settings used by SSR devices to reach Mist
- auto_
upgrade object - Automatic SSR firmware upgrade settings for newly onboarded devices
- conductor_
hosts list(string) - IP addresses or hostnames of conductors used by SSR devices
- conductor_
token string - Registration token used by SSR devices to connect to the conductor
- disable_
stats bool - Whether stats collection is disabled on SSR devices
- proxy object
- Network proxy settings used by SSR devices to reach Mist
- auto
Upgrade SettingSsr Auto Upgrade - Automatic SSR firmware upgrade settings for newly onboarded devices
- conductor
Hosts List<String> - IP addresses or hostnames of conductors used by SSR devices
- conductor
Token String - Registration token used by SSR devices to connect to the conductor
- disable
Stats Boolean - Whether stats collection is disabled on SSR devices
- proxy
Setting
Ssr Proxy - Network proxy settings used by SSR devices to reach Mist
- auto
Upgrade SettingSsr Auto Upgrade - Automatic SSR firmware upgrade settings for newly onboarded devices
- conductor
Hosts string[] - IP addresses or hostnames of conductors used by SSR devices
- conductor
Token string - Registration token used by SSR devices to connect to the conductor
- disable
Stats boolean - Whether stats collection is disabled on SSR devices
- proxy
Setting
Ssr Proxy - Network proxy settings used by SSR devices to reach Mist
- auto_
upgrade SettingSsr Auto Upgrade - Automatic SSR firmware upgrade settings for newly onboarded devices
- conductor_
hosts Sequence[str] - IP addresses or hostnames of conductors used by SSR devices
- conductor_
token str - Registration token used by SSR devices to connect to the conductor
- disable_
stats bool - Whether stats collection is disabled on SSR devices
- proxy
Setting
Ssr Proxy - Network proxy settings used by SSR devices to reach Mist
- auto
Upgrade Property Map - Automatic SSR firmware upgrade settings for newly onboarded devices
- conductor
Hosts List<String> - IP addresses or hostnames of conductors used by SSR devices
- conductor
Token String - Registration token used by SSR devices to connect to the conductor
- disable
Stats Boolean - Whether stats collection is disabled on SSR devices
- proxy Property Map
- Network proxy settings used by SSR devices to reach Mist
SettingSsrAutoUpgrade, SettingSsrAutoUpgradeArgs
- Channel string
- Firmware release channel used for SSR auto-upgrade
- Custom
Versions Dictionary<string, string> - Per-model SSR firmware versions used for auto-upgrade
- Enabled bool
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- Version string
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
- Channel string
- Firmware release channel used for SSR auto-upgrade
- Custom
Versions map[string]string - Per-model SSR firmware versions used for auto-upgrade
- Enabled bool
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- Version string
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
- channel string
- Firmware release channel used for SSR auto-upgrade
- custom_
versions map(string) - Per-model SSR firmware versions used for auto-upgrade
- enabled bool
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- version string
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
- channel String
- Firmware release channel used for SSR auto-upgrade
- custom
Versions Map<String,String> - Per-model SSR firmware versions used for auto-upgrade
- enabled Boolean
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- version String
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
- channel string
- Firmware release channel used for SSR auto-upgrade
- custom
Versions {[key: string]: string} - Per-model SSR firmware versions used for auto-upgrade
- enabled boolean
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- version string
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
- channel str
- Firmware release channel used for SSR auto-upgrade
- custom_
versions Mapping[str, str] - Per-model SSR firmware versions used for auto-upgrade
- enabled bool
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- version str
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
- channel String
- Firmware release channel used for SSR auto-upgrade
- custom
Versions Map<String> - Per-model SSR firmware versions used for auto-upgrade
- enabled Boolean
- Whether SSR auto-upgrade is enabled for newly onboarded devices
- version String
- Firmware version to deploy (e.g. 6.3.0-107.r1). Optional, used when customVersions not specified
SettingSsrProxy, SettingSsrProxyArgs
SettingSyntheticTest, SettingSyntheticTestArgs
- Aggressiveness string
- Overall aggressiveness level for synthetic test probes
- Custom
Probes Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test Custom Probes> - Custom synthetic probe definitions keyed by probe name
- Disabled bool
- Whether synthetic tests are disabled
- Lan
Networks List<Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test Lan Network> - LAN network probe groups used by synthetic tests
- Vlans
List<Pulumi.
Juniper Mist. Site. Inputs. Setting Synthetic Test Vlan> - Deprecated VLAN-based synthetic test settings
- Wan
Speedtest Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test Wan Speedtest - WAN speedtest settings for synthetic tests
- Aggressiveness string
- Overall aggressiveness level for synthetic test probes
- Custom
Probes map[string]SettingSynthetic Test Custom Probes - Custom synthetic probe definitions keyed by probe name
- Disabled bool
- Whether synthetic tests are disabled
- Lan
Networks []SettingSynthetic Test Lan Network - LAN network probe groups used by synthetic tests
- Vlans
[]Setting
Synthetic Test Vlan - Deprecated VLAN-based synthetic test settings
- Wan
Speedtest SettingSynthetic Test Wan Speedtest - WAN speedtest settings for synthetic tests
- aggressiveness string
- Overall aggressiveness level for synthetic test probes
- custom_
probes map(object) - Custom synthetic probe definitions keyed by probe name
- disabled bool
- Whether synthetic tests are disabled
- lan_
networks list(object) - LAN network probe groups used by synthetic tests
- vlans list(object)
- Deprecated VLAN-based synthetic test settings
- wan_
speedtest object - WAN speedtest settings for synthetic tests
- aggressiveness String
- Overall aggressiveness level for synthetic test probes
- custom
Probes Map<String,SettingSynthetic Test Custom Probes> - Custom synthetic probe definitions keyed by probe name
- disabled Boolean
- Whether synthetic tests are disabled
- lan
Networks List<SettingSynthetic Test Lan Network> - LAN network probe groups used by synthetic tests
- vlans
List<Setting
Synthetic Test Vlan> - Deprecated VLAN-based synthetic test settings
- wan
Speedtest SettingSynthetic Test Wan Speedtest - WAN speedtest settings for synthetic tests
- aggressiveness string
- Overall aggressiveness level for synthetic test probes
- custom
Probes {[key: string]: SettingSynthetic Test Custom Probes} - Custom synthetic probe definitions keyed by probe name
- disabled boolean
- Whether synthetic tests are disabled
- lan
Networks SettingSynthetic Test Lan Network[] - LAN network probe groups used by synthetic tests
- vlans
Setting
Synthetic Test Vlan[] - Deprecated VLAN-based synthetic test settings
- wan
Speedtest SettingSynthetic Test Wan Speedtest - WAN speedtest settings for synthetic tests
- aggressiveness str
- Overall aggressiveness level for synthetic test probes
- custom_
probes Mapping[str, SettingSynthetic Test Custom Probes] - Custom synthetic probe definitions keyed by probe name
- disabled bool
- Whether synthetic tests are disabled
- lan_
networks Sequence[SettingSynthetic Test Lan Network] - LAN network probe groups used by synthetic tests
- vlans
Sequence[Setting
Synthetic Test Vlan] - Deprecated VLAN-based synthetic test settings
- wan_
speedtest SettingSynthetic Test Wan Speedtest - WAN speedtest settings for synthetic tests
- aggressiveness String
- Overall aggressiveness level for synthetic test probes
- custom
Probes Map<Property Map> - Custom synthetic probe definitions keyed by probe name
- disabled Boolean
- Whether synthetic tests are disabled
- lan
Networks List<Property Map> - LAN network probe groups used by synthetic tests
- vlans List<Property Map>
- Deprecated VLAN-based synthetic test settings
- wan
Speedtest Property Map - WAN speedtest settings for synthetic tests
SettingSyntheticTestCustomProbes, SettingSyntheticTestCustomProbesArgs
- Aggressiveness string
- Probe aggressiveness level for this custom synthetic probe
- Target string
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- Threshold int
- Response-time threshold for this custom probe, in milliseconds
- Type string
- Probe type used by this custom synthetic probe
- Aggressiveness string
- Probe aggressiveness level for this custom synthetic probe
- Target string
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- Threshold int
- Response-time threshold for this custom probe, in milliseconds
- Type string
- Probe type used by this custom synthetic probe
- aggressiveness string
- Probe aggressiveness level for this custom synthetic probe
- target string
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- threshold number
- Response-time threshold for this custom probe, in milliseconds
- type string
- Probe type used by this custom synthetic probe
- aggressiveness String
- Probe aggressiveness level for this custom synthetic probe
- target String
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- threshold Integer
- Response-time threshold for this custom probe, in milliseconds
- type String
- Probe type used by this custom synthetic probe
- aggressiveness string
- Probe aggressiveness level for this custom synthetic probe
- target string
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- threshold number
- Response-time threshold for this custom probe, in milliseconds
- type string
- Probe type used by this custom synthetic probe
- aggressiveness str
- Probe aggressiveness level for this custom synthetic probe
- target str
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- threshold int
- Response-time threshold for this custom probe, in milliseconds
- type str
- Probe type used by this custom synthetic probe
- aggressiveness String
- Probe aggressiveness level for this custom synthetic probe
- target String
- Can be URL (e.g. http://x.com, https://x.com:8080/path/to/resource), IP address, or IP:port combination
- threshold Number
- Response-time threshold for this custom probe, in milliseconds
- type String
- Probe type used by this custom synthetic probe
SettingSyntheticTestLanNetwork, SettingSyntheticTestLanNetworkArgs
SettingSyntheticTestVlan, SettingSyntheticTestVlanArgs
- Custom
Test List<string>Urls - Deprecated custom URLs tested by VLAN-based synthetic probes
- Disabled bool
- For some vlans where we don't want this to run
- Probes List<string>
- Synthetic probe names to run for the listed VLANs
- Vlan
Ids List<string> - VLAN identifiers where synthetic probes are run
- Custom
Test []stringUrls - Deprecated custom URLs tested by VLAN-based synthetic probes
- Disabled bool
- For some vlans where we don't want this to run
- Probes []string
- Synthetic probe names to run for the listed VLANs
- Vlan
Ids []string - VLAN identifiers where synthetic probes are run
- custom_
test_ list(string)urls - Deprecated custom URLs tested by VLAN-based synthetic probes
- disabled bool
- For some vlans where we don't want this to run
- probes list(string)
- Synthetic probe names to run for the listed VLANs
- vlan_
ids list(string) - VLAN identifiers where synthetic probes are run
- custom
Test List<String>Urls - Deprecated custom URLs tested by VLAN-based synthetic probes
- disabled Boolean
- For some vlans where we don't want this to run
- probes List<String>
- Synthetic probe names to run for the listed VLANs
- vlan
Ids List<String> - VLAN identifiers where synthetic probes are run
- custom
Test string[]Urls - Deprecated custom URLs tested by VLAN-based synthetic probes
- disabled boolean
- For some vlans where we don't want this to run
- probes string[]
- Synthetic probe names to run for the listed VLANs
- vlan
Ids string[] - VLAN identifiers where synthetic probes are run
- custom_
test_ Sequence[str]urls - Deprecated custom URLs tested by VLAN-based synthetic probes
- disabled bool
- For some vlans where we don't want this to run
- probes Sequence[str]
- Synthetic probe names to run for the listed VLANs
- vlan_
ids Sequence[str] - VLAN identifiers where synthetic probes are run
- custom
Test List<String>Urls - Deprecated custom URLs tested by VLAN-based synthetic probes
- disabled Boolean
- For some vlans where we don't want this to run
- probes List<String>
- Synthetic probe names to run for the listed VLANs
- vlan
Ids List<String> - VLAN identifiers where synthetic probes are run
SettingSyntheticTestWanSpeedtest, SettingSyntheticTestWanSpeedtestArgs
- enabled bool
- Whether scheduled WAN speedtests are enabled
- time_
of_ stringday - Scheduled time of day for WAN speedtests
- enabled bool
- Whether scheduled WAN speedtests are enabled
- time_
of_ strday - Scheduled time of day for WAN speedtests
SettingTuntermMonitoring, SettingTuntermMonitoringArgs
- Host string
- Can be ip, ipv6, hostname
- Port int
- When
protocol==tcp, TCP port checked by the monitoring probe - Protocol string
- Monitoring method used for this tunnel termination check
- Src
Vlan intId - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- Timeout int
- Maximum time for this monitoring check, in seconds
- Host string
- Can be ip, ipv6, hostname
- Port int
- When
protocol==tcp, TCP port checked by the monitoring probe - Protocol string
- Monitoring method used for this tunnel termination check
- Src
Vlan intId - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- Timeout int
- Maximum time for this monitoring check, in seconds
- host string
- Can be ip, ipv6, hostname
- port number
- When
protocol==tcp, TCP port checked by the monitoring probe - protocol string
- Monitoring method used for this tunnel termination check
- src_
vlan_ numberid - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- timeout number
- Maximum time for this monitoring check, in seconds
- host String
- Can be ip, ipv6, hostname
- port Integer
- When
protocol==tcp, TCP port checked by the monitoring probe - protocol String
- Monitoring method used for this tunnel termination check
- src
Vlan IntegerId - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- timeout Integer
- Maximum time for this monitoring check, in seconds
- host string
- Can be ip, ipv6, hostname
- port number
- When
protocol==tcp, TCP port checked by the monitoring probe - protocol string
- Monitoring method used for this tunnel termination check
- src
Vlan numberId - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- timeout number
- Maximum time for this monitoring check, in seconds
- host str
- Can be ip, ipv6, hostname
- port int
- When
protocol==tcp, TCP port checked by the monitoring probe - protocol str
- Monitoring method used for this tunnel termination check
- src_
vlan_ intid - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- timeout int
- Maximum time for this monitoring check, in seconds
- host String
- Can be ip, ipv6, hostname
- port Number
- When
protocol==tcp, TCP port checked by the monitoring probe - protocol String
- Monitoring method used for this tunnel termination check
- src
Vlan NumberId - Optional source for the monitoring check, vlanId configured in tunterm_other_ip_configs
- timeout Number
- Maximum time for this monitoring check, in seconds
SettingTuntermMulticastConfig, SettingTuntermMulticastConfigArgs
- Mdns
Pulumi.
Juniper Mist. Site. Inputs. Setting Tunterm Multicast Config Mdns - Multicast DNS forwarding settings for tunneled VLANs
- Multicast
All bool - Whether all multicast traffic is forwarded through tunnel termination
- Ssdp
Pulumi.
Juniper Mist. Site. Inputs. Setting Tunterm Multicast Config Ssdp - Simple Service Discovery Protocol forwarding settings for tunneled VLANs
- Mdns
Setting
Tunterm Multicast Config Mdns - Multicast DNS forwarding settings for tunneled VLANs
- Multicast
All bool - Whether all multicast traffic is forwarded through tunnel termination
- Ssdp
Setting
Tunterm Multicast Config Ssdp - Simple Service Discovery Protocol forwarding settings for tunneled VLANs
- mdns object
- Multicast DNS forwarding settings for tunneled VLANs
- multicast_
all bool - Whether all multicast traffic is forwarded through tunnel termination
- ssdp object
- Simple Service Discovery Protocol forwarding settings for tunneled VLANs
- mdns
Setting
Tunterm Multicast Config Mdns - Multicast DNS forwarding settings for tunneled VLANs
- multicast
All Boolean - Whether all multicast traffic is forwarded through tunnel termination
- ssdp
Setting
Tunterm Multicast Config Ssdp - Simple Service Discovery Protocol forwarding settings for tunneled VLANs
- mdns
Setting
Tunterm Multicast Config Mdns - Multicast DNS forwarding settings for tunneled VLANs
- multicast
All boolean - Whether all multicast traffic is forwarded through tunnel termination
- ssdp
Setting
Tunterm Multicast Config Ssdp - Simple Service Discovery Protocol forwarding settings for tunneled VLANs
- mdns
Setting
Tunterm Multicast Config Mdns - Multicast DNS forwarding settings for tunneled VLANs
- multicast_
all bool - Whether all multicast traffic is forwarded through tunnel termination
- ssdp
Setting
Tunterm Multicast Config Ssdp - Simple Service Discovery Protocol forwarding settings for tunneled VLANs
- mdns Property Map
- Multicast DNS forwarding settings for tunneled VLANs
- multicast
All Boolean - Whether all multicast traffic is forwarded through tunnel termination
- ssdp Property Map
- Simple Service Discovery Protocol forwarding settings for tunneled VLANs
SettingTuntermMulticastConfigMdns, SettingTuntermMulticastConfigMdnsArgs
SettingTuntermMulticastConfigSsdp, SettingTuntermMulticastConfigSsdpArgs
SettingUplinkPortConfig, SettingUplinkPortConfigArgs
- Dot1x bool
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- Keep
Wlans boolUp If Down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
- Dot1x bool
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- Keep
Wlans boolUp If Down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
- dot1x bool
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keep_
wlans_ boolup_ if_ down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
- dot1x Boolean
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keep
Wlans BooleanUp If Down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
- dot1x boolean
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keep
Wlans booleanUp If Down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
- dot1x bool
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keep_
wlans_ boolup_ if_ down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
- dot1x Boolean
- Whether to do 802.1x against uplink switch. When enabled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keep
Wlans BooleanUp If Down - By default, WLANs are disabled when uplink is down. In some scenario, like SiteSurvey, one would want the AP to keep sending beacons.
SettingVarsAnnotations, SettingVarsAnnotationsArgs
SettingVna, SettingVnaArgs
- Enabled bool
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
- Enabled bool
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
- enabled bool
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
- enabled Boolean
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
- enabled boolean
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
- enabled bool
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
- enabled Boolean
- Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
SettingVsInstance, SettingVsInstanceArgs
- Networks List<string>
- List of network names included in this virtual-switch instance
- Networks []string
- List of network names included in this virtual-switch instance
- networks list(string)
- List of network names included in this virtual-switch instance
- networks List<String>
- List of network names included in this virtual-switch instance
- networks string[]
- List of network names included in this virtual-switch instance
- networks Sequence[str]
- List of network names included in this virtual-switch instance
- networks List<String>
- List of network names included in this virtual-switch instance
SettingWanVna, SettingWanVnaArgs
- Enabled bool
- Whether WAN VNA is enabled for the site
- Enabled bool
- Whether WAN VNA is enabled for the site
- enabled bool
- Whether WAN VNA is enabled for the site
- enabled Boolean
- Whether WAN VNA is enabled for the site
- enabled boolean
- Whether WAN VNA is enabled for the site
- enabled bool
- Whether WAN VNA is enabled for the site
- enabled Boolean
- Whether WAN VNA is enabled for the site
SettingWids, SettingWidsArgs
- Repeated
Auth Pulumi.Failures Juniper Mist. Site. Inputs. Setting Wids Repeated Auth Failures - Detection settings for repeated authentication failures
- Repeated
Auth SettingFailures Wids Repeated Auth Failures - Detection settings for repeated authentication failures
- repeated_
auth_ objectfailures - Detection settings for repeated authentication failures
- repeated
Auth SettingFailures Wids Repeated Auth Failures - Detection settings for repeated authentication failures
- repeated
Auth SettingFailures Wids Repeated Auth Failures - Detection settings for repeated authentication failures
- repeated_
auth_ Settingfailures Wids Repeated Auth Failures - Detection settings for repeated authentication failures
- repeated
Auth Property MapFailures - Detection settings for repeated authentication failures
SettingWidsRepeatedAuthFailures, SettingWidsRepeatedAuthFailuresArgs
SettingWifi, SettingWifiArgs
- Cisco
Enabled bool - Whether Cisco compatibility features are enabled for site Wi-Fi
- Disable11k bool
- Whether to disable 11k
- Disable
Radios boolWhen Power Constrained - Whether AP radios are disabled when AP power is constrained
- Enable
Arp boolSpoof Check - When proxyArp is enabled, check for arp spoofing.
- bool
- Whether shared radio scanning is enabled for site Wi-Fi
- Enabled bool
- Enable Wi-Fi feature (using SUB-MAN license)
- Locate
Connected bool - Whether to locate connected clients
- Locate
Unconnected bool - Whether to locate unconnected clients
- Mesh
Allow boolDfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- Mesh
Enable boolCrm - Used to enable/disable CRM
- Mesh
Enabled bool - Whether to enable Mesh feature for the site
- Mesh
Psk string - Optional passphrase of mesh networking, default is generated randomly
- Mesh
Ssid string - Optional ssid of mesh networking, default is based on site_id
- Proxy
Arp string - ARP proxy mode for site Wi-Fi
- Cisco
Enabled bool - Whether Cisco compatibility features are enabled for site Wi-Fi
- Disable11k bool
- Whether to disable 11k
- Disable
Radios boolWhen Power Constrained - Whether AP radios are disabled when AP power is constrained
- Enable
Arp boolSpoof Check - When proxyArp is enabled, check for arp spoofing.
- bool
- Whether shared radio scanning is enabled for site Wi-Fi
- Enabled bool
- Enable Wi-Fi feature (using SUB-MAN license)
- Locate
Connected bool - Whether to locate connected clients
- Locate
Unconnected bool - Whether to locate unconnected clients
- Mesh
Allow boolDfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- Mesh
Enable boolCrm - Used to enable/disable CRM
- Mesh
Enabled bool - Whether to enable Mesh feature for the site
- Mesh
Psk string - Optional passphrase of mesh networking, default is generated randomly
- Mesh
Ssid string - Optional ssid of mesh networking, default is based on site_id
- Proxy
Arp string - ARP proxy mode for site Wi-Fi
- cisco_
enabled bool - Whether Cisco compatibility features are enabled for site Wi-Fi
- disable11k bool
- Whether to disable 11k
- disable_
radios_ boolwhen_ power_ constrained - Whether AP radios are disabled when AP power is constrained
- enable_
arp_ boolspoof_ check - When proxyArp is enabled, check for arp spoofing.
- bool
- Whether shared radio scanning is enabled for site Wi-Fi
- enabled bool
- Enable Wi-Fi feature (using SUB-MAN license)
- locate_
connected bool - Whether to locate connected clients
- locate_
unconnected bool - Whether to locate unconnected clients
- mesh_
allow_ booldfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- mesh_
enable_ boolcrm - Used to enable/disable CRM
- mesh_
enabled bool - Whether to enable Mesh feature for the site
- mesh_
psk string - Optional passphrase of mesh networking, default is generated randomly
- mesh_
ssid string - Optional ssid of mesh networking, default is based on site_id
- proxy_
arp string - ARP proxy mode for site Wi-Fi
- cisco
Enabled Boolean - Whether Cisco compatibility features are enabled for site Wi-Fi
- disable11k Boolean
- Whether to disable 11k
- disable
Radios BooleanWhen Power Constrained - Whether AP radios are disabled when AP power is constrained
- enable
Arp BooleanSpoof Check - When proxyArp is enabled, check for arp spoofing.
- Boolean
- Whether shared radio scanning is enabled for site Wi-Fi
- enabled Boolean
- Enable Wi-Fi feature (using SUB-MAN license)
- locate
Connected Boolean - Whether to locate connected clients
- locate
Unconnected Boolean - Whether to locate unconnected clients
- mesh
Allow BooleanDfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- mesh
Enable BooleanCrm - Used to enable/disable CRM
- mesh
Enabled Boolean - Whether to enable Mesh feature for the site
- mesh
Psk String - Optional passphrase of mesh networking, default is generated randomly
- mesh
Ssid String - Optional ssid of mesh networking, default is based on site_id
- proxy
Arp String - ARP proxy mode for site Wi-Fi
- cisco
Enabled boolean - Whether Cisco compatibility features are enabled for site Wi-Fi
- disable11k boolean
- Whether to disable 11k
- disable
Radios booleanWhen Power Constrained - Whether AP radios are disabled when AP power is constrained
- enable
Arp booleanSpoof Check - When proxyArp is enabled, check for arp spoofing.
- boolean
- Whether shared radio scanning is enabled for site Wi-Fi
- enabled boolean
- Enable Wi-Fi feature (using SUB-MAN license)
- locate
Connected boolean - Whether to locate connected clients
- locate
Unconnected boolean - Whether to locate unconnected clients
- mesh
Allow booleanDfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- mesh
Enable booleanCrm - Used to enable/disable CRM
- mesh
Enabled boolean - Whether to enable Mesh feature for the site
- mesh
Psk string - Optional passphrase of mesh networking, default is generated randomly
- mesh
Ssid string - Optional ssid of mesh networking, default is based on site_id
- proxy
Arp string - ARP proxy mode for site Wi-Fi
- cisco_
enabled bool - Whether Cisco compatibility features are enabled for site Wi-Fi
- disable11k bool
- Whether to disable 11k
- disable_
radios_ boolwhen_ power_ constrained - Whether AP radios are disabled when AP power is constrained
- enable_
arp_ boolspoof_ check - When proxyArp is enabled, check for arp spoofing.
- bool
- Whether shared radio scanning is enabled for site Wi-Fi
- enabled bool
- Enable Wi-Fi feature (using SUB-MAN license)
- locate_
connected bool - Whether to locate connected clients
- locate_
unconnected bool - Whether to locate unconnected clients
- mesh_
allow_ booldfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- mesh_
enable_ boolcrm - Used to enable/disable CRM
- mesh_
enabled bool - Whether to enable Mesh feature for the site
- mesh_
psk str - Optional passphrase of mesh networking, default is generated randomly
- mesh_
ssid str - Optional ssid of mesh networking, default is based on site_id
- proxy_
arp str - ARP proxy mode for site Wi-Fi
- cisco
Enabled Boolean - Whether Cisco compatibility features are enabled for site Wi-Fi
- disable11k Boolean
- Whether to disable 11k
- disable
Radios BooleanWhen Power Constrained - Whether AP radios are disabled when AP power is constrained
- enable
Arp BooleanSpoof Check - When proxyArp is enabled, check for arp spoofing.
- Boolean
- Whether shared radio scanning is enabled for site Wi-Fi
- enabled Boolean
- Enable Wi-Fi feature (using SUB-MAN license)
- locate
Connected Boolean - Whether to locate connected clients
- locate
Unconnected Boolean - Whether to locate unconnected clients
- mesh
Allow BooleanDfs - Whether to allow Mesh to use DFS channels. For DFS channels, Remote Mesh AP would have to do CAC when scanning for new Base AP, which is slow and will disrupt the connection. If roaming is desired, keep it disabled.
- mesh
Enable BooleanCrm - Used to enable/disable CRM
- mesh
Enabled Boolean - Whether to enable Mesh feature for the site
- mesh
Psk String - Optional passphrase of mesh networking, default is generated randomly
- mesh
Ssid String - Optional ssid of mesh networking, default is based on site_id
- proxy
Arp String - ARP proxy mode for site Wi-Fi
SettingWiredVna, SettingWiredVnaArgs
- Enabled bool
- Whether Wired VNA is enabled for the site
- Enabled bool
- Whether Wired VNA is enabled for the site
- enabled bool
- Whether Wired VNA is enabled for the site
- enabled Boolean
- Whether Wired VNA is enabled for the site
- enabled boolean
- Whether Wired VNA is enabled for the site
- enabled bool
- Whether Wired VNA is enabled for the site
- enabled Boolean
- Whether Wired VNA is enabled for the site
SettingZoneOccupancyAlert, SettingZoneOccupancyAlertArgs
- Email
Notifiers List<string> - Notification email recipients for zone occupancy alerts
- Enabled bool
- Indicate whether zone occupancy alert is enabled for the site
- Threshold int
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
- Email
Notifiers []string - Notification email recipients for zone occupancy alerts
- Enabled bool
- Indicate whether zone occupancy alert is enabled for the site
- Threshold int
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
- email_
notifiers list(string) - Notification email recipients for zone occupancy alerts
- enabled bool
- Indicate whether zone occupancy alert is enabled for the site
- threshold number
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
- email
Notifiers List<String> - Notification email recipients for zone occupancy alerts
- enabled Boolean
- Indicate whether zone occupancy alert is enabled for the site
- threshold Integer
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
- email
Notifiers string[] - Notification email recipients for zone occupancy alerts
- enabled boolean
- Indicate whether zone occupancy alert is enabled for the site
- threshold number
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
- email_
notifiers Sequence[str] - Notification email recipients for zone occupancy alerts
- enabled bool
- Indicate whether zone occupancy alert is enabled for the site
- threshold int
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
- email
Notifiers List<String> - Notification email recipients for zone occupancy alerts
- enabled Boolean
- Indicate whether zone occupancy alert is enabled for the site
- threshold Number
- Sending zone-occupancy-alert webhook message only if a zone stays non-compliant (i.e. actual occupancy > occupancy_limit) for a minimum duration specified in the threshold, in minutes
Import
Using pulumi import, import junipermist.site.Setting with:
Site Setting can be imported by specifying the siteId
$ pulumi import junipermist:site/setting:Setting site_setting_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a
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 Friday, Jul 10, 2026 by Pulumi