junipermist.site.Setting
Explore with Pulumi AI
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.Setting resource can be configured per site. If multiple ones are configured, only the last one defined we be succesfully deployed to Mist
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.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.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var siteOne = new Setting("siteOne", SettingArgs.builder()
            .siteId(terraformSite.id())
            .apUpdownThreshold(5)
            .deviceUpdownThreshold(5)
            .autoUpgrade(SettingAutoUpgradeArgs.builder()
                .enabled(true)
                .day_of_week("tue")
                .time_of_day("02:00")
                .version("beta")
                .build())
            .configAutoRevert(true)
            .persistConfigOnDevice(true)
            .proxy(SettingProxyArgs.builder()
                .url("http://myproxy:3128")
                .build())
            .rogue(SettingRogueArgs.builder()
                .enabled(true)
                .honeypot_enabled(true)
                .min_duration(5)
                .build())
            .build());
    }
}
resources:
  siteOne:
    type: junipermist:site:Setting
    name: site_one
    properties:
      siteId: ${terraformSite.id}
      apUpdownThreshold: 5
      deviceUpdownThreshold: 5
      autoUpgrade:
        enabled: true
        day_of_week: tue
        time_of_day: 02:00
        version: beta
      configAutoRevert: true
      persistConfigOnDevice: 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,
            rogue: Optional[SettingRogueArgs] = None,
            wired_vna: Optional[SettingWiredVnaArgs] = None,
            ble_config: Optional[SettingBleConfigArgs] = None,
            rtsa: Optional[SettingRtsaArgs] = None,
            config_push_policy: Optional[SettingConfigPushPolicyArgs] = None,
            critical_url_monitoring: Optional[SettingCriticalUrlMonitoringArgs] = None,
            device_updown_threshold: Optional[int] = None,
            engagement: Optional[SettingEngagementArgs] = None,
            gateway_mgmt: Optional[SettingGatewayMgmtArgs] = None,
            gateway_updown_threshold: Optional[int] = None,
            juniper_srx: Optional[SettingJuniperSrxArgs] = None,
            led: Optional[SettingLedArgs] = 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,
            analytic: Optional[SettingAnalyticArgs] = None,
            config_auto_revert: Optional[bool] = None,
            auto_upgrade: Optional[SettingAutoUpgradeArgs] = None,
            skyatp: Optional[SettingSkyatpArgs] = None,
            ap_updown_threshold: Optional[int] = 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,
            uplink_port_config: Optional[SettingUplinkPortConfigArgs] = None,
            vars: Optional[Mapping[str, str]] = None,
            vna: Optional[SettingVnaArgs] = None,
            vs_instance: Optional[Mapping[str, SettingVsInstanceArgs]] = None,
            wan_vna: Optional[SettingWanVnaArgs] = None,
            wids: Optional[SettingWidsArgs] = None,
            wifi: Optional[SettingWifiArgs] = None,
            simple_alert: Optional[SettingSimpleAlertArgs] = 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.
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",
    Rogue = new JuniperMist.Site.Inputs.SettingRogueArgs
    {
        Enabled = false,
        HoneypotEnabled = false,
        MinDuration = 0,
        MinRssi = 0,
        WhitelistedBssids = new[]
        {
            "string",
        },
        WhitelistedSsids = new[]
        {
            "string",
        },
    },
    WiredVna = new JuniperMist.Site.Inputs.SettingWiredVnaArgs
    {
        Enabled = false,
    },
    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",
    },
    Rtsa = new JuniperMist.Site.Inputs.SettingRtsaArgs
    {
        AppWaking = false,
        DisableDeadReckoning = false,
        DisablePressureSensor = false,
        Enabled = false,
        TrackAsset = 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,
    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,
        ProbeHosts = 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,
            TrustedHosts = new[]
            {
                "string",
            },
        },
        RootPassword = "string",
        SecurityLogSourceAddress = "string",
        SecurityLogSourceInterface = "string",
    },
    GatewayUpdownThreshold = 0,
    JuniperSrx = new JuniperMist.Site.Inputs.SettingJuniperSrxArgs
    {
        Gateways = new[]
        {
            new JuniperMist.Site.Inputs.SettingJuniperSrxGatewayArgs
            {
                ApiKey = "string",
                ApiUrl = "string",
            },
        },
        SendMistNacUserInfo = false,
    },
    Led = new JuniperMist.Site.Inputs.SettingLedArgs
    {
        Brightness = 0,
        Enabled = false,
    },
    Occupancy = new JuniperMist.Site.Inputs.SettingOccupancyArgs
    {
        AssetsEnabled = false,
        ClientsEnabled = false,
        MinDuration = 0,
        SdkclientsEnabled = false,
        UnconnectedClientsEnabled = false,
    },
    PersistConfigOnDevice = false,
    Proxy = new JuniperMist.Site.Inputs.SettingProxyArgs
    {
        Url = "string",
    },
    RemoveExistingConfigs = false,
    ReportGatt = false,
    Analytic = new JuniperMist.Site.Inputs.SettingAnalyticArgs
    {
        Enabled = false,
    },
    ConfigAutoRevert = false,
    AutoUpgrade = new JuniperMist.Site.Inputs.SettingAutoUpgradeArgs
    {
        CustomVersions = 
        {
            { "string", "string" },
        },
        DayOfWeek = "string",
        Enabled = false,
        TimeOfDay = "string",
        Version = "string",
    },
    Skyatp = new JuniperMist.Site.Inputs.SettingSkyatpArgs
    {
        Enabled = false,
        SendIpMacMapping = false,
    },
    ApUpdownThreshold = 0,
    SrxApp = new JuniperMist.Site.Inputs.SettingSrxAppArgs
    {
        Enabled = false,
    },
    SshKeys = new[]
    {
        "string",
    },
    Ssr = new JuniperMist.Site.Inputs.SettingSsrArgs
    {
        ConductorHosts = new[]
        {
            "string",
        },
        DisableStats = false,
    },
    SwitchUpdownThreshold = 0,
    SyntheticTest = new JuniperMist.Site.Inputs.SettingSyntheticTestArgs
    {
        Disabled = false,
        Vlans = new[]
        {
            new JuniperMist.Site.Inputs.SettingSyntheticTestVlanArgs
            {
                CustomTestUrls = new[]
                {
                    "string",
                },
                Disabled = false,
                VlanIds = new[]
                {
                    "string",
                },
            },
        },
        WanSpeedtest = new JuniperMist.Site.Inputs.SettingSyntheticTestWanSpeedtestArgs
        {
            Enabled = false,
            TimeOfDay = "string",
        },
    },
    TrackAnonymousDevices = false,
    UplinkPortConfig = new JuniperMist.Site.Inputs.SettingUplinkPortConfigArgs
    {
        Dot1x = false,
        KeepWlansUpIfDown = false,
    },
    Vars = 
    {
        { "string", "string" },
    },
    Vna = new JuniperMist.Site.Inputs.SettingVnaArgs
    {
        Enabled = false,
    },
    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",
    },
    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,
        },
    },
    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"),
	Rogue: &site.SettingRogueArgs{
		Enabled:         pulumi.Bool(false),
		HoneypotEnabled: pulumi.Bool(false),
		MinDuration:     pulumi.Int(0),
		MinRssi:         pulumi.Int(0),
		WhitelistedBssids: pulumi.StringArray{
			pulumi.String("string"),
		},
		WhitelistedSsids: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	WiredVna: &site.SettingWiredVnaArgs{
		Enabled: pulumi.Bool(false),
	},
	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"),
	},
	Rtsa: &site.SettingRtsaArgs{
		AppWaking:             pulumi.Bool(false),
		DisableDeadReckoning:  pulumi.Bool(false),
		DisablePressureSensor: pulumi.Bool(false),
		Enabled:               pulumi.Bool(false),
		TrackAsset:            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),
	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),
		ProbeHosts: 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),
			TrustedHosts: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		RootPassword:               pulumi.String("string"),
		SecurityLogSourceAddress:   pulumi.String("string"),
		SecurityLogSourceInterface: pulumi.String("string"),
	},
	GatewayUpdownThreshold: pulumi.Int(0),
	JuniperSrx: &site.SettingJuniperSrxArgs{
		Gateways: site.SettingJuniperSrxGatewayArray{
			&site.SettingJuniperSrxGatewayArgs{
				ApiKey: pulumi.String("string"),
				ApiUrl: pulumi.String("string"),
			},
		},
		SendMistNacUserInfo: pulumi.Bool(false),
	},
	Led: &site.SettingLedArgs{
		Brightness: pulumi.Int(0),
		Enabled:    pulumi.Bool(false),
	},
	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{
		Url: pulumi.String("string"),
	},
	RemoveExistingConfigs: pulumi.Bool(false),
	ReportGatt:            pulumi.Bool(false),
	Analytic: &site.SettingAnalyticArgs{
		Enabled: pulumi.Bool(false),
	},
	ConfigAutoRevert: pulumi.Bool(false),
	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"),
	},
	Skyatp: &site.SettingSkyatpArgs{
		Enabled:          pulumi.Bool(false),
		SendIpMacMapping: pulumi.Bool(false),
	},
	ApUpdownThreshold: pulumi.Int(0),
	SrxApp: &site.SettingSrxAppArgs{
		Enabled: pulumi.Bool(false),
	},
	SshKeys: pulumi.StringArray{
		pulumi.String("string"),
	},
	Ssr: &site.SettingSsrArgs{
		ConductorHosts: pulumi.StringArray{
			pulumi.String("string"),
		},
		DisableStats: pulumi.Bool(false),
	},
	SwitchUpdownThreshold: pulumi.Int(0),
	SyntheticTest: &site.SettingSyntheticTestArgs{
		Disabled: pulumi.Bool(false),
		Vlans: site.SettingSyntheticTestVlanArray{
			&site.SettingSyntheticTestVlanArgs{
				CustomTestUrls: pulumi.StringArray{
					pulumi.String("string"),
				},
				Disabled: pulumi.Bool(false),
				VlanIds: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
		WanSpeedtest: &site.SettingSyntheticTestWanSpeedtestArgs{
			Enabled:   pulumi.Bool(false),
			TimeOfDay: pulumi.String("string"),
		},
	},
	TrackAnonymousDevices: pulumi.Bool(false),
	UplinkPortConfig: &site.SettingUplinkPortConfigArgs{
		Dot1x:             pulumi.Bool(false),
		KeepWlansUpIfDown: pulumi.Bool(false),
	},
	Vars: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Vna: &site.SettingVnaArgs{
		Enabled: pulumi.Bool(false),
	},
	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"),
	},
	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),
		},
	},
	ZoneOccupancyAlert: &site.SettingZoneOccupancyAlertArgs{
		EmailNotifiers: pulumi.StringArray{
			pulumi.String("string"),
		},
		Enabled:   pulumi.Bool(false),
		Threshold: pulumi.Int(0),
	},
})
var junipermistSettingResource = new Setting("junipermistSettingResource", SettingArgs.builder()
    .siteId("string")
    .rogue(SettingRogueArgs.builder()
        .enabled(false)
        .honeypotEnabled(false)
        .minDuration(0)
        .minRssi(0)
        .whitelistedBssids("string")
        .whitelistedSsids("string")
        .build())
    .wiredVna(SettingWiredVnaArgs.builder()
        .enabled(false)
        .build())
    .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())
    .rtsa(SettingRtsaArgs.builder()
        .appWaking(false)
        .disableDeadReckoning(false)
        .disablePressureSensor(false)
        .enabled(false)
        .trackAsset(false)
        .build())
    .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)
    .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)
        .probeHosts("string")
        .protectRe(SettingGatewayMgmtProtectReArgs.builder()
            .allowedServices("string")
            .customs(SettingGatewayMgmtProtectReCustomArgs.builder()
                .subnets("string")
                .portRange("string")
                .protocol("string")
                .build())
            .enabled(false)
            .trustedHosts("string")
            .build())
        .rootPassword("string")
        .securityLogSourceAddress("string")
        .securityLogSourceInterface("string")
        .build())
    .gatewayUpdownThreshold(0)
    .juniperSrx(SettingJuniperSrxArgs.builder()
        .gateways(SettingJuniperSrxGatewayArgs.builder()
            .apiKey("string")
            .apiUrl("string")
            .build())
        .sendMistNacUserInfo(false)
        .build())
    .led(SettingLedArgs.builder()
        .brightness(0)
        .enabled(false)
        .build())
    .occupancy(SettingOccupancyArgs.builder()
        .assetsEnabled(false)
        .clientsEnabled(false)
        .minDuration(0)
        .sdkclientsEnabled(false)
        .unconnectedClientsEnabled(false)
        .build())
    .persistConfigOnDevice(false)
    .proxy(SettingProxyArgs.builder()
        .url("string")
        .build())
    .removeExistingConfigs(false)
    .reportGatt(false)
    .analytic(SettingAnalyticArgs.builder()
        .enabled(false)
        .build())
    .configAutoRevert(false)
    .autoUpgrade(SettingAutoUpgradeArgs.builder()
        .customVersions(Map.of("string", "string"))
        .dayOfWeek("string")
        .enabled(false)
        .timeOfDay("string")
        .version("string")
        .build())
    .skyatp(SettingSkyatpArgs.builder()
        .enabled(false)
        .sendIpMacMapping(false)
        .build())
    .apUpdownThreshold(0)
    .srxApp(SettingSrxAppArgs.builder()
        .enabled(false)
        .build())
    .sshKeys("string")
    .ssr(SettingSsrArgs.builder()
        .conductorHosts("string")
        .disableStats(false)
        .build())
    .switchUpdownThreshold(0)
    .syntheticTest(SettingSyntheticTestArgs.builder()
        .disabled(false)
        .vlans(SettingSyntheticTestVlanArgs.builder()
            .customTestUrls("string")
            .disabled(false)
            .vlanIds("string")
            .build())
        .wanSpeedtest(SettingSyntheticTestWanSpeedtestArgs.builder()
            .enabled(false)
            .timeOfDay("string")
            .build())
        .build())
    .trackAnonymousDevices(false)
    .uplinkPortConfig(SettingUplinkPortConfigArgs.builder()
        .dot1x(false)
        .keepWlansUpIfDown(false)
        .build())
    .vars(Map.of("string", "string"))
    .vna(SettingVnaArgs.builder()
        .enabled(false)
        .build())
    .vsInstance(Map.of("string", Map.of("networks", "string")))
    .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())
    .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())
    .zoneOccupancyAlert(SettingZoneOccupancyAlertArgs.builder()
        .emailNotifiers("string")
        .enabled(false)
        .threshold(0)
        .build())
    .build());
junipermist_setting_resource = junipermist.site.Setting("junipermistSettingResource",
    site_id="string",
    rogue={
        "enabled": False,
        "honeypot_enabled": False,
        "min_duration": 0,
        "min_rssi": 0,
        "whitelisted_bssids": ["string"],
        "whitelisted_ssids": ["string"],
    },
    wired_vna={
        "enabled": False,
    },
    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",
    },
    rtsa={
        "app_waking": False,
        "disable_dead_reckoning": False,
        "disable_pressure_sensor": False,
        "enabled": False,
        "track_asset": 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,
    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,
        "probe_hosts": ["string"],
        "protect_re": {
            "allowed_services": ["string"],
            "customs": [{
                "subnets": ["string"],
                "port_range": "string",
                "protocol": "string",
            }],
            "enabled": False,
            "trusted_hosts": ["string"],
        },
        "root_password": "string",
        "security_log_source_address": "string",
        "security_log_source_interface": "string",
    },
    gateway_updown_threshold=0,
    juniper_srx={
        "gateways": [{
            "api_key": "string",
            "api_url": "string",
        }],
        "send_mist_nac_user_info": False,
    },
    led={
        "brightness": 0,
        "enabled": False,
    },
    occupancy={
        "assets_enabled": False,
        "clients_enabled": False,
        "min_duration": 0,
        "sdkclients_enabled": False,
        "unconnected_clients_enabled": False,
    },
    persist_config_on_device=False,
    proxy={
        "url": "string",
    },
    remove_existing_configs=False,
    report_gatt=False,
    analytic={
        "enabled": False,
    },
    config_auto_revert=False,
    auto_upgrade={
        "custom_versions": {
            "string": "string",
        },
        "day_of_week": "string",
        "enabled": False,
        "time_of_day": "string",
        "version": "string",
    },
    skyatp={
        "enabled": False,
        "send_ip_mac_mapping": False,
    },
    ap_updown_threshold=0,
    srx_app={
        "enabled": False,
    },
    ssh_keys=["string"],
    ssr={
        "conductor_hosts": ["string"],
        "disable_stats": False,
    },
    switch_updown_threshold=0,
    synthetic_test={
        "disabled": False,
        "vlans": [{
            "custom_test_urls": ["string"],
            "disabled": False,
            "vlan_ids": ["string"],
        }],
        "wan_speedtest": {
            "enabled": False,
            "time_of_day": "string",
        },
    },
    track_anonymous_devices=False,
    uplink_port_config={
        "dot1x": False,
        "keep_wlans_up_if_down": False,
    },
    vars={
        "string": "string",
    },
    vna={
        "enabled": False,
    },
    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",
    },
    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,
        },
    },
    zone_occupancy_alert={
        "email_notifiers": ["string"],
        "enabled": False,
        "threshold": 0,
    })
const junipermistSettingResource = new junipermist.site.Setting("junipermistSettingResource", {
    siteId: "string",
    rogue: {
        enabled: false,
        honeypotEnabled: false,
        minDuration: 0,
        minRssi: 0,
        whitelistedBssids: ["string"],
        whitelistedSsids: ["string"],
    },
    wiredVna: {
        enabled: false,
    },
    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",
    },
    rtsa: {
        appWaking: false,
        disableDeadReckoning: false,
        disablePressureSensor: false,
        enabled: false,
        trackAsset: 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,
    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,
        probeHosts: ["string"],
        protectRe: {
            allowedServices: ["string"],
            customs: [{
                subnets: ["string"],
                portRange: "string",
                protocol: "string",
            }],
            enabled: false,
            trustedHosts: ["string"],
        },
        rootPassword: "string",
        securityLogSourceAddress: "string",
        securityLogSourceInterface: "string",
    },
    gatewayUpdownThreshold: 0,
    juniperSrx: {
        gateways: [{
            apiKey: "string",
            apiUrl: "string",
        }],
        sendMistNacUserInfo: false,
    },
    led: {
        brightness: 0,
        enabled: false,
    },
    occupancy: {
        assetsEnabled: false,
        clientsEnabled: false,
        minDuration: 0,
        sdkclientsEnabled: false,
        unconnectedClientsEnabled: false,
    },
    persistConfigOnDevice: false,
    proxy: {
        url: "string",
    },
    removeExistingConfigs: false,
    reportGatt: false,
    analytic: {
        enabled: false,
    },
    configAutoRevert: false,
    autoUpgrade: {
        customVersions: {
            string: "string",
        },
        dayOfWeek: "string",
        enabled: false,
        timeOfDay: "string",
        version: "string",
    },
    skyatp: {
        enabled: false,
        sendIpMacMapping: false,
    },
    apUpdownThreshold: 0,
    srxApp: {
        enabled: false,
    },
    sshKeys: ["string"],
    ssr: {
        conductorHosts: ["string"],
        disableStats: false,
    },
    switchUpdownThreshold: 0,
    syntheticTest: {
        disabled: false,
        vlans: [{
            customTestUrls: ["string"],
            disabled: false,
            vlanIds: ["string"],
        }],
        wanSpeedtest: {
            enabled: false,
            timeOfDay: "string",
        },
    },
    trackAnonymousDevices: false,
    uplinkPortConfig: {
        dot1x: false,
        keepWlansUpIfDown: false,
    },
    vars: {
        string: "string",
    },
    vna: {
        enabled: false,
    },
    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",
    },
    simpleAlert: {
        arpFailure: {
            clientCount: 0,
            duration: 0,
            incidentCount: 0,
        },
        dhcpFailure: {
            clientCount: 0,
            duration: 0,
            incidentCount: 0,
        },
        dnsFailure: {
            clientCount: 0,
            duration: 0,
            incidentCount: 0,
        },
    },
    zoneOccupancyAlert: {
        emailNotifiers: ["string"],
        enabled: false,
        threshold: 0,
    },
});
type: junipermist:site:Setting
properties:
    analytic:
        enabled: false
    apUpdownThreshold: 0
    autoUpgrade:
        customVersions:
            string: string
        dayOfWeek: string
        enabled: false
        timeOfDay: string
        version: string
    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
    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
        probeHosts:
            - string
        protectRe:
            allowedServices:
                - string
            customs:
                - portRange: string
                  protocol: string
                  subnets:
                    - string
            enabled: false
            trustedHosts:
                - string
        rootPassword: string
        securityLogSourceAddress: string
        securityLogSourceInterface: string
    gatewayUpdownThreshold: 0
    juniperSrx:
        gateways:
            - apiKey: string
              apiUrl: string
        sendMistNacUserInfo: false
    led:
        brightness: 0
        enabled: false
    occupancy:
        assetsEnabled: false
        clientsEnabled: false
        minDuration: 0
        sdkclientsEnabled: false
        unconnectedClientsEnabled: false
    persistConfigOnDevice: false
    proxy:
        url: string
    removeExistingConfigs: false
    reportGatt: false
    rogue:
        enabled: false
        honeypotEnabled: false
        minDuration: 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
    srxApp:
        enabled: false
    sshKeys:
        - string
    ssr:
        conductorHosts:
            - string
        disableStats: false
    switchUpdownThreshold: 0
    syntheticTest:
        disabled: false
        vlans:
            - customTestUrls:
                - string
              disabled: false
              vlanIds:
                - string
        wanSpeedtest:
            enabled: false
            timeOfDay: string
    trackAnonymousDevices: false
    uplinkPortConfig:
        dot1x: false
        keepWlansUpIfDown: false
    vars:
        string: string
    vna:
        enabled: false
    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:
- SiteId string
- Analytic
Pulumi.Juniper Mist. Site. Inputs. Setting Analytic 
- ApUpdown intThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- AutoUpgrade Pulumi.Juniper Mist. Site. Inputs. Setting Auto Upgrade 
- Auto Upgrade Settings
- BleConfig Pulumi.Juniper Mist. Site. Inputs. Setting Ble Config 
- BLE AP settings
- ConfigAuto boolRevert 
- Whether to enable ap auto config revert
- ConfigPush Pulumi.Policy Juniper Mist. Site. Inputs. Setting Config Push Policy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- CriticalUrl Pulumi.Monitoring Juniper Mist. Site. Inputs. Setting Critical Url Monitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- DeviceUpdown intThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Engagement
Pulumi.Juniper Mist. Site. Inputs. Setting Engagement 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- GatewayMgmt Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt 
- Gateway Site settings
- GatewayUpdown intThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- JuniperSrx Pulumi.Juniper Mist. Site. Inputs. Setting Juniper Srx 
- Led
Pulumi.Juniper Mist. Site. Inputs. Setting Led 
- LED AP settings
- Occupancy
Pulumi.Juniper Mist. Site. Inputs. Setting Occupancy 
- Occupancy Analytics settings
- PersistConfig boolOn Device 
- Whether to store the config on AP
- Proxy
Pulumi.Juniper Mist. Site. Inputs. Setting Proxy 
- Proxy Configuration to talk to Mist
- RemoveExisting boolConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- ReportGatt 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 
- Rogue site settings
- Rtsa
Pulumi.Juniper Mist. Site. Inputs. Setting Rtsa 
- Managed mobility
- SimpleAlert Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- Skyatp
Pulumi.Juniper Mist. Site. Inputs. Setting Skyatp 
- SrxApp Pulumi.Juniper Mist. Site. Inputs. Setting Srx App 
- SshKeys List<string>
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- Ssr
Pulumi.Juniper Mist. Site. Inputs. Setting Ssr 
- SwitchUpdown intThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- SyntheticTest Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test 
- TrackAnonymous boolDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- UplinkPort Pulumi.Config Juniper Mist. Site. Inputs. Setting Uplink Port Config 
- AP Uplink port configuration
- Vars Dictionary<string, string>
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- Vna
Pulumi.Juniper Mist. Site. Inputs. Setting Vna 
- VsInstance Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Vs Instance Args> 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- WanVna Pulumi.Juniper Mist. Site. Inputs. Setting Wan Vna 
- Wids
Pulumi.Juniper Mist. Site. Inputs. Setting Wids 
- WIDS site settings
- Wifi
Pulumi.Juniper Mist. Site. Inputs. Setting Wifi 
- Wi-Fi site settings
- WiredVna Pulumi.Juniper Mist. Site. Inputs. Setting Wired Vna 
- ZoneOccupancy Pulumi.Alert Juniper Mist. Site. Inputs. Setting Zone Occupancy Alert 
- Zone Occupancy alert site settings
- SiteId string
- Analytic
SettingAnalytic Args 
- ApUpdown intThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- AutoUpgrade SettingAuto Upgrade Args 
- Auto Upgrade Settings
- BleConfig SettingBle Config Args 
- BLE AP settings
- ConfigAuto boolRevert 
- Whether to enable ap auto config revert
- ConfigPush SettingPolicy Config Push Policy Args 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- CriticalUrl SettingMonitoring Critical Url Monitoring Args 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- DeviceUpdown intThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Engagement
SettingEngagement Args 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- GatewayMgmt SettingGateway Mgmt Args 
- Gateway Site settings
- GatewayUpdown intThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- JuniperSrx SettingJuniper Srx Args 
- Led
SettingLed Args 
- LED AP settings
- Occupancy
SettingOccupancy Args 
- Occupancy Analytics settings
- PersistConfig boolOn Device 
- Whether to store the config on AP
- Proxy
SettingProxy Args 
- Proxy Configuration to talk to Mist
- RemoveExisting boolConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- ReportGatt bool
- Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- Rogue
SettingRogue Args 
- Rogue site settings
- Rtsa
SettingRtsa Args 
- Managed mobility
- SimpleAlert SettingSimple Alert Args 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- Skyatp
SettingSkyatp Args 
- SrxApp SettingSrx App Args 
- SshKeys []string
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- Ssr
SettingSsr Args 
- SwitchUpdown intThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- SyntheticTest SettingSynthetic Test Args 
- TrackAnonymous boolDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- UplinkPort SettingConfig Uplink Port Config Args 
- AP Uplink port configuration
- Vars map[string]string
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- Vna
SettingVna Args 
- VsInstance map[string]SettingVs Instance Args 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- WanVna SettingWan Vna Args 
- Wids
SettingWids Args 
- WIDS site settings
- Wifi
SettingWifi Args 
- Wi-Fi site settings
- WiredVna SettingWired Vna Args 
- ZoneOccupancy SettingAlert Zone Occupancy Alert Args 
- Zone Occupancy alert site settings
- siteId String
- analytic
SettingAnalytic 
- apUpdown IntegerThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- autoUpgrade SettingAuto Upgrade 
- Auto Upgrade Settings
- bleConfig SettingBle Config 
- BLE AP settings
- configAuto BooleanRevert 
- Whether to enable ap auto config revert
- configPush SettingPolicy Config Push Policy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- criticalUrl SettingMonitoring Critical Url Monitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- deviceUpdown IntegerThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement
SettingEngagement 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gatewayMgmt SettingGateway Mgmt 
- Gateway Site settings
- gatewayUpdown IntegerThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniperSrx SettingJuniper Srx 
- led
SettingLed 
- LED AP settings
- occupancy
SettingOccupancy 
- Occupancy Analytics settings
- persistConfig BooleanOn Device 
- Whether to store the config on AP
- proxy
SettingProxy 
- Proxy Configuration to talk to Mist
- removeExisting BooleanConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- reportGatt Boolean
- Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
SettingRogue 
- Rogue site settings
- rtsa
SettingRtsa 
- Managed mobility
- simpleAlert SettingSimple Alert 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- skyatp
SettingSkyatp 
- srxApp SettingSrx App 
- sshKeys List<String>
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr
SettingSsr 
- switchUpdown IntegerThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- syntheticTest SettingSynthetic Test 
- trackAnonymous BooleanDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplinkPort SettingConfig Uplink Port Config 
- AP Uplink port configuration
- vars Map<String,String>
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna
SettingVna 
- vsInstance Map<String,SettingVs Instance Args> 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wanVna SettingWan Vna 
- wids
SettingWids 
- WIDS site settings
- wifi
SettingWifi 
- Wi-Fi site settings
- wiredVna SettingWired Vna 
- zoneOccupancy SettingAlert Zone Occupancy Alert 
- Zone Occupancy alert site settings
- siteId string
- analytic
SettingAnalytic 
- apUpdown numberThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- autoUpgrade SettingAuto Upgrade 
- Auto Upgrade Settings
- bleConfig SettingBle Config 
- BLE AP settings
- configAuto booleanRevert 
- Whether to enable ap auto config revert
- configPush SettingPolicy Config Push Policy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- criticalUrl SettingMonitoring Critical Url Monitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- deviceUpdown numberThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement
SettingEngagement 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gatewayMgmt SettingGateway Mgmt 
- Gateway Site settings
- gatewayUpdown numberThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniperSrx SettingJuniper Srx 
- led
SettingLed 
- LED AP settings
- occupancy
SettingOccupancy 
- Occupancy Analytics settings
- persistConfig booleanOn Device 
- Whether to store the config on AP
- proxy
SettingProxy 
- Proxy Configuration to talk to Mist
- removeExisting booleanConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- reportGatt boolean
- Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
SettingRogue 
- Rogue site settings
- rtsa
SettingRtsa 
- Managed mobility
- simpleAlert SettingSimple Alert 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- skyatp
SettingSkyatp 
- srxApp SettingSrx App 
- sshKeys string[]
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr
SettingSsr 
- switchUpdown numberThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- syntheticTest SettingSynthetic Test 
- trackAnonymous booleanDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplinkPort SettingConfig Uplink Port Config 
- AP Uplink port configuration
- vars {[key: string]: string}
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna
SettingVna 
- vsInstance {[key: string]: SettingVs Instance Args} 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wanVna SettingWan Vna 
- wids
SettingWids 
- WIDS site settings
- wifi
SettingWifi 
- Wi-Fi site settings
- wiredVna SettingWired Vna 
- zoneOccupancy SettingAlert Zone Occupancy Alert 
- Zone Occupancy alert site settings
- site_id str
- analytic
SettingAnalytic Args 
- ap_updown_ intthreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- auto_upgrade SettingAuto Upgrade Args 
- Auto Upgrade Settings
- ble_config SettingBle Config Args 
- BLE AP settings
- config_auto_ boolrevert 
- Whether to enable ap auto config revert
- config_push_ Settingpolicy Config Push Policy Args 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- critical_url_ Settingmonitoring Critical Url Monitoring Args 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- device_updown_ intthreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement
SettingEngagement Args 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gateway_mgmt SettingGateway Mgmt Args 
- Gateway Site settings
- gateway_updown_ intthreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniper_srx SettingJuniper Srx Args 
- led
SettingLed Args 
- LED AP settings
- occupancy
SettingOccupancy Args 
- Occupancy Analytics settings
- persist_config_ boolon_ device 
- Whether to store the config on AP
- proxy
SettingProxy Args 
- Proxy Configuration to talk to Mist
- remove_existing_ boolconfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- 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
SettingRogue Args 
- Rogue site settings
- rtsa
SettingRtsa Args 
- Managed mobility
- simple_alert SettingSimple Alert Args 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- skyatp
SettingSkyatp Args 
- srx_app SettingSrx App Args 
- ssh_keys Sequence[str]
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr
SettingSsr Args 
- switch_updown_ intthreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- synthetic_test SettingSynthetic Test Args 
- track_anonymous_ booldevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplink_port_ Settingconfig Uplink Port Config Args 
- AP Uplink port configuration
- vars Mapping[str, str]
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna
SettingVna Args 
- vs_instance Mapping[str, SettingVs Instance Args] 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wan_vna SettingWan Vna Args 
- wids
SettingWids Args 
- WIDS site settings
- wifi
SettingWifi Args 
- Wi-Fi site settings
- wired_vna SettingWired Vna Args 
- zone_occupancy_ Settingalert Zone Occupancy Alert Args 
- Zone Occupancy alert site settings
- siteId String
- analytic Property Map
- apUpdown NumberThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- autoUpgrade Property Map
- Auto Upgrade Settings
- bleConfig Property Map
- BLE AP settings
- configAuto BooleanRevert 
- Whether to enable ap auto config revert
- configPush Property MapPolicy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- criticalUrl Property MapMonitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- deviceUpdown NumberThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement Property Map
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gatewayMgmt Property Map
- Gateway Site settings
- gatewayUpdown NumberThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniperSrx Property Map
- led Property Map
- LED AP settings
- occupancy Property Map
- Occupancy Analytics settings
- persistConfig BooleanOn Device 
- Whether to store the config on AP
- proxy Property Map
- Proxy Configuration to talk to Mist
- removeExisting BooleanConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- reportGatt 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
- Rogue site settings
- rtsa Property Map
- Managed mobility
- simpleAlert Property Map
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- skyatp Property Map
- srxApp Property Map
- sshKeys List<String>
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr Property Map
- switchUpdown NumberThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- syntheticTest Property Map
- trackAnonymous BooleanDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplinkPort Property MapConfig 
- AP Uplink port configuration
- vars Map<String>
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna Property Map
- vsInstance Map<Property Map>
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wanVna Property Map
- wids Property Map
- WIDS site settings
- wifi Property Map
- Wi-Fi site settings
- wiredVna Property Map
- zoneOccupancy Property MapAlert 
- Zone Occupancy alert site settings
Outputs
All input properties are implicitly available as output properties. Additionally, the Setting resource produces the following output properties:
- BlacklistUrl string
- Id string
- The provider-assigned unique ID for this managed resource.
- WatchedStation stringUrl 
- WhitelistUrl string
- BlacklistUrl string
- Id string
- The provider-assigned unique ID for this managed resource.
- WatchedStation stringUrl 
- WhitelistUrl string
- blacklistUrl String
- id String
- The provider-assigned unique ID for this managed resource.
- watchedStation StringUrl 
- whitelistUrl String
- blacklistUrl string
- id string
- The provider-assigned unique ID for this managed resource.
- watchedStation stringUrl 
- whitelistUrl string
- blacklist_url str
- id str
- The provider-assigned unique ID for this managed resource.
- watched_station_ strurl 
- whitelist_url str
- blacklistUrl String
- id String
- The provider-assigned unique ID for this managed resource.
- watchedStation StringUrl 
- whitelistUrl String
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,
        analytic: Optional[SettingAnalyticArgs] = None,
        ap_updown_threshold: Optional[int] = None,
        auto_upgrade: Optional[SettingAutoUpgradeArgs] = 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,
        engagement: Optional[SettingEngagementArgs] = None,
        gateway_mgmt: Optional[SettingGatewayMgmtArgs] = None,
        gateway_updown_threshold: Optional[int] = None,
        juniper_srx: Optional[SettingJuniperSrxArgs] = None,
        led: Optional[SettingLedArgs] = 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,
        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,
        uplink_port_config: Optional[SettingUplinkPortConfigArgs] = None,
        vars: Optional[Mapping[str, str]] = None,
        vna: Optional[SettingVnaArgs] = 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}- 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.
- Analytic
Pulumi.Juniper Mist. Site. Inputs. Setting Analytic 
- ApUpdown intThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- AutoUpgrade Pulumi.Juniper Mist. Site. Inputs. Setting Auto Upgrade 
- Auto Upgrade Settings
- BlacklistUrl string
- BleConfig Pulumi.Juniper Mist. Site. Inputs. Setting Ble Config 
- BLE AP settings
- ConfigAuto boolRevert 
- Whether to enable ap auto config revert
- ConfigPush Pulumi.Policy Juniper Mist. Site. Inputs. Setting Config Push Policy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- CriticalUrl Pulumi.Monitoring Juniper Mist. Site. Inputs. Setting Critical Url Monitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- DeviceUpdown intThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Engagement
Pulumi.Juniper Mist. Site. Inputs. Setting Engagement 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- GatewayMgmt Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt 
- Gateway Site settings
- GatewayUpdown intThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- JuniperSrx Pulumi.Juniper Mist. Site. Inputs. Setting Juniper Srx 
- Led
Pulumi.Juniper Mist. Site. Inputs. Setting Led 
- LED AP settings
- Occupancy
Pulumi.Juniper Mist. Site. Inputs. Setting Occupancy 
- Occupancy Analytics settings
- PersistConfig boolOn Device 
- Whether to store the config on AP
- Proxy
Pulumi.Juniper Mist. Site. Inputs. Setting Proxy 
- Proxy Configuration to talk to Mist
- RemoveExisting boolConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- ReportGatt 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 
- Rogue site settings
- Rtsa
Pulumi.Juniper Mist. Site. Inputs. Setting Rtsa 
- Managed mobility
- SimpleAlert Pulumi.Juniper Mist. Site. Inputs. Setting Simple Alert 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- SiteId string
- Skyatp
Pulumi.Juniper Mist. Site. Inputs. Setting Skyatp 
- SrxApp Pulumi.Juniper Mist. Site. Inputs. Setting Srx App 
- SshKeys List<string>
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- Ssr
Pulumi.Juniper Mist. Site. Inputs. Setting Ssr 
- SwitchUpdown intThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- SyntheticTest Pulumi.Juniper Mist. Site. Inputs. Setting Synthetic Test 
- TrackAnonymous boolDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- UplinkPort Pulumi.Config Juniper Mist. Site. Inputs. Setting Uplink Port Config 
- AP Uplink port configuration
- Vars Dictionary<string, string>
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- Vna
Pulumi.Juniper Mist. Site. Inputs. Setting Vna 
- VsInstance Dictionary<string, Pulumi.Juniper Mist. Site. Inputs. Setting Vs Instance Args> 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- WanVna Pulumi.Juniper Mist. Site. Inputs. Setting Wan Vna 
- WatchedStation stringUrl 
- WhitelistUrl string
- Wids
Pulumi.Juniper Mist. Site. Inputs. Setting Wids 
- WIDS site settings
- Wifi
Pulumi.Juniper Mist. Site. Inputs. Setting Wifi 
- Wi-Fi site settings
- WiredVna Pulumi.Juniper Mist. Site. Inputs. Setting Wired Vna 
- ZoneOccupancy Pulumi.Alert Juniper Mist. Site. Inputs. Setting Zone Occupancy Alert 
- Zone Occupancy alert site settings
- Analytic
SettingAnalytic Args 
- ApUpdown intThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- AutoUpgrade SettingAuto Upgrade Args 
- Auto Upgrade Settings
- BlacklistUrl string
- BleConfig SettingBle Config Args 
- BLE AP settings
- ConfigAuto boolRevert 
- Whether to enable ap auto config revert
- ConfigPush SettingPolicy Config Push Policy Args 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- CriticalUrl SettingMonitoring Critical Url Monitoring Args 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- DeviceUpdown intThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- Engagement
SettingEngagement Args 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- GatewayMgmt SettingGateway Mgmt Args 
- Gateway Site settings
- GatewayUpdown intThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- JuniperSrx SettingJuniper Srx Args 
- Led
SettingLed Args 
- LED AP settings
- Occupancy
SettingOccupancy Args 
- Occupancy Analytics settings
- PersistConfig boolOn Device 
- Whether to store the config on AP
- Proxy
SettingProxy Args 
- Proxy Configuration to talk to Mist
- RemoveExisting boolConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- ReportGatt bool
- Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- Rogue
SettingRogue Args 
- Rogue site settings
- Rtsa
SettingRtsa Args 
- Managed mobility
- SimpleAlert SettingSimple Alert Args 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- SiteId string
- Skyatp
SettingSkyatp Args 
- SrxApp SettingSrx App Args 
- SshKeys []string
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- Ssr
SettingSsr Args 
- SwitchUpdown intThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- SyntheticTest SettingSynthetic Test Args 
- TrackAnonymous boolDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- UplinkPort SettingConfig Uplink Port Config Args 
- AP Uplink port configuration
- Vars map[string]string
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- Vna
SettingVna Args 
- VsInstance map[string]SettingVs Instance Args 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- WanVna SettingWan Vna Args 
- WatchedStation stringUrl 
- WhitelistUrl string
- Wids
SettingWids Args 
- WIDS site settings
- Wifi
SettingWifi Args 
- Wi-Fi site settings
- WiredVna SettingWired Vna Args 
- ZoneOccupancy SettingAlert Zone Occupancy Alert Args 
- Zone Occupancy alert site settings
- analytic
SettingAnalytic 
- apUpdown IntegerThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- autoUpgrade SettingAuto Upgrade 
- Auto Upgrade Settings
- blacklistUrl String
- bleConfig SettingBle Config 
- BLE AP settings
- configAuto BooleanRevert 
- Whether to enable ap auto config revert
- configPush SettingPolicy Config Push Policy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- criticalUrl SettingMonitoring Critical Url Monitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- deviceUpdown IntegerThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement
SettingEngagement 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gatewayMgmt SettingGateway Mgmt 
- Gateway Site settings
- gatewayUpdown IntegerThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniperSrx SettingJuniper Srx 
- led
SettingLed 
- LED AP settings
- occupancy
SettingOccupancy 
- Occupancy Analytics settings
- persistConfig BooleanOn Device 
- Whether to store the config on AP
- proxy
SettingProxy 
- Proxy Configuration to talk to Mist
- removeExisting BooleanConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- reportGatt Boolean
- Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
SettingRogue 
- Rogue site settings
- rtsa
SettingRtsa 
- Managed mobility
- simpleAlert SettingSimple Alert 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- siteId String
- skyatp
SettingSkyatp 
- srxApp SettingSrx App 
- sshKeys List<String>
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr
SettingSsr 
- switchUpdown IntegerThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- syntheticTest SettingSynthetic Test 
- trackAnonymous BooleanDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplinkPort SettingConfig Uplink Port Config 
- AP Uplink port configuration
- vars Map<String,String>
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna
SettingVna 
- vsInstance Map<String,SettingVs Instance Args> 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wanVna SettingWan Vna 
- watchedStation StringUrl 
- whitelistUrl String
- wids
SettingWids 
- WIDS site settings
- wifi
SettingWifi 
- Wi-Fi site settings
- wiredVna SettingWired Vna 
- zoneOccupancy SettingAlert Zone Occupancy Alert 
- Zone Occupancy alert site settings
- analytic
SettingAnalytic 
- apUpdown numberThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- autoUpgrade SettingAuto Upgrade 
- Auto Upgrade Settings
- blacklistUrl string
- bleConfig SettingBle Config 
- BLE AP settings
- configAuto booleanRevert 
- Whether to enable ap auto config revert
- configPush SettingPolicy Config Push Policy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- criticalUrl SettingMonitoring Critical Url Monitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- deviceUpdown numberThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement
SettingEngagement 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gatewayMgmt SettingGateway Mgmt 
- Gateway Site settings
- gatewayUpdown numberThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniperSrx SettingJuniper Srx 
- led
SettingLed 
- LED AP settings
- occupancy
SettingOccupancy 
- Occupancy Analytics settings
- persistConfig booleanOn Device 
- Whether to store the config on AP
- proxy
SettingProxy 
- Proxy Configuration to talk to Mist
- removeExisting booleanConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- reportGatt boolean
- Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name, serial number, battery %, temperature, humidity)
- rogue
SettingRogue 
- Rogue site settings
- rtsa
SettingRtsa 
- Managed mobility
- simpleAlert SettingSimple Alert 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- siteId string
- skyatp
SettingSkyatp 
- srxApp SettingSrx App 
- sshKeys string[]
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr
SettingSsr 
- switchUpdown numberThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- syntheticTest SettingSynthetic Test 
- trackAnonymous booleanDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplinkPort SettingConfig Uplink Port Config 
- AP Uplink port configuration
- vars {[key: string]: string}
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna
SettingVna 
- vsInstance {[key: string]: SettingVs Instance Args} 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wanVna SettingWan Vna 
- watchedStation stringUrl 
- whitelistUrl string
- wids
SettingWids 
- WIDS site settings
- wifi
SettingWifi 
- Wi-Fi site settings
- wiredVna SettingWired Vna 
- zoneOccupancy SettingAlert Zone Occupancy Alert 
- Zone Occupancy alert site settings
- analytic
SettingAnalytic Args 
- ap_updown_ intthreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- auto_upgrade SettingAuto Upgrade Args 
- Auto Upgrade Settings
- blacklist_url str
- ble_config SettingBle Config Args 
- BLE AP settings
- config_auto_ boolrevert 
- Whether to enable ap auto config revert
- config_push_ Settingpolicy Config Push Policy Args 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- critical_url_ Settingmonitoring Critical Url Monitoring Args 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- device_updown_ intthreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement
SettingEngagement Args 
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gateway_mgmt SettingGateway Mgmt Args 
- Gateway Site settings
- gateway_updown_ intthreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniper_srx SettingJuniper Srx Args 
- led
SettingLed Args 
- LED AP settings
- occupancy
SettingOccupancy Args 
- Occupancy Analytics settings
- persist_config_ boolon_ device 
- Whether to store the config on AP
- proxy
SettingProxy Args 
- Proxy Configuration to talk to Mist
- remove_existing_ boolconfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- 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
SettingRogue Args 
- Rogue site settings
- rtsa
SettingRtsa Args 
- Managed mobility
- simple_alert SettingSimple Alert Args 
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- site_id str
- skyatp
SettingSkyatp Args 
- srx_app SettingSrx App Args 
- ssh_keys Sequence[str]
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr
SettingSsr Args 
- switch_updown_ intthreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- synthetic_test SettingSynthetic Test Args 
- track_anonymous_ booldevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplink_port_ Settingconfig Uplink Port Config Args 
- AP Uplink port configuration
- vars Mapping[str, str]
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna
SettingVna Args 
- vs_instance Mapping[str, SettingVs Instance Args] 
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wan_vna SettingWan Vna Args 
- watched_station_ strurl 
- whitelist_url str
- wids
SettingWids Args 
- WIDS site settings
- wifi
SettingWifi Args 
- Wi-Fi site settings
- wired_vna SettingWired Vna Args 
- zone_occupancy_ Settingalert Zone Occupancy Alert Args 
- Zone Occupancy alert site settings
- analytic Property Map
- apUpdown NumberThreshold 
- Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
device_updown_thresholdis ignored.
- autoUpgrade Property Map
- Auto Upgrade Settings
- blacklistUrl String
- bleConfig Property Map
- BLE AP settings
- configAuto BooleanRevert 
- Whether to enable ap auto config revert
- configPush Property MapPolicy 
- Mist also uses some heuristic rules to prevent destructive configs from being pushed
- criticalUrl Property MapMonitoring 
- You can define some URLs that's critical to site operations the latency will be captured and considered for site health
- deviceUpdown NumberThreshold 
- By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type is desired, use the following
- engagement Property Map
- Note: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple ranges for the same day
- gatewayMgmt Property Map
- Gateway Site settings
- gatewayUpdown NumberThreshold 
- Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
device_updown_thresholdis ignored.
- juniperSrx Property Map
- led Property Map
- LED AP settings
- occupancy Property Map
- Occupancy Analytics settings
- persistConfig BooleanOn Device 
- Whether to store the config on AP
- proxy Property Map
- Proxy Configuration to talk to Mist
- removeExisting BooleanConfigs 
- By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
- reportGatt 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
- Rogue site settings
- rtsa Property Map
- Managed mobility
- simpleAlert Property Map
- Set of heuristic rules will be enabled when marvis subscription is not available. It triggers when, in a Z minute window, there are more than Y distinct client encountring over X failures
- siteId String
- skyatp Property Map
- srxApp Property Map
- sshKeys List<String>
- When limit_ssh_access = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see Org:Setting)
- ssr Property Map
- switchUpdown NumberThreshold 
- Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
device_updown_thresholdis ignored.
- syntheticTest Property Map
- trackAnonymous BooleanDevices 
- Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
- uplinkPort Property MapConfig 
- AP Uplink port configuration
- vars Map<String>
- Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
- vna Property Map
- vsInstance Map<Property Map>
- Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
- wanVna Property Map
- watchedStation StringUrl 
- whitelistUrl String
- wids Property Map
- WIDS site settings
- wifi Property Map
- Wi-Fi site settings
- wiredVna Property Map
- zoneOccupancy Property MapAlert 
- Zone Occupancy alert site settings
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 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)
SettingAutoUpgrade, SettingAutoUpgradeArgs      
- CustomVersions Dictionary<string, string>
- Custom versions for different models. Property key is the model name (e.g. "AP41")
- DayOf stringWeek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- Enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- TimeOf stringDay 
- any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time
- Version string
- desired version. enum: beta,custom,stable
- CustomVersions map[string]string
- Custom versions for different models. Property key is the model name (e.g. "AP41")
- DayOf stringWeek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- Enabled bool
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- TimeOf stringDay 
- any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time
- Version string
- desired version. enum: beta,custom,stable
- customVersions Map<String,String>
- Custom versions for different models. Property key is the model name (e.g. "AP41")
- dayOf StringWeek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- enabled Boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- timeOf StringDay 
- any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time
- version String
- desired version. enum: beta,custom,stable
- customVersions {[key: string]: string}
- Custom versions for different models. Property key is the model name (e.g. "AP41")
- dayOf stringWeek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- enabled boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- timeOf stringDay 
- any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time
- version string
- desired version. enum: beta,custom,stable
- custom_versions Mapping[str, str]
- Custom versions for different models. Property key is the model name (e.g. "AP41")
- day_of_ strweek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- 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
- desired version. enum: beta,custom,stable
- customVersions Map<String>
- Custom versions for different models. Property key is the model name (e.g. "AP41")
- dayOf StringWeek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- enabled Boolean
- Whether auto upgrade should happen (Note that Mist may auto-upgrade if the version is not supported)
- timeOf StringDay 
- any/ HH:MM (24-hour format), upgrade will happen within up to 1-hour from this time
- version String
- desired version. enum: beta,custom,stable
SettingBleConfig, SettingBleConfigArgs      
- BeaconEnabled bool
- Whether Mist beacons is enabled
- BeaconRate int
- Required if beacon_rate_mode==custom, 1-10, in number-beacons-per-second
- BeaconRate stringMode 
- enum: custom,default
- BeamDisableds List<int>
- List of AP BLE location beam numbers (1-8) which should be disabled at the AP and not transmit location information (where beam 1 is oriented at the top the AP, growing counter-clock-wise, with 9 being the omni BLE beam)
- CustomBle boolPacket Enabled 
- Can be enabled if beacon_enabled==true, whether to send custom packet
- CustomBle stringPacket Frame 
- The custom frame to be sent out in this beacon. The frame must be a hexstring
- CustomBle intPacket Freq Msec 
- Frequency (msec) of data emitted by custom ble beacon
- EddystoneUid intAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- EddystoneUid stringBeams 
- EddystoneUid boolEnabled 
- Only if beacon_enabled==false, Whether Eddystone-UID beacon is enabled
- EddystoneUid intFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- EddystoneUid stringInstance 
- Eddystone-UID instance for the device
- EddystoneUid stringNamespace 
- Eddystone-UID namespace
- EddystoneUrl intAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- EddystoneUrl stringBeams 
- EddystoneUrl boolEnabled 
- Only if beacon_enabled==false, Whether Eddystone-URL beacon is enabled
- EddystoneUrl intFreq Msec 
- Frequency (msec) of data emit by Eddystone-UID beacon
- EddystoneUrl stringUrl 
- URL pointed by Eddystone-URL beacon
- IbeaconAdv intPower 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- IbeaconBeams string
- IbeaconEnabled bool
- Can be enabled if beacon_enabled==true, whether to send iBeacon
- IbeaconFreq intMsec 
- Frequency (msec) of data emmit for iBeacon
- IbeaconMajor int
- Major number for iBeacon
- IbeaconMinor int
- Minor number for iBeacon
- IbeaconUuid string
- Optional, if not specified, the same UUID as the beacon will be used
- Power int
- Required if power_mode==custom; else usepower_modeas default
- PowerMode string
- enum: custom,default
- BeaconEnabled bool
- Whether Mist beacons is enabled
- BeaconRate int
- Required if beacon_rate_mode==custom, 1-10, in number-beacons-per-second
- BeaconRate stringMode 
- enum: custom,default
- BeamDisableds []int
- List of AP BLE location beam numbers (1-8) which should be disabled at the AP and not transmit location information (where beam 1 is oriented at the top the AP, growing counter-clock-wise, with 9 being the omni BLE beam)
- CustomBle boolPacket Enabled 
- Can be enabled if beacon_enabled==true, whether to send custom packet
- CustomBle stringPacket Frame 
- The custom frame to be sent out in this beacon. The frame must be a hexstring
- CustomBle intPacket Freq Msec 
- Frequency (msec) of data emitted by custom ble beacon
- EddystoneUid intAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- EddystoneUid stringBeams 
- EddystoneUid boolEnabled 
- Only if beacon_enabled==false, Whether Eddystone-UID beacon is enabled
- EddystoneUid intFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- EddystoneUid stringInstance 
- Eddystone-UID instance for the device
- EddystoneUid stringNamespace 
- Eddystone-UID namespace
- EddystoneUrl intAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- EddystoneUrl stringBeams 
- EddystoneUrl boolEnabled 
- Only if beacon_enabled==false, Whether Eddystone-URL beacon is enabled
- EddystoneUrl intFreq Msec 
- Frequency (msec) of data emit by Eddystone-UID beacon
- EddystoneUrl stringUrl 
- URL pointed by Eddystone-URL beacon
- IbeaconAdv intPower 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- IbeaconBeams string
- IbeaconEnabled bool
- Can be enabled if beacon_enabled==true, whether to send iBeacon
- IbeaconFreq intMsec 
- Frequency (msec) of data emmit for iBeacon
- IbeaconMajor int
- Major number for iBeacon
- IbeaconMinor int
- Minor number for iBeacon
- IbeaconUuid string
- Optional, if not specified, the same UUID as the beacon will be used
- Power int
- Required if power_mode==custom; else usepower_modeas default
- PowerMode string
- enum: custom,default
- beaconEnabled Boolean
- Whether Mist beacons is enabled
- beaconRate Integer
- Required if beacon_rate_mode==custom, 1-10, in number-beacons-per-second
- beaconRate StringMode 
- enum: custom,default
- beamDisableds List<Integer>
- List of AP BLE location beam numbers (1-8) which should be disabled at the AP and not transmit location information (where beam 1 is oriented at the top the AP, growing counter-clock-wise, with 9 being the omni BLE beam)
- customBle BooleanPacket Enabled 
- Can be enabled if beacon_enabled==true, whether to send custom packet
- customBle StringPacket Frame 
- The custom frame to be sent out in this beacon. The frame must be a hexstring
- customBle IntegerPacket Freq Msec 
- Frequency (msec) of data emitted by custom ble beacon
- eddystoneUid IntegerAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystoneUid StringBeams 
- eddystoneUid BooleanEnabled 
- Only if beacon_enabled==false, Whether Eddystone-UID beacon is enabled
- eddystoneUid IntegerFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystoneUid StringInstance 
- Eddystone-UID instance for the device
- eddystoneUid StringNamespace 
- Eddystone-UID namespace
- eddystoneUrl IntegerAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystoneUrl StringBeams 
- eddystoneUrl BooleanEnabled 
- Only if beacon_enabled==false, Whether Eddystone-URL beacon is enabled
- eddystoneUrl IntegerFreq Msec 
- Frequency (msec) of data emit by Eddystone-UID beacon
- eddystoneUrl StringUrl 
- URL pointed by Eddystone-URL beacon
- ibeaconAdv IntegerPower 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeaconBeams String
- ibeaconEnabled Boolean
- Can be enabled if beacon_enabled==true, whether to send iBeacon
- ibeaconFreq IntegerMsec 
- Frequency (msec) of data emmit for iBeacon
- ibeaconMajor Integer
- Major number for iBeacon
- ibeaconMinor Integer
- Minor number for iBeacon
- ibeaconUuid String
- Optional, if not specified, the same UUID as the beacon will be used
- power Integer
- Required if power_mode==custom; else usepower_modeas default
- powerMode String
- enum: custom,default
- beaconEnabled boolean
- Whether Mist beacons is enabled
- beaconRate number
- Required if beacon_rate_mode==custom, 1-10, in number-beacons-per-second
- beaconRate stringMode 
- enum: custom,default
- beamDisableds number[]
- List of AP BLE location beam numbers (1-8) which should be disabled at the AP and not transmit location information (where beam 1 is oriented at the top the AP, growing counter-clock-wise, with 9 being the omni BLE beam)
- customBle booleanPacket Enabled 
- Can be enabled if beacon_enabled==true, whether to send custom packet
- customBle stringPacket Frame 
- The custom frame to be sent out in this beacon. The frame must be a hexstring
- customBle numberPacket Freq Msec 
- Frequency (msec) of data emitted by custom ble beacon
- eddystoneUid numberAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystoneUid stringBeams 
- eddystoneUid booleanEnabled 
- Only if beacon_enabled==false, Whether Eddystone-UID beacon is enabled
- eddystoneUid numberFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystoneUid stringInstance 
- Eddystone-UID instance for the device
- eddystoneUid stringNamespace 
- Eddystone-UID namespace
- eddystoneUrl numberAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystoneUrl stringBeams 
- eddystoneUrl booleanEnabled 
- Only if beacon_enabled==false, Whether Eddystone-URL beacon is enabled
- eddystoneUrl numberFreq Msec 
- Frequency (msec) of data emit by Eddystone-UID beacon
- eddystoneUrl stringUrl 
- URL pointed by Eddystone-URL beacon
- ibeaconAdv numberPower 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeaconBeams string
- ibeaconEnabled boolean
- Can be enabled if beacon_enabled==true, whether to send iBeacon
- ibeaconFreq numberMsec 
- Frequency (msec) of data emmit for iBeacon
- ibeaconMajor number
- Major number for iBeacon
- ibeaconMinor number
- Minor number for iBeacon
- ibeaconUuid string
- Optional, if not specified, the same UUID as the beacon will be used
- power number
- Required if power_mode==custom; else usepower_modeas default
- powerMode string
- enum: custom,default
- beacon_enabled bool
- Whether Mist beacons is enabled
- beacon_rate int
- Required if beacon_rate_mode==custom, 1-10, in number-beacons-per-second
- beacon_rate_ strmode 
- enum: custom,default
- beam_disableds Sequence[int]
- List of AP BLE location beam numbers (1-8) which should be disabled at the AP and not transmit location information (where beam 1 is oriented at the top the AP, growing counter-clock-wise, with 9 being the omni BLE beam)
- custom_ble_ boolpacket_ enabled 
- Can be enabled if beacon_enabled==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 
- eddystone_uid_ boolenabled 
- Only if beacon_enabled==false, Whether Eddystone-UID beacon is enabled
- eddystone_uid_ intfreq_ msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystone_uid_ strinstance 
- Eddystone-UID instance for the device
- eddystone_uid_ strnamespace 
- Eddystone-UID namespace
- eddystone_url_ intadv_ power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystone_url_ strbeams 
- eddystone_url_ boolenabled 
- Only if beacon_enabled==false, Whether Eddystone-URL beacon is enabled
- eddystone_url_ intfreq_ msec 
- Frequency (msec) of data emit by Eddystone-UID 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
- ibeacon_enabled bool
- Can be enabled if beacon_enabled==true, whether to send iBeacon
- ibeacon_freq_ intmsec 
- Frequency (msec) of data emmit for iBeacon
- ibeacon_major int
- Major number for iBeacon
- ibeacon_minor int
- Minor number for iBeacon
- ibeacon_uuid str
- Optional, if not specified, the same UUID as the beacon will be used
- power int
- Required if power_mode==custom; else usepower_modeas default
- power_mode str
- enum: custom,default
- beaconEnabled Boolean
- Whether Mist beacons is enabled
- beaconRate Number
- Required if beacon_rate_mode==custom, 1-10, in number-beacons-per-second
- beaconRate StringMode 
- enum: custom,default
- beamDisableds List<Number>
- List of AP BLE location beam numbers (1-8) which should be disabled at the AP and not transmit location information (where beam 1 is oriented at the top the AP, growing counter-clock-wise, with 9 being the omni BLE beam)
- customBle BooleanPacket Enabled 
- Can be enabled if beacon_enabled==true, whether to send custom packet
- customBle StringPacket Frame 
- The custom frame to be sent out in this beacon. The frame must be a hexstring
- customBle NumberPacket Freq Msec 
- Frequency (msec) of data emitted by custom ble beacon
- eddystoneUid NumberAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystoneUid StringBeams 
- eddystoneUid BooleanEnabled 
- Only if beacon_enabled==false, Whether Eddystone-UID beacon is enabled
- eddystoneUid NumberFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystoneUid StringInstance 
- Eddystone-UID instance for the device
- eddystoneUid StringNamespace 
- Eddystone-UID namespace
- eddystoneUrl NumberAdv Power 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- eddystoneUrl StringBeams 
- eddystoneUrl BooleanEnabled 
- Only if beacon_enabled==false, Whether Eddystone-URL beacon is enabled
- eddystoneUrl NumberFreq Msec 
- Frequency (msec) of data emit by Eddystone-UID beacon
- eddystoneUrl StringUrl 
- URL pointed by Eddystone-URL beacon
- ibeaconAdv NumberPower 
- Advertised TX Power, -100 to 20 (dBm), omit this attribute to use default
- ibeaconBeams String
- ibeaconEnabled Boolean
- Can be enabled if beacon_enabled==true, whether to send iBeacon
- ibeaconFreq NumberMsec 
- Frequency (msec) of data emmit for iBeacon
- ibeaconMajor Number
- Major number for iBeacon
- ibeaconMinor Number
- Minor number for iBeacon
- ibeaconUuid String
- Optional, if not specified, the same UUID as the beacon will be used
- power Number
- Required if power_mode==custom; else usepower_modeas default
- powerMode String
- enum: custom,default
SettingConfigPushPolicy, SettingConfigPushPolicyArgs        
- NoPush bool
- Stop any new config from being pushed to the device
- PushWindow Pulumi.Juniper Mist. Site. Inputs. Setting Config Push Policy Push Window 
- If enabled, new config will only be pushed to device within the specified time window
- NoPush bool
- Stop any new config from being pushed to the device
- PushWindow SettingConfig Push Policy Push Window 
- If enabled, new config will only be pushed to device within the specified time window
- noPush Boolean
- Stop any new config from being pushed to the device
- pushWindow SettingConfig Push Policy Push Window 
- If enabled, new config will only be pushed to device within the specified time window
- noPush boolean
- Stop any new config from being pushed to the device
- pushWindow SettingConfig Push Policy Push Window 
- If enabled, new config will only be pushed to device within the specified time window
- no_push bool
- Stop any new config from being pushed to the device
- push_window SettingConfig Push Policy Push Window 
- If enabled, new config will only be pushed to device within the specified time window
- noPush Boolean
- Stop any new config from being pushed to the device
- pushWindow Property Map
- If enabled, new config will only be pushed to device within the specified time window
SettingConfigPushPolicyPushWindow, SettingConfigPushPolicyPushWindowArgs            
- Enabled bool
- Hours
Pulumi.Juniper Mist. Site. Inputs. Setting Config Push Policy Push Window Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- Enabled bool
- Hours
SettingConfig Push Policy Push Window Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- enabled Boolean
- hours
SettingConfig Push Policy Push Window Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- enabled boolean
- hours
SettingConfig Push Policy Push Window Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- enabled bool
- hours
SettingConfig Push Policy Push Window Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- enabled Boolean
- hours Property Map
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
SettingConfigPushPolicyPushWindowHours, SettingConfigPushPolicyPushWindowHoursArgs              
- Fri string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Mon string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sat string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sun string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Thu string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Tue string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Wed string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Fri string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Mon string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sat string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sun string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Thu string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Tue string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Wed string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
SettingCriticalUrlMonitoring, SettingCriticalUrlMonitoringArgs        
- enabled Boolean
- monitors List<Property Map>
SettingCriticalUrlMonitoringMonitor, SettingCriticalUrlMonitoringMonitorArgs          
SettingEngagement, SettingEngagementArgs    
- DwellTag Pulumi.Names Juniper Mist. Site. Inputs. Setting Engagement Dwell Tag Names 
- Name associated to each tag
- 
Pulumi.Juniper Mist. Site. Inputs. Setting Engagement Dwell Tags 
- add tags to visits within the duration (in seconds)
- Hours
Pulumi.Juniper Mist. Site. Inputs. Setting Engagement Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- MaxDwell int
- Max time, default is 43200(12h), max is 68400 (18h)
- MinDwell int
- min time
- DwellTag SettingNames Engagement Dwell Tag Names 
- Name associated to each tag
- 
SettingEngagement Dwell Tags 
- add tags to visits within the duration (in seconds)
- Hours
SettingEngagement Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- MaxDwell int
- Max time, default is 43200(12h), max is 68400 (18h)
- MinDwell int
- min time
- dwellTag SettingNames Engagement Dwell Tag Names 
- Name associated to each tag
- 
SettingEngagement Dwell Tags 
- add tags to visits within the duration (in seconds)
- hours
SettingEngagement Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- maxDwell Integer
- Max time, default is 43200(12h), max is 68400 (18h)
- minDwell Integer
- min time
- dwellTag SettingNames Engagement Dwell Tag Names 
- Name associated to each tag
- 
SettingEngagement Dwell Tags 
- add tags to visits within the duration (in seconds)
- hours
SettingEngagement Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- maxDwell number
- Max time, default is 43200(12h), max is 68400 (18h)
- minDwell number
- min time
- dwell_tag_ Settingnames Engagement Dwell Tag Names 
- Name associated to each tag
- 
SettingEngagement Dwell Tags 
- add tags to visits within the duration (in seconds)
- hours
SettingEngagement Hours 
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- max_dwell int
- Max time, default is 43200(12h), max is 68400 (18h)
- min_dwell int
- min time
- dwellTag Property MapNames 
- Name associated to each tag
- Property Map
- add tags to visits within the duration (in seconds)
- hours Property Map
- Days/Hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun)
- maxDwell Number
- Max time, default is 43200(12h), max is 68400 (18h)
- minDwell Number
- min time
SettingEngagementDwellTagNames, SettingEngagementDwellTagNamesArgs          
SettingEngagementDwellTags, SettingEngagementDwellTagsArgs        
SettingEngagementHours, SettingEngagementHoursArgs      
- Fri string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Mon string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sat string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sun string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Thu string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Tue string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Wed string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Fri string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Mon string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sat string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Sun string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Thu string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Tue string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- Wed string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed string
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed str
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- fri String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- mon String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sat String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- sun String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- thu String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- tue String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
- wed String
- Hour range of the day (e.g. 09:00-17:00). If the hour is not defined then it's treated as 00:00-23:59.
SettingGatewayMgmt, SettingGatewayMgmtArgs      
- AdminSshkeys List<string>
- For SSR only, as direct root access is not allowed
- AppProbing Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt App Probing 
- AppUsage bool
- Consumes uplink bandwidth, requires WA license
- AutoSignature Pulumi.Update Juniper Mist. Site. Inputs. Setting Gateway Mgmt Auto Signature Update 
- ConfigRevert intTimer 
- Rollback timer for commit confirmed
- DisableConsole bool
- For both SSR and SRX disable console port
- DisableOob bool
- For both SSR and SRX disable management interface
- ProbeHosts List<string>
- ProtectRe Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt Protect Re 
- Restrict inbound-traffic to host 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
- RootPassword string
- For SRX only
- SecurityLog stringSource Address 
- SecurityLog stringSource Interface 
- AdminSshkeys []string
- For SSR only, as direct root access is not allowed
- AppProbing SettingGateway Mgmt App Probing 
- AppUsage bool
- Consumes uplink bandwidth, requires WA license
- AutoSignature SettingUpdate Gateway Mgmt Auto Signature Update 
- ConfigRevert intTimer 
- Rollback timer for commit confirmed
- DisableConsole bool
- For both SSR and SRX disable console port
- DisableOob bool
- For both SSR and SRX disable management interface
- ProbeHosts []string
- ProtectRe SettingGateway Mgmt Protect Re 
- Restrict inbound-traffic to host 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
- RootPassword string
- For SRX only
- SecurityLog stringSource Address 
- SecurityLog stringSource Interface 
- adminSshkeys List<String>
- For SSR only, as direct root access is not allowed
- appProbing SettingGateway Mgmt App Probing 
- appUsage Boolean
- Consumes uplink bandwidth, requires WA license
- autoSignature SettingUpdate Gateway Mgmt Auto Signature Update 
- configRevert IntegerTimer 
- Rollback timer for commit confirmed
- disableConsole Boolean
- For both SSR and SRX disable console port
- disableOob Boolean
- For both SSR and SRX disable management interface
- probeHosts List<String>
- protectRe SettingGateway Mgmt Protect Re 
- Restrict inbound-traffic to host 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
- rootPassword String
- For SRX only
- securityLog StringSource Address 
- securityLog StringSource Interface 
- adminSshkeys string[]
- For SSR only, as direct root access is not allowed
- appProbing SettingGateway Mgmt App Probing 
- appUsage boolean
- Consumes uplink bandwidth, requires WA license
- autoSignature SettingUpdate Gateway Mgmt Auto Signature Update 
- configRevert numberTimer 
- Rollback timer for commit confirmed
- disableConsole boolean
- For both SSR and SRX disable console port
- disableOob boolean
- For both SSR and SRX disable management interface
- probeHosts string[]
- protectRe SettingGateway Mgmt Protect Re 
- Restrict inbound-traffic to host 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
- rootPassword string
- For SRX only
- securityLog stringSource Address 
- securityLog stringSource Interface 
- admin_sshkeys Sequence[str]
- For SSR only, as direct root access is not allowed
- app_probing SettingGateway Mgmt App Probing 
- app_usage bool
- Consumes uplink bandwidth, requires WA license
- auto_signature_ Settingupdate Gateway Mgmt Auto Signature Update 
- config_revert_ inttimer 
- Rollback timer for commit confirmed
- disable_console bool
- For both SSR and SRX disable console port
- disable_oob bool
- For both SSR and SRX disable management interface
- probe_hosts Sequence[str]
- protect_re SettingGateway Mgmt Protect Re 
- Restrict inbound-traffic to host 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
- root_password str
- For SRX only
- security_log_ strsource_ address 
- security_log_ strsource_ interface 
- adminSshkeys List<String>
- For SSR only, as direct root access is not allowed
- appProbing Property Map
- appUsage Boolean
- Consumes uplink bandwidth, requires WA license
- autoSignature Property MapUpdate 
- configRevert NumberTimer 
- Rollback timer for commit confirmed
- disableConsole Boolean
- For both SSR and SRX disable console port
- disableOob Boolean
- For both SSR and SRX disable management interface
- probeHosts List<String>
- protectRe Property Map
- Restrict inbound-traffic to host 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
- rootPassword String
- For SRX only
- securityLog StringSource Address 
- securityLog StringSource Interface 
SettingGatewayMgmtAppProbing, SettingGatewayMgmtAppProbingArgs          
- Apps List<string>
- APp-keys from /api/v1/const/applications
- CustomApps List<Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt App Probing Custom App> 
- Enabled bool
- Apps []string
- APp-keys from /api/v1/const/applications
- CustomApps []SettingGateway Mgmt App Probing Custom App 
- Enabled bool
- apps List<String>
- APp-keys from /api/v1/const/applications
- customApps List<SettingGateway Mgmt App Probing Custom App> 
- enabled Boolean
- apps string[]
- APp-keys from /api/v1/const/applications
- customApps SettingGateway Mgmt App Probing Custom App[] 
- enabled boolean
- apps Sequence[str]
- APp-keys from /api/v1/const/applications
- custom_apps Sequence[SettingGateway Mgmt App Probing Custom App] 
- enabled bool
- apps List<String>
- APp-keys from /api/v1/const/applications
- customApps List<Property Map>
- enabled Boolean
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
- Protocol string
- enum: http,icmp
- Address string
- AppType string
- Key string
- Network string
- PacketSize int
- If protocol==icmp
- Url string
- Vrf string
- 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
- Protocol string
- enum: http,icmp
- Address string
- AppType string
- Key string
- Network string
- PacketSize int
- If protocol==icmp
- Url string
- Vrf string
- 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
- protocol String
- enum: http,icmp
- address String
- appType String
- key String
- network String
- packetSize Integer
- If protocol==icmp
- url String
- vrf String
- 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
- protocol string
- enum: http,icmp
- address string
- appType string
- key string
- network string
- packetSize number
- If protocol==icmp
- url string
- vrf string
- 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
- protocol String
- enum: http,icmp
- address String
- appType String
- key String
- network String
- packetSize Number
- If protocol==icmp
- url String
- vrf String
SettingGatewayMgmtAutoSignatureUpdate, SettingGatewayMgmtAutoSignatureUpdateArgs            
- day_of_ strweek 
- enum: any,fri,mon,sat,sun,thu,tue,wed
- enable bool
- time_of_ strday 
- Optional, Mist will decide the timing
SettingGatewayMgmtProtectRe, SettingGatewayMgmtProtectReArgs          
- AllowedServices List<string>
- optionally, services we'll allow. enum: icmp,ssh
- Customs
List<Pulumi.Juniper Mist. Site. Inputs. Setting Gateway Mgmt Protect Re Custom> 
- 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
- TrustedHosts List<string>
- host/subnets we'll allow traffic to/from
- AllowedServices []string
- optionally, services we'll allow. enum: icmp,ssh
- Customs
[]SettingGateway Mgmt Protect Re Custom 
- 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
- TrustedHosts []string
- host/subnets we'll allow traffic to/from
- allowedServices List<String>
- optionally, services we'll allow. enum: icmp,ssh
- customs
List<SettingGateway Mgmt Protect Re Custom> 
- 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
- trustedHosts List<String>
- host/subnets we'll allow traffic to/from
- allowedServices string[]
- optionally, services we'll allow. enum: icmp,ssh
- customs
SettingGateway Mgmt Protect Re Custom[] 
- 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
- trustedHosts string[]
- host/subnets we'll allow traffic to/from
- allowed_services Sequence[str]
- optionally, services we'll allow. enum: icmp,ssh
- customs
Sequence[SettingGateway Mgmt Protect Re Custom] 
- 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
- trusted_hosts Sequence[str]
- host/subnets we'll allow traffic to/from
- allowedServices List<String>
- optionally, services we'll allow. enum: icmp,ssh
- customs List<Property Map>
- 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
- trustedHosts List<String>
- host/subnets we'll allow traffic to/from
SettingGatewayMgmtProtectReCustom, SettingGatewayMgmtProtectReCustomArgs            
- subnets Sequence[str]
- port_range str
- matched dst port, "0" means any. Note: For protocol==anyandport_range==any, configuretrusted_hostsinstead
- protocol str
- enum: any,icmp,tcp,udp. Note: Forprotocol==anyandport_range==any, configuretrusted_hostsinstead
SettingJuniperSrx, SettingJuniperSrxArgs      
SettingJuniperSrxGateway, SettingJuniperSrxGatewayArgs        
SettingLed, SettingLedArgs    
- Brightness int
- Enabled bool
- Brightness int
- Enabled bool
- brightness Integer
- enabled Boolean
- brightness number
- enabled boolean
- brightness int
- enabled bool
- brightness Number
- enabled Boolean
SettingOccupancy, SettingOccupancyArgs    
- AssetsEnabled bool
- Indicate whether named BLE assets should be included in the zone occupancy calculation
- ClientsEnabled bool
- Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- MinDuration int
- Minimum duration
- SdkclientsEnabled bool
- Indicate whether SDK clients should be included in the zone occupancy calculation
- UnconnectedClients boolEnabled 
- Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- AssetsEnabled bool
- Indicate whether named BLE assets should be included in the zone occupancy calculation
- ClientsEnabled bool
- Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- MinDuration int
- Minimum duration
- SdkclientsEnabled bool
- Indicate whether SDK clients should be included in the zone occupancy calculation
- UnconnectedClients boolEnabled 
- Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assetsEnabled Boolean
- Indicate whether named BLE assets should be included in the zone occupancy calculation
- clientsEnabled Boolean
- Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- minDuration Integer
- Minimum duration
- sdkclientsEnabled Boolean
- Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnectedClients BooleanEnabled 
- Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
- assetsEnabled boolean
- Indicate whether named BLE assets should be included in the zone occupancy calculation
- clientsEnabled boolean
- Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- minDuration number
- Minimum duration
- sdkclientsEnabled boolean
- Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnectedClients 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 duration
- 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
- assetsEnabled Boolean
- Indicate whether named BLE assets should be included in the zone occupancy calculation
- clientsEnabled Boolean
- Indicate whether connected Wi-Fi clients should be included in the zone occupancy calculation
- minDuration Number
- Minimum duration
- sdkclientsEnabled Boolean
- Indicate whether SDK clients should be included in the zone occupancy calculation
- unconnectedClients BooleanEnabled 
- Indicate whether unconnected Wi-Fi clients should be included in the zone occupancy calculation
SettingProxy, SettingProxyArgs    
- Url string
- Url string
- url String
- url string
- url str
- url String
SettingRogue, SettingRogueArgs    
- Enabled bool
- Whether rogue detection is enabled
- HoneypotEnabled bool
- Whether honeypot detection is enabled
- MinDuration int
- Minimum duration for a bssid to be considered rogue
- MinRssi int
- Minimum RSSI for an AP to be considered rogue (ignoring APs that’s far away)
- WhitelistedBssids List<string>
- list of BSSIDs to whitelist. Ex: "cc-:8e-:6f-:d4-:bf-:16", "cc-8e-6f-d4-bf-16", "cc-73-", "cc:82:"
- WhitelistedSsids List<string>
- List of SSIDs to whitelist
- Enabled bool
- Whether rogue detection is enabled
- HoneypotEnabled bool
- Whether honeypot detection is enabled
- MinDuration int
- Minimum duration for a bssid to be considered rogue
- MinRssi int
- Minimum RSSI for an AP to be considered rogue (ignoring APs that’s far away)
- WhitelistedBssids []string
- list of BSSIDs to whitelist. Ex: "cc-:8e-:6f-:d4-:bf-:16", "cc-8e-6f-d4-bf-16", "cc-73-", "cc:82:"
- WhitelistedSsids []string
- List of SSIDs to whitelist
- enabled Boolean
- Whether rogue detection is enabled
- honeypotEnabled Boolean
- Whether honeypot detection is enabled
- minDuration Integer
- Minimum duration for a bssid to be considered rogue
- minRssi Integer
- Minimum RSSI for an AP to be considered rogue (ignoring APs that’s far away)
- whitelistedBssids List<String>
- list of BSSIDs to whitelist. Ex: "cc-:8e-:6f-:d4-:bf-:16", "cc-8e-6f-d4-bf-16", "cc-73-", "cc:82:"
- whitelistedSsids List<String>
- List of SSIDs to whitelist
- enabled boolean
- Whether rogue detection is enabled
- honeypotEnabled boolean
- Whether honeypot detection is enabled
- minDuration number
- Minimum duration for a bssid to be considered rogue
- minRssi number
- Minimum RSSI for an AP to be considered rogue (ignoring APs that’s far away)
- whitelistedBssids string[]
- list of BSSIDs to whitelist. Ex: "cc-:8e-:6f-:d4-:bf-:16", "cc-8e-6f-d4-bf-16", "cc-73-", "cc:82:"
- whitelistedSsids string[]
- List of SSIDs to whitelist
- 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 rogue
- min_rssi int
- Minimum RSSI for an AP to be considered rogue (ignoring APs that’s far away)
- whitelisted_bssids Sequence[str]
- list of BSSIDs to whitelist. Ex: "cc-:8e-:6f-:d4-:bf-:16", "cc-8e-6f-d4-bf-16", "cc-73-", "cc:82:"
- whitelisted_ssids Sequence[str]
- List of SSIDs to whitelist
- enabled Boolean
- Whether rogue detection is enabled
- honeypotEnabled Boolean
- Whether honeypot detection is enabled
- minDuration Number
- Minimum duration for a bssid to be considered rogue
- minRssi Number
- Minimum RSSI for an AP to be considered rogue (ignoring APs that’s far away)
- whitelistedBssids List<String>
- list of BSSIDs to whitelist. Ex: "cc-:8e-:6f-:d4-:bf-:16", "cc-8e-6f-d4-bf-16", "cc-73-", "cc:82:"
- whitelistedSsids List<String>
- List of SSIDs to whitelist
SettingRtsa, SettingRtsaArgs    
- AppWaking bool
- DisableDead boolReckoning 
- DisablePressure boolSensor 
- Enabled bool
- TrackAsset bool
- Asset tracking related
- AppWaking bool
- DisableDead boolReckoning 
- DisablePressure boolSensor 
- Enabled bool
- TrackAsset bool
- Asset tracking related
- appWaking Boolean
- disableDead BooleanReckoning 
- disablePressure BooleanSensor 
- enabled Boolean
- trackAsset Boolean
- Asset tracking related
- appWaking boolean
- disableDead booleanReckoning 
- disablePressure booleanSensor 
- enabled boolean
- trackAsset boolean
- Asset tracking related
- app_waking bool
- disable_dead_ boolreckoning 
- disable_pressure_ boolsensor 
- enabled bool
- track_asset bool
- Asset tracking related
- appWaking Boolean
- disableDead BooleanReckoning 
- disablePressure BooleanSensor 
- enabled Boolean
- trackAsset Boolean
- Asset tracking related
SettingSimpleAlert, SettingSimpleAlertArgs      
SettingSimpleAlertArpFailure, SettingSimpleAlertArpFailureArgs          
- ClientCount int
- Duration int
- failing within minutes
- IncidentCount int
- ClientCount int
- Duration int
- failing within minutes
- IncidentCount int
- clientCount Integer
- duration Integer
- failing within minutes
- incidentCount Integer
- clientCount number
- duration number
- failing within minutes
- incidentCount number
- client_count int
- duration int
- failing within minutes
- incident_count int
- clientCount Number
- duration Number
- failing within minutes
- incidentCount Number
SettingSimpleAlertDhcpFailure, SettingSimpleAlertDhcpFailureArgs          
- ClientCount int
- Duration int
- failing within minutes
- IncidentCount int
- ClientCount int
- Duration int
- failing within minutes
- IncidentCount int
- clientCount Integer
- duration Integer
- failing within minutes
- incidentCount Integer
- clientCount number
- duration number
- failing within minutes
- incidentCount number
- client_count int
- duration int
- failing within minutes
- incident_count int
- clientCount Number
- duration Number
- failing within minutes
- incidentCount Number
SettingSimpleAlertDnsFailure, SettingSimpleAlertDnsFailureArgs          
- ClientCount int
- Duration int
- failing within minutes
- IncidentCount int
- ClientCount int
- Duration int
- failing within minutes
- IncidentCount int
- clientCount Integer
- duration Integer
- failing within minutes
- incidentCount Integer
- clientCount number
- duration number
- failing within minutes
- incidentCount number
- client_count int
- duration int
- failing within minutes
- incident_count int
- clientCount Number
- duration Number
- failing within minutes
- incidentCount Number
SettingSkyatp, SettingSkyatpArgs    
- Enabled bool
- SendIp boolMac Mapping 
- Whether to send IP-MAC mapping to SkyATP
- Enabled bool
- SendIp boolMac Mapping 
- Whether to send IP-MAC mapping to SkyATP
- enabled Boolean
- sendIp BooleanMac Mapping 
- Whether to send IP-MAC mapping to SkyATP
- enabled boolean
- sendIp booleanMac Mapping 
- Whether to send IP-MAC mapping to SkyATP
- enabled bool
- send_ip_ boolmac_ mapping 
- Whether to send IP-MAC mapping to SkyATP
- enabled Boolean
- sendIp BooleanMac Mapping 
- Whether to send IP-MAC mapping to SkyATP
SettingSrxApp, SettingSrxAppArgs      
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
SettingSsr, SettingSsrArgs    
- ConductorHosts List<string>
- DisableStats bool
- ConductorHosts []string
- DisableStats bool
- conductorHosts List<String>
- disableStats Boolean
- conductorHosts string[]
- disableStats boolean
- conductor_hosts Sequence[str]
- disable_stats bool
- conductorHosts List<String>
- disableStats Boolean
SettingSyntheticTest, SettingSyntheticTestArgs      
SettingSyntheticTestVlan, SettingSyntheticTestVlanArgs        
- CustomTest List<string>Urls 
- Disabled bool
- For some vlans where we don't want this to run
- VlanIds List<string>
- CustomTest []stringUrls 
- Disabled bool
- For some vlans where we don't want this to run
- VlanIds []string
- customTest List<String>Urls 
- disabled Boolean
- For some vlans where we don't want this to run
- vlanIds List<String>
- customTest string[]Urls 
- disabled boolean
- For some vlans where we don't want this to run
- vlanIds string[]
- custom_test_ Sequence[str]urls 
- disabled bool
- For some vlans where we don't want this to run
- vlan_ids Sequence[str]
- customTest List<String>Urls 
- disabled Boolean
- For some vlans where we don't want this to run
- vlanIds List<String>
SettingSyntheticTestWanSpeedtest, SettingSyntheticTestWanSpeedtestArgs          
- enabled bool
- time_of_ strday 
- any/ HH:MM (24-hour format)
SettingUplinkPortConfig, SettingUplinkPortConfigArgs        
- Dot1x bool
- Whether to do 802.1x against uplink switch. When enaled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- KeepWlans 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 enaled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- KeepWlans 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 enaled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keepWlans 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 enaled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keepWlans 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 enaled, 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 enaled, AP cert will be used to do EAP-TLS and the Org's CA Cert has to be provisioned at the switch
- keepWlans 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.
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 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>
- Networks []string
- networks List<String>
- networks string[]
- networks Sequence[str]
- networks List<String>
SettingWanVna, SettingWanVnaArgs      
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
SettingWids, SettingWidsArgs    
SettingWidsRepeatedAuthFailures, SettingWidsRepeatedAuthFailuresArgs          
SettingWifi, SettingWifiArgs    
- CiscoEnabled bool
- Disable11k bool
- Whether to disable 11k
- DisableRadios boolWhen Power Constrained 
- EnableArp boolSpoof Check 
- When proxy_arp is enabled, check for arp spoofing.
- bool
- Enabled bool
- Enable Wi-Fi feature (using SUB-MAN license)
- LocateConnected bool
- Whether to locate connected clients
- LocateUnconnected bool
- Whether to locate unconnected clients
- MeshAllow 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 distrupt the connection. If roaming is desired, keep it disabled.
- MeshEnable boolCrm 
- Used to enable/disable CRM
- MeshEnabled bool
- Whether to enable Mesh feature for the site
- MeshPsk string
- Optional passphrase of mesh networking, default is generated randomly
- MeshSsid string
- Optional ssid of mesh networking, default is based on site_id
- ProxyArp string
- enum: default,disabled,enabled
- CiscoEnabled bool
- Disable11k bool
- Whether to disable 11k
- DisableRadios boolWhen Power Constrained 
- EnableArp boolSpoof Check 
- When proxy_arp is enabled, check for arp spoofing.
- bool
- Enabled bool
- Enable Wi-Fi feature (using SUB-MAN license)
- LocateConnected bool
- Whether to locate connected clients
- LocateUnconnected bool
- Whether to locate unconnected clients
- MeshAllow 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 distrupt the connection. If roaming is desired, keep it disabled.
- MeshEnable boolCrm 
- Used to enable/disable CRM
- MeshEnabled bool
- Whether to enable Mesh feature for the site
- MeshPsk string
- Optional passphrase of mesh networking, default is generated randomly
- MeshSsid string
- Optional ssid of mesh networking, default is based on site_id
- ProxyArp string
- enum: default,disabled,enabled
- ciscoEnabled Boolean
- disable11k Boolean
- Whether to disable 11k
- disableRadios BooleanWhen Power Constrained 
- enableArp BooleanSpoof Check 
- When proxy_arp is enabled, check for arp spoofing.
- Boolean
- enabled Boolean
- Enable Wi-Fi feature (using SUB-MAN license)
- locateConnected Boolean
- Whether to locate connected clients
- locateUnconnected Boolean
- Whether to locate unconnected clients
- meshAllow 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 distrupt the connection. If roaming is desired, keep it disabled.
- meshEnable BooleanCrm 
- Used to enable/disable CRM
- meshEnabled Boolean
- Whether to enable Mesh feature for the site
- meshPsk String
- Optional passphrase of mesh networking, default is generated randomly
- meshSsid String
- Optional ssid of mesh networking, default is based on site_id
- proxyArp String
- enum: default,disabled,enabled
- ciscoEnabled boolean
- disable11k boolean
- Whether to disable 11k
- disableRadios booleanWhen Power Constrained 
- enableArp booleanSpoof Check 
- When proxy_arp is enabled, check for arp spoofing.
- boolean
- enabled boolean
- Enable Wi-Fi feature (using SUB-MAN license)
- locateConnected boolean
- Whether to locate connected clients
- locateUnconnected boolean
- Whether to locate unconnected clients
- meshAllow 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 distrupt the connection. If roaming is desired, keep it disabled.
- meshEnable booleanCrm 
- Used to enable/disable CRM
- meshEnabled boolean
- Whether to enable Mesh feature for the site
- meshPsk string
- Optional passphrase of mesh networking, default is generated randomly
- meshSsid string
- Optional ssid of mesh networking, default is based on site_id
- proxyArp string
- enum: default,disabled,enabled
- cisco_enabled bool
- disable11k bool
- Whether to disable 11k
- disable_radios_ boolwhen_ power_ constrained 
- enable_arp_ boolspoof_ check 
- When proxy_arp is enabled, check for arp spoofing.
- bool
- 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 distrupt 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
- enum: default,disabled,enabled
- ciscoEnabled Boolean
- disable11k Boolean
- Whether to disable 11k
- disableRadios BooleanWhen Power Constrained 
- enableArp BooleanSpoof Check 
- When proxy_arp is enabled, check for arp spoofing.
- Boolean
- enabled Boolean
- Enable Wi-Fi feature (using SUB-MAN license)
- locateConnected Boolean
- Whether to locate connected clients
- locateUnconnected Boolean
- Whether to locate unconnected clients
- meshAllow 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 distrupt the connection. If roaming is desired, keep it disabled.
- meshEnable BooleanCrm 
- Used to enable/disable CRM
- meshEnabled Boolean
- Whether to enable Mesh feature for the site
- meshPsk String
- Optional passphrase of mesh networking, default is generated randomly
- meshSsid String
- Optional ssid of mesh networking, default is based on site_id
- proxyArp String
- enum: default,disabled,enabled
SettingWiredVna, SettingWiredVnaArgs      
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
SettingZoneOccupancyAlert, SettingZoneOccupancyAlertArgs        
- EmailNotifiers List<string>
- List of email addresses to send email notifications when the alert threshold is reached
- 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
- EmailNotifiers []string
- List of email addresses to send email notifications when the alert threshold is reached
- 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
- emailNotifiers List<String>
- List of email addresses to send email notifications when the alert threshold is reached
- 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
- emailNotifiers string[]
- List of email addresses to send email notifications when the alert threshold is reached
- 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]
- List of email addresses to send email notifications when the alert threshold is reached
- 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
- emailNotifiers List<String>
- List of email addresses to send email notifications when the alert threshold is reached
- 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 mist_site_setting with:
Site Setting can be imported by specifying the site_id
$ 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.
