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

meraki.networks.WirelessBluetoothSettings

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = new meraki.networks.WirelessBluetoothSettings("example", {
    advertisingEnabled: true,
    major: 1,
    majorMinorAssignmentMode: "Non-unique",
    minor: 1,
    networkId: "string",
    scanningEnabled: true,
    uuid: "00000000-0000-0000-000-000000000000",
});
export const merakiNetworksWirelessBluetoothSettingsExample = example;
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.networks.WirelessBluetoothSettings("example",
    advertising_enabled=True,
    major=1,
    major_minor_assignment_mode="Non-unique",
    minor=1,
    network_id="string",
    scanning_enabled=True,
    uuid="00000000-0000-0000-000-000000000000")
pulumi.export("merakiNetworksWirelessBluetoothSettingsExample", example)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := networks.NewWirelessBluetoothSettings(ctx, "example", &networks.WirelessBluetoothSettingsArgs{
			AdvertisingEnabled:       pulumi.Bool(true),
			Major:                    pulumi.Int(1),
			MajorMinorAssignmentMode: pulumi.String("Non-unique"),
			Minor:                    pulumi.Int(1),
			NetworkId:                pulumi.String("string"),
			ScanningEnabled:          pulumi.Bool(true),
			Uuid:                     pulumi.String("00000000-0000-0000-000-000000000000"),
		})
		if err != nil {
			return err
		}
		ctx.Export("merakiNetworksWirelessBluetoothSettingsExample", example)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = new Meraki.Networks.WirelessBluetoothSettings("example", new()
    {
        AdvertisingEnabled = true,
        Major = 1,
        MajorMinorAssignmentMode = "Non-unique",
        Minor = 1,
        NetworkId = "string",
        ScanningEnabled = true,
        Uuid = "00000000-0000-0000-000-000000000000",
    });

    return new Dictionary<string, object?>
    {
        ["merakiNetworksWirelessBluetoothSettingsExample"] = example,
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.WirelessBluetoothSettings;
import com.pulumi.meraki.networks.WirelessBluetoothSettingsArgs;
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 WirelessBluetoothSettings("example", WirelessBluetoothSettingsArgs.builder()
            .advertisingEnabled(true)
            .major(1)
            .majorMinorAssignmentMode("Non-unique")
            .minor(1)
            .networkId("string")
            .scanningEnabled(true)
            .uuid("00000000-0000-0000-000-000000000000")
            .build());

        ctx.export("merakiNetworksWirelessBluetoothSettingsExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:networks:WirelessBluetoothSettings
    properties:
      advertisingEnabled: true
      major: 1
      majorMinorAssignmentMode: Non-unique
      minor: 1
      networkId: string
      scanningEnabled: true
      uuid: 00000000-0000-0000-000-000000000000
outputs:
  merakiNetworksWirelessBluetoothSettingsExample: ${example}
Copy

Create WirelessBluetoothSettings Resource

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

Constructor syntax

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

@overload
def WirelessBluetoothSettings(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              network_id: Optional[str] = None,
                              advertising_enabled: Optional[bool] = None,
                              major: Optional[int] = None,
                              major_minor_assignment_mode: Optional[str] = None,
                              minor: Optional[int] = None,
                              scanning_enabled: Optional[bool] = None,
                              uuid: Optional[str] = None)
func NewWirelessBluetoothSettings(ctx *Context, name string, args WirelessBluetoothSettingsArgs, opts ...ResourceOption) (*WirelessBluetoothSettings, error)
public WirelessBluetoothSettings(string name, WirelessBluetoothSettingsArgs args, CustomResourceOptions? opts = null)
public WirelessBluetoothSettings(String name, WirelessBluetoothSettingsArgs args)
public WirelessBluetoothSettings(String name, WirelessBluetoothSettingsArgs args, CustomResourceOptions options)
type: meraki:networks:WirelessBluetoothSettings
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. WirelessBluetoothSettingsArgs
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. WirelessBluetoothSettingsArgs
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. WirelessBluetoothSettingsArgs
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. WirelessBluetoothSettingsArgs
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. WirelessBluetoothSettingsArgs
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 merakiWirelessBluetoothSettingsResource = new Meraki.Networks.WirelessBluetoothSettings("merakiWirelessBluetoothSettingsResource", new()
{
    NetworkId = "string",
    AdvertisingEnabled = false,
    Major = 0,
    MajorMinorAssignmentMode = "string",
    Minor = 0,
    ScanningEnabled = false,
    Uuid = "string",
});
Copy
example, err := networks.NewWirelessBluetoothSettings(ctx, "merakiWirelessBluetoothSettingsResource", &networks.WirelessBluetoothSettingsArgs{
	NetworkId:                pulumi.String("string"),
	AdvertisingEnabled:       pulumi.Bool(false),
	Major:                    pulumi.Int(0),
	MajorMinorAssignmentMode: pulumi.String("string"),
	Minor:                    pulumi.Int(0),
	ScanningEnabled:          pulumi.Bool(false),
	Uuid:                     pulumi.String("string"),
})
Copy
var merakiWirelessBluetoothSettingsResource = new WirelessBluetoothSettings("merakiWirelessBluetoothSettingsResource", WirelessBluetoothSettingsArgs.builder()
    .networkId("string")
    .advertisingEnabled(false)
    .major(0)
    .majorMinorAssignmentMode("string")
    .minor(0)
    .scanningEnabled(false)
    .uuid("string")
    .build());
Copy
meraki_wireless_bluetooth_settings_resource = meraki.networks.WirelessBluetoothSettings("merakiWirelessBluetoothSettingsResource",
    network_id="string",
    advertising_enabled=False,
    major=0,
    major_minor_assignment_mode="string",
    minor=0,
    scanning_enabled=False,
    uuid="string")
Copy
const merakiWirelessBluetoothSettingsResource = new meraki.networks.WirelessBluetoothSettings("merakiWirelessBluetoothSettingsResource", {
    networkId: "string",
    advertisingEnabled: false,
    major: 0,
    majorMinorAssignmentMode: "string",
    minor: 0,
    scanningEnabled: false,
    uuid: "string",
});
Copy
type: meraki:networks:WirelessBluetoothSettings
properties:
    advertisingEnabled: false
    major: 0
    majorMinorAssignmentMode: string
    minor: 0
    networkId: string
    scanningEnabled: false
    uuid: string
Copy

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

NetworkId This property is required. string
networkId path parameter. Network ID
AdvertisingEnabled bool
Whether APs will advertise beacons.
Major int
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
MajorMinorAssignmentMode string
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
Minor int
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
ScanningEnabled bool
Whether APs will scan for Bluetooth enabled clients.
Uuid string
The UUID to be used in the beacon identifier.
NetworkId This property is required. string
networkId path parameter. Network ID
AdvertisingEnabled bool
Whether APs will advertise beacons.
Major int
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
MajorMinorAssignmentMode string
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
Minor int
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
ScanningEnabled bool
Whether APs will scan for Bluetooth enabled clients.
Uuid string
The UUID to be used in the beacon identifier.
networkId This property is required. String
networkId path parameter. Network ID
advertisingEnabled Boolean
Whether APs will advertise beacons.
major Integer
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
majorMinorAssignmentMode String
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor Integer
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
scanningEnabled Boolean
Whether APs will scan for Bluetooth enabled clients.
uuid String
The UUID to be used in the beacon identifier.
networkId This property is required. string
networkId path parameter. Network ID
advertisingEnabled boolean
Whether APs will advertise beacons.
major number
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
majorMinorAssignmentMode string
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor number
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
scanningEnabled boolean
Whether APs will scan for Bluetooth enabled clients.
uuid string
The UUID to be used in the beacon identifier.
network_id This property is required. str
networkId path parameter. Network ID
advertising_enabled bool
Whether APs will advertise beacons.
major int
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
major_minor_assignment_mode str
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor int
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
scanning_enabled bool
Whether APs will scan for Bluetooth enabled clients.
uuid str
The UUID to be used in the beacon identifier.
networkId This property is required. String
networkId path parameter. Network ID
advertisingEnabled Boolean
Whether APs will advertise beacons.
major Number
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
majorMinorAssignmentMode String
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor Number
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
scanningEnabled Boolean
Whether APs will scan for Bluetooth enabled clients.
uuid String
The UUID to be used in the beacon identifier.

Outputs

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

EslEnabled bool
Whether ESL is enabled on this network.
Id string
The provider-assigned unique ID for this managed resource.
EslEnabled bool
Whether ESL is enabled on this network.
Id string
The provider-assigned unique ID for this managed resource.
eslEnabled Boolean
Whether ESL is enabled on this network.
id String
The provider-assigned unique ID for this managed resource.
eslEnabled boolean
Whether ESL is enabled on this network.
id string
The provider-assigned unique ID for this managed resource.
esl_enabled bool
Whether ESL is enabled on this network.
id str
The provider-assigned unique ID for this managed resource.
eslEnabled Boolean
Whether ESL is enabled on this network.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing WirelessBluetoothSettings Resource

Get an existing WirelessBluetoothSettings 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?: WirelessBluetoothSettingsState, opts?: CustomResourceOptions): WirelessBluetoothSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        advertising_enabled: Optional[bool] = None,
        esl_enabled: Optional[bool] = None,
        major: Optional[int] = None,
        major_minor_assignment_mode: Optional[str] = None,
        minor: Optional[int] = None,
        network_id: Optional[str] = None,
        scanning_enabled: Optional[bool] = None,
        uuid: Optional[str] = None) -> WirelessBluetoothSettings
func GetWirelessBluetoothSettings(ctx *Context, name string, id IDInput, state *WirelessBluetoothSettingsState, opts ...ResourceOption) (*WirelessBluetoothSettings, error)
public static WirelessBluetoothSettings Get(string name, Input<string> id, WirelessBluetoothSettingsState? state, CustomResourceOptions? opts = null)
public static WirelessBluetoothSettings get(String name, Output<String> id, WirelessBluetoothSettingsState state, CustomResourceOptions options)
resources:  _:    type: meraki:networks:WirelessBluetoothSettings    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:
AdvertisingEnabled bool
Whether APs will advertise beacons.
EslEnabled bool
Whether ESL is enabled on this network.
Major int
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
MajorMinorAssignmentMode string
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
Minor int
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
NetworkId string
networkId path parameter. Network ID
ScanningEnabled bool
Whether APs will scan for Bluetooth enabled clients.
Uuid string
The UUID to be used in the beacon identifier.
AdvertisingEnabled bool
Whether APs will advertise beacons.
EslEnabled bool
Whether ESL is enabled on this network.
Major int
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
MajorMinorAssignmentMode string
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
Minor int
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
NetworkId string
networkId path parameter. Network ID
ScanningEnabled bool
Whether APs will scan for Bluetooth enabled clients.
Uuid string
The UUID to be used in the beacon identifier.
advertisingEnabled Boolean
Whether APs will advertise beacons.
eslEnabled Boolean
Whether ESL is enabled on this network.
major Integer
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
majorMinorAssignmentMode String
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor Integer
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
networkId String
networkId path parameter. Network ID
scanningEnabled Boolean
Whether APs will scan for Bluetooth enabled clients.
uuid String
The UUID to be used in the beacon identifier.
advertisingEnabled boolean
Whether APs will advertise beacons.
eslEnabled boolean
Whether ESL is enabled on this network.
major number
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
majorMinorAssignmentMode string
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor number
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
networkId string
networkId path parameter. Network ID
scanningEnabled boolean
Whether APs will scan for Bluetooth enabled clients.
uuid string
The UUID to be used in the beacon identifier.
advertising_enabled bool
Whether APs will advertise beacons.
esl_enabled bool
Whether ESL is enabled on this network.
major int
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
major_minor_assignment_mode str
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor int
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
network_id str
networkId path parameter. Network ID
scanning_enabled bool
Whether APs will scan for Bluetooth enabled clients.
uuid str
The UUID to be used in the beacon identifier.
advertisingEnabled Boolean
Whether APs will advertise beacons.
eslEnabled Boolean
Whether ESL is enabled on this network.
major Number
The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
majorMinorAssignmentMode String
The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')
minor Number
The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
networkId String
networkId path parameter. Network ID
scanningEnabled Boolean
Whether APs will scan for Bluetooth enabled clients.
uuid String
The UUID to be used in the beacon identifier.

Import

$ pulumi import meraki:networks/wirelessBluetoothSettings:WirelessBluetoothSettings 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.