1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. networks
  5. WirelessSettings
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.networks.WirelessSettings

Explore with Pulumi AI

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.meraki.networks.WirelessSettings;
import com.pulumi.meraki.networks.WirelessSettingsArgs;
import com.pulumi.meraki.networks.inputs.WirelessSettingsNamedVlansArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new WirelessSettings("example", WirelessSettingsArgs.builder()
            .ipv6BridgeEnabled(false)
            .ledLightsOn(false)
            .locationAnalyticsEnabled(false)
            .meshingEnabled(true)
            .namedVlans(WirelessSettingsNamedVlansArgs.builder()
                .pool_dhcp_monitoring(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .networkId("string")
            .upgradestrategy("minimizeUpgradeTime")
            .build());

        ctx.export("merakiNetworksWirelessSettingsExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:networks:WirelessSettings
    properties:
      ipv6BridgeEnabled: false
      ledLightsOn: false
      locationAnalyticsEnabled: false
      meshingEnabled: true
      namedVlans:
        pool_dhcp_monitoring:
          duration: 5
          enabled: true
      networkId: string
      upgradestrategy: minimizeUpgradeTime
outputs:
  merakiNetworksWirelessSettingsExample: ${example}
Copy

Create WirelessSettings Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new WirelessSettings(name: string, args: WirelessSettingsArgs, opts?: CustomResourceOptions);
@overload
def WirelessSettings(resource_name: str,
                     args: WirelessSettingsArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def WirelessSettings(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     network_id: Optional[str] = None,
                     ipv6_bridge_enabled: Optional[bool] = None,
                     led_lights_on: Optional[bool] = None,
                     location_analytics_enabled: Optional[bool] = None,
                     meshing_enabled: Optional[bool] = None,
                     named_vlans: Optional[WirelessSettingsNamedVlansArgs] = None,
                     upgradestrategy: Optional[str] = None)
func NewWirelessSettings(ctx *Context, name string, args WirelessSettingsArgs, opts ...ResourceOption) (*WirelessSettings, error)
public WirelessSettings(string name, WirelessSettingsArgs args, CustomResourceOptions? opts = null)
public WirelessSettings(String name, WirelessSettingsArgs args)
public WirelessSettings(String name, WirelessSettingsArgs args, CustomResourceOptions options)
type: meraki:networks:WirelessSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WirelessSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WirelessSettingsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WirelessSettingsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WirelessSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WirelessSettingsArgs
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 wirelessSettingsResource = new Meraki.Networks.WirelessSettings("wirelessSettingsResource", new()
{
    NetworkId = "string",
    Ipv6BridgeEnabled = false,
    LedLightsOn = false,
    LocationAnalyticsEnabled = false,
    MeshingEnabled = false,
    NamedVlans = new Meraki.Networks.Inputs.WirelessSettingsNamedVlansArgs
    {
        PoolDhcpMonitoring = new Meraki.Networks.Inputs.WirelessSettingsNamedVlansPoolDhcpMonitoringArgs
        {
            Duration = 0,
            Enabled = false,
        },
    },
    Upgradestrategy = "string",
});
Copy
example, err := networks.NewWirelessSettings(ctx, "wirelessSettingsResource", &networks.WirelessSettingsArgs{
	NetworkId:                pulumi.String("string"),
	Ipv6BridgeEnabled:        pulumi.Bool(false),
	LedLightsOn:              pulumi.Bool(false),
	LocationAnalyticsEnabled: pulumi.Bool(false),
	MeshingEnabled:           pulumi.Bool(false),
	NamedVlans: &networks.WirelessSettingsNamedVlansArgs{
		PoolDhcpMonitoring: &networks.WirelessSettingsNamedVlansPoolDhcpMonitoringArgs{
			Duration: pulumi.Int(0),
			Enabled:  pulumi.Bool(false),
		},
	},
	Upgradestrategy: pulumi.String("string"),
})
Copy
var wirelessSettingsResource = new WirelessSettings("wirelessSettingsResource", WirelessSettingsArgs.builder()
    .networkId("string")
    .ipv6BridgeEnabled(false)
    .ledLightsOn(false)
    .locationAnalyticsEnabled(false)
    .meshingEnabled(false)
    .namedVlans(WirelessSettingsNamedVlansArgs.builder()
        .poolDhcpMonitoring(WirelessSettingsNamedVlansPoolDhcpMonitoringArgs.builder()
            .duration(0)
            .enabled(false)
            .build())
        .build())
    .upgradestrategy("string")
    .build());
Copy
wireless_settings_resource = meraki.networks.WirelessSettings("wirelessSettingsResource",
    network_id="string",
    ipv6_bridge_enabled=False,
    led_lights_on=False,
    location_analytics_enabled=False,
    meshing_enabled=False,
    named_vlans={
        "pool_dhcp_monitoring": {
            "duration": 0,
            "enabled": False,
        },
    },
    upgradestrategy="string")
Copy
const wirelessSettingsResource = new meraki.networks.WirelessSettings("wirelessSettingsResource", {
    networkId: "string",
    ipv6BridgeEnabled: false,
    ledLightsOn: false,
    locationAnalyticsEnabled: false,
    meshingEnabled: false,
    namedVlans: {
        poolDhcpMonitoring: {
            duration: 0,
            enabled: false,
        },
    },
    upgradestrategy: "string",
});
Copy
type: meraki:networks:WirelessSettings
properties:
    ipv6BridgeEnabled: false
    ledLightsOn: false
    locationAnalyticsEnabled: false
    meshingEnabled: false
    namedVlans:
        poolDhcpMonitoring:
            duration: 0
            enabled: false
    networkId: string
    upgradestrategy: string
Copy

WirelessSettings 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 WirelessSettings resource accepts the following input properties:

NetworkId This property is required. string
networkId path parameter. Network ID
Ipv6BridgeEnabled bool
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
LedLightsOn bool
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
LocationAnalyticsEnabled bool
Toggle for enabling or disabling location analytics for your network
MeshingEnabled bool
Toggle for enabling or disabling meshing in a network
NamedVlans WirelessSettingsNamedVlans
Named VLAN settings for wireless networks.
Upgradestrategy string
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
NetworkId This property is required. string
networkId path parameter. Network ID
Ipv6BridgeEnabled bool
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
LedLightsOn bool
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
LocationAnalyticsEnabled bool
Toggle for enabling or disabling location analytics for your network
MeshingEnabled bool
Toggle for enabling or disabling meshing in a network
NamedVlans WirelessSettingsNamedVlansArgs
Named VLAN settings for wireless networks.
Upgradestrategy string
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
networkId This property is required. String
networkId path parameter. Network ID
ipv6BridgeEnabled Boolean
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
ledLightsOn Boolean
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
locationAnalyticsEnabled Boolean
Toggle for enabling or disabling location analytics for your network
meshingEnabled Boolean
Toggle for enabling or disabling meshing in a network
namedVlans WirelessSettingsNamedVlans
Named VLAN settings for wireless networks.
upgradestrategy String
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
networkId This property is required. string
networkId path parameter. Network ID
ipv6BridgeEnabled boolean
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
ledLightsOn boolean
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
locationAnalyticsEnabled boolean
Toggle for enabling or disabling location analytics for your network
meshingEnabled boolean
Toggle for enabling or disabling meshing in a network
namedVlans WirelessSettingsNamedVlans
Named VLAN settings for wireless networks.
upgradestrategy string
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
network_id This property is required. str
networkId path parameter. Network ID
ipv6_bridge_enabled bool
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
led_lights_on bool
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
location_analytics_enabled bool
Toggle for enabling or disabling location analytics for your network
meshing_enabled bool
Toggle for enabling or disabling meshing in a network
named_vlans WirelessSettingsNamedVlansArgs
Named VLAN settings for wireless networks.
upgradestrategy str
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
networkId This property is required. String
networkId path parameter. Network ID
ipv6BridgeEnabled Boolean
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
ledLightsOn Boolean
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
locationAnalyticsEnabled Boolean
Toggle for enabling or disabling location analytics for your network
meshingEnabled Boolean
Toggle for enabling or disabling meshing in a network
namedVlans Property Map
Named VLAN settings for wireless networks.
upgradestrategy String
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'

Outputs

All input properties are implicitly available as output properties. Additionally, the WirelessSettings resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
RegulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
Id string
The provider-assigned unique ID for this managed resource.
RegulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
id String
The provider-assigned unique ID for this managed resource.
regulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
id string
The provider-assigned unique ID for this managed resource.
regulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
id str
The provider-assigned unique ID for this managed resource.
regulatory_domain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
id String
The provider-assigned unique ID for this managed resource.
regulatoryDomain Property Map
Regulatory domain information for this network.

Look up Existing WirelessSettings Resource

Get an existing WirelessSettings 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?: WirelessSettingsState, opts?: CustomResourceOptions): WirelessSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ipv6_bridge_enabled: Optional[bool] = None,
        led_lights_on: Optional[bool] = None,
        location_analytics_enabled: Optional[bool] = None,
        meshing_enabled: Optional[bool] = None,
        named_vlans: Optional[WirelessSettingsNamedVlansArgs] = None,
        network_id: Optional[str] = None,
        regulatory_domain: Optional[WirelessSettingsRegulatoryDomainArgs] = None,
        upgradestrategy: Optional[str] = None) -> WirelessSettings
func GetWirelessSettings(ctx *Context, name string, id IDInput, state *WirelessSettingsState, opts ...ResourceOption) (*WirelessSettings, error)
public static WirelessSettings Get(string name, Input<string> id, WirelessSettingsState? state, CustomResourceOptions? opts = null)
public static WirelessSettings get(String name, Output<String> id, WirelessSettingsState state, CustomResourceOptions options)
resources:  _:    type: meraki:networks:WirelessSettings    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Ipv6BridgeEnabled bool
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
LedLightsOn bool
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
LocationAnalyticsEnabled bool
Toggle for enabling or disabling location analytics for your network
MeshingEnabled bool
Toggle for enabling or disabling meshing in a network
NamedVlans WirelessSettingsNamedVlans
Named VLAN settings for wireless networks.
NetworkId string
networkId path parameter. Network ID
RegulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
Upgradestrategy string
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
Ipv6BridgeEnabled bool
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
LedLightsOn bool
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
LocationAnalyticsEnabled bool
Toggle for enabling or disabling location analytics for your network
MeshingEnabled bool
Toggle for enabling or disabling meshing in a network
NamedVlans WirelessSettingsNamedVlansArgs
Named VLAN settings for wireless networks.
NetworkId string
networkId path parameter. Network ID
RegulatoryDomain WirelessSettingsRegulatoryDomainArgs
Regulatory domain information for this network.
Upgradestrategy string
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
ipv6BridgeEnabled Boolean
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
ledLightsOn Boolean
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
locationAnalyticsEnabled Boolean
Toggle for enabling or disabling location analytics for your network
meshingEnabled Boolean
Toggle for enabling or disabling meshing in a network
namedVlans WirelessSettingsNamedVlans
Named VLAN settings for wireless networks.
networkId String
networkId path parameter. Network ID
regulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
upgradestrategy String
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
ipv6BridgeEnabled boolean
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
ledLightsOn boolean
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
locationAnalyticsEnabled boolean
Toggle for enabling or disabling location analytics for your network
meshingEnabled boolean
Toggle for enabling or disabling meshing in a network
namedVlans WirelessSettingsNamedVlans
Named VLAN settings for wireless networks.
networkId string
networkId path parameter. Network ID
regulatoryDomain WirelessSettingsRegulatoryDomain
Regulatory domain information for this network.
upgradestrategy string
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
ipv6_bridge_enabled bool
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
led_lights_on bool
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
location_analytics_enabled bool
Toggle for enabling or disabling location analytics for your network
meshing_enabled bool
Toggle for enabling or disabling meshing in a network
named_vlans WirelessSettingsNamedVlansArgs
Named VLAN settings for wireless networks.
network_id str
networkId path parameter. Network ID
regulatory_domain WirelessSettingsRegulatoryDomainArgs
Regulatory domain information for this network.
upgradestrategy str
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
ipv6BridgeEnabled Boolean
Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
ledLightsOn Boolean
Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
locationAnalyticsEnabled Boolean
Toggle for enabling or disabling location analytics for your network
meshingEnabled Boolean
Toggle for enabling or disabling meshing in a network
namedVlans Property Map
Named VLAN settings for wireless networks.
networkId String
networkId path parameter. Network ID
regulatoryDomain Property Map
Regulatory domain information for this network.
upgradestrategy String
The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'

Supporting Types

WirelessSettingsNamedVlans
, WirelessSettingsNamedVlansArgs

PoolDhcpMonitoring WirelessSettingsNamedVlansPoolDhcpMonitoring
Named VLAN Pool DHCP Monitoring settings.
PoolDhcpMonitoring WirelessSettingsNamedVlansPoolDhcpMonitoring
Named VLAN Pool DHCP Monitoring settings.
poolDhcpMonitoring WirelessSettingsNamedVlansPoolDhcpMonitoring
Named VLAN Pool DHCP Monitoring settings.
poolDhcpMonitoring WirelessSettingsNamedVlansPoolDhcpMonitoring
Named VLAN Pool DHCP Monitoring settings.
poolDhcpMonitoring Property Map
Named VLAN Pool DHCP Monitoring settings.

WirelessSettingsNamedVlansPoolDhcpMonitoring
, WirelessSettingsNamedVlansPoolDhcpMonitoringArgs

Duration int
The duration in minutes that devices will refrain from using dirty VLANs before adding them back to the pool.
Enabled bool
Whether or not devices using named VLAN pools should remove dirty VLANs from the pool, thereby preventing clients from being assigned to VLANs where they would be unable to obtain an IP address via DHCP
Duration int
The duration in minutes that devices will refrain from using dirty VLANs before adding them back to the pool.
Enabled bool
Whether or not devices using named VLAN pools should remove dirty VLANs from the pool, thereby preventing clients from being assigned to VLANs where they would be unable to obtain an IP address via DHCP
duration Integer
The duration in minutes that devices will refrain from using dirty VLANs before adding them back to the pool.
enabled Boolean
Whether or not devices using named VLAN pools should remove dirty VLANs from the pool, thereby preventing clients from being assigned to VLANs where they would be unable to obtain an IP address via DHCP
duration number
The duration in minutes that devices will refrain from using dirty VLANs before adding them back to the pool.
enabled boolean
Whether or not devices using named VLAN pools should remove dirty VLANs from the pool, thereby preventing clients from being assigned to VLANs where they would be unable to obtain an IP address via DHCP
duration int
The duration in minutes that devices will refrain from using dirty VLANs before adding them back to the pool.
enabled bool
Whether or not devices using named VLAN pools should remove dirty VLANs from the pool, thereby preventing clients from being assigned to VLANs where they would be unable to obtain an IP address via DHCP
duration Number
The duration in minutes that devices will refrain from using dirty VLANs before adding them back to the pool.
enabled Boolean
Whether or not devices using named VLAN pools should remove dirty VLANs from the pool, thereby preventing clients from being assigned to VLANs where they would be unable to obtain an IP address via DHCP

WirelessSettingsRegulatoryDomain
, WirelessSettingsRegulatoryDomainArgs

CountryCode string
The country code of the regulatory domain.
Name string
The name of the regulatory domain for this network.
Permits6e bool
Whether or not the regulatory domain for this network permits Wifi 6E.
CountryCode string
The country code of the regulatory domain.
Name string
The name of the regulatory domain for this network.
Permits6e bool
Whether or not the regulatory domain for this network permits Wifi 6E.
countryCode String
The country code of the regulatory domain.
name String
The name of the regulatory domain for this network.
permits6e Boolean
Whether or not the regulatory domain for this network permits Wifi 6E.
countryCode string
The country code of the regulatory domain.
name string
The name of the regulatory domain for this network.
permits6e boolean
Whether or not the regulatory domain for this network permits Wifi 6E.
country_code str
The country code of the regulatory domain.
name str
The name of the regulatory domain for this network.
permits6e bool
Whether or not the regulatory domain for this network permits Wifi 6E.
countryCode String
The country code of the regulatory domain.
name String
The name of the regulatory domain for this network.
permits6e Boolean
Whether or not the regulatory domain for this network permits Wifi 6E.

Import

$ pulumi import meraki:networks/wirelessSettings:WirelessSettings example "network_id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.