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;
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)
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
})
}
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,
};
});
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);
}
}
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}
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 string
- The unique name of the resource.
- args WirelessBluetoothSettingsArgs
- 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 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 string
- The unique name of the resource.
- args WirelessBluetoothSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WirelessBluetoothSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
var merakiWirelessBluetoothSettingsResource = new WirelessBluetoothSettings("merakiWirelessBluetoothSettingsResource", WirelessBluetoothSettingsArgs.builder()
.networkId("string")
.advertisingEnabled(false)
.major(0)
.majorMinorAssignmentMode("string")
.minor(0)
.scanningEnabled(false)
.uuid("string")
.build());
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")
const merakiWirelessBluetoothSettingsResource = new meraki.networks.WirelessBluetoothSettings("merakiWirelessBluetoothSettingsResource", {
networkId: "string",
advertisingEnabled: false,
major: 0,
majorMinorAssignmentMode: "string",
minor: 0,
scanningEnabled: false,
uuid: "string",
});
type: meraki:networks:WirelessBluetoothSettings
properties:
advertisingEnabled: false
major: 0
majorMinorAssignmentMode: string
minor: 0
networkId: string
scanningEnabled: false
uuid: string
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
The WirelessBluetoothSettings resource accepts the following input properties:
- Network
Id string - 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 stringAssignment Mode - 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 string
- The UUID to be used in the beacon identifier.
- Network
Id string - 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 stringAssignment Mode - 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 string
- The UUID to be used in the beacon identifier.
- network
Id String - networkId path parameter. Network ID
- advertising
Enabled Boolean - Whether APs will advertise beacons.
- major Integer
- The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
- major
Minor StringAssignment Mode - 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.
- scanning
Enabled Boolean - Whether APs will scan for Bluetooth enabled clients.
- uuid String
- The UUID to be used in the beacon identifier.
- network
Id string - networkId path parameter. Network ID
- advertising
Enabled boolean - Whether APs will advertise beacons.
- major number
- The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
- major
Minor stringAssignment Mode - 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.
- scanning
Enabled boolean - Whether APs will scan for Bluetooth enabled clients.
- uuid string
- The UUID to be used in the beacon identifier.
- network_
id 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_ strassignment_ mode - 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.
- network
Id String - networkId path parameter. Network ID
- advertising
Enabled Boolean - Whether APs will advertise beacons.
- major Number
- The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.
- major
Minor StringAssignment Mode - 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.
- scanning
Enabled 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:
- Esl
Enabled bool - 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 string
- The provider-assigned unique ID for this managed resource.
- esl
Enabled Boolean - Whether ESL is enabled on this network.
- id String
- The provider-assigned unique ID for this managed resource.
- esl
Enabled 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.
- esl
Enabled 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)
Resource lookup is not supported in YAML
- 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.
- 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 stringAssignment Mode - 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 string - networkId path parameter. Network ID
- Scanning
Enabled bool - 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 stringAssignment Mode - 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 string - networkId path parameter. Network ID
- Scanning
Enabled bool - Whether APs will scan for Bluetooth enabled clients.
- Uuid string
- The UUID to be used in the beacon identifier.
- advertising
Enabled Boolean - Whether APs will advertise beacons.
- esl
Enabled 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.
- major
Minor StringAssignment Mode - 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.
- network
Id String - networkId path parameter. Network ID
- scanning
Enabled Boolean - Whether APs will scan for Bluetooth enabled clients.
- uuid String
- The UUID to be used in the beacon identifier.
- advertising
Enabled boolean - Whether APs will advertise beacons.
- esl
Enabled 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.
- major
Minor stringAssignment Mode - 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.
- network
Id string - networkId path parameter. Network ID
- scanning
Enabled 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_ strassignment_ mode - 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.
- advertising
Enabled Boolean - Whether APs will advertise beacons.
- esl
Enabled 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.
- major
Minor StringAssignment Mode - 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.
- network
Id String - networkId path parameter. Network ID
- scanning
Enabled 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"
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.