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

meraki.devices.WirelessBluetoothSettings

Explore with Pulumi AI

Example Usage

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

const example = new meraki.devices.WirelessBluetoothSettings("example", {
    major: 13,
    minor: 125,
    serial: "string",
    uuid: "00000000-0000-0000-000-000000000000",
});
export const merakiDevicesWirelessBluetoothSettingsExample = example;
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.devices.WirelessBluetoothSettings("example",
    major=13,
    minor=125,
    serial="string",
    uuid="00000000-0000-0000-000-000000000000")
pulumi.export("merakiDevicesWirelessBluetoothSettingsExample", example)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := devices.NewWirelessBluetoothSettings(ctx, "example", &devices.WirelessBluetoothSettingsArgs{
			Major:  pulumi.Int(13),
			Minor:  pulumi.Int(125),
			Serial: pulumi.String("string"),
			Uuid:   pulumi.String("00000000-0000-0000-000-000000000000"),
		})
		if err != nil {
			return err
		}
		ctx.Export("merakiDevicesWirelessBluetoothSettingsExample", 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.Devices.WirelessBluetoothSettings("example", new()
    {
        Major = 13,
        Minor = 125,
        Serial = "string",
        Uuid = "00000000-0000-0000-000-000000000000",
    });

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

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.devices.WirelessBluetoothSettings;
import com.pulumi.meraki.devices.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()
            .major(13)
            .minor(125)
            .serial("string")
            .uuid("00000000-0000-0000-000-000000000000")
            .build());

        ctx.export("merakiDevicesWirelessBluetoothSettingsExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:devices:WirelessBluetoothSettings
    properties:
      major: 13
      minor: 125
      serial: string
      uuid: 00000000-0000-0000-000-000000000000
outputs:
  merakiDevicesWirelessBluetoothSettingsExample: ${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,
                              serial: Optional[str] = None,
                              major: Optional[int] = None,
                              minor: Optional[int] = 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:devices: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 wirelessBluetoothSettingsResource = new Meraki.Devices.WirelessBluetoothSettings("wirelessBluetoothSettingsResource", new()
{
    Serial = "string",
    Major = 0,
    Minor = 0,
    Uuid = "string",
});
Copy
example, err := devices.NewWirelessBluetoothSettings(ctx, "wirelessBluetoothSettingsResource", &devices.WirelessBluetoothSettingsArgs{
	Serial: pulumi.String("string"),
	Major:  pulumi.Int(0),
	Minor:  pulumi.Int(0),
	Uuid:   pulumi.String("string"),
})
Copy
var wirelessBluetoothSettingsResource = new WirelessBluetoothSettings("wirelessBluetoothSettingsResource", WirelessBluetoothSettingsArgs.builder()
    .serial("string")
    .major(0)
    .minor(0)
    .uuid("string")
    .build());
Copy
wireless_bluetooth_settings_resource = meraki.devices.WirelessBluetoothSettings("wirelessBluetoothSettingsResource",
    serial="string",
    major=0,
    minor=0,
    uuid="string")
Copy
const wirelessBluetoothSettingsResource = new meraki.devices.WirelessBluetoothSettings("wirelessBluetoothSettingsResource", {
    serial: "string",
    major: 0,
    minor: 0,
    uuid: "string",
});
Copy
type: meraki:devices:WirelessBluetoothSettings
properties:
    major: 0
    minor: 0
    serial: string
    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:

Serial This property is required. string
serial path parameter.
Major int
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Minor int
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Uuid string
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Serial This property is required. string
serial path parameter.
Major int
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Minor int
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Uuid string
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial This property is required. String
serial path parameter.
major Integer
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor Integer
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
uuid String
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial This property is required. string
serial path parameter.
major number
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor number
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
uuid string
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial This property is required. str
serial path parameter.
major int
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor int
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
uuid str
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial This property is required. String
serial path parameter.
major Number
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor Number
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
uuid String
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
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,
        major: Optional[int] = None,
        minor: Optional[int] = None,
        serial: Optional[str] = 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:devices: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:
Major int
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Minor int
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Serial string
serial path parameter.
Uuid string
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Major int
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Minor int
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
Serial string
serial path parameter.
Uuid string
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
major Integer
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor Integer
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial String
serial path parameter.
uuid String
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
major number
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor number
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial string
serial path parameter.
uuid string
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
major int
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor int
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial str
serial path parameter.
uuid str
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
major Number
Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
minor Number
Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.
serial String
serial path parameter.
uuid String
Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value.

Import

$ pulumi import meraki:devices/wirelessBluetoothSettings:WirelessBluetoothSettings example "serial"
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.