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

meraki.devices.WirelessRadioSettings

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.devices.WirelessRadioSettings;
import com.pulumi.meraki.devices.WirelessRadioSettingsArgs;
import com.pulumi.meraki.devices.inputs.WirelessRadioSettingsFiveGhzSettingsArgs;
import com.pulumi.meraki.devices.inputs.WirelessRadioSettingsTwoFourGhzSettingsArgs;
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 WirelessRadioSettings("example", WirelessRadioSettingsArgs.builder()
            .fiveGhzSettings(WirelessRadioSettingsFiveGhzSettingsArgs.builder()
                .channel(149)
                .channel_width(20)
                .target_power(15)
                .build())
            .rfProfileId("1234")
            .serial("string")
            .twoFourGhzSettings(WirelessRadioSettingsTwoFourGhzSettingsArgs.builder()
                .channel(11)
                .target_power(21)
                .build())
            .build());

        ctx.export("merakiDevicesWirelessRadioSettingsExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:devices:WirelessRadioSettings
    properties:
      fiveGhzSettings:
        channel: 149
        channel_width: 20
        target_power: 15
      rfProfileId: '1234'
      serial: string
      twoFourGhzSettings:
        channel: 11
        target_power: 21
outputs:
  merakiDevicesWirelessRadioSettingsExample: ${example}
Copy

Create WirelessRadioSettings Resource

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

Constructor syntax

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

@overload
def WirelessRadioSettings(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          serial: Optional[str] = None,
                          five_ghz_settings: Optional[WirelessRadioSettingsFiveGhzSettingsArgs] = None,
                          rf_profile_id: Optional[str] = None,
                          two_four_ghz_settings: Optional[WirelessRadioSettingsTwoFourGhzSettingsArgs] = None)
func NewWirelessRadioSettings(ctx *Context, name string, args WirelessRadioSettingsArgs, opts ...ResourceOption) (*WirelessRadioSettings, error)
public WirelessRadioSettings(string name, WirelessRadioSettingsArgs args, CustomResourceOptions? opts = null)
public WirelessRadioSettings(String name, WirelessRadioSettingsArgs args)
public WirelessRadioSettings(String name, WirelessRadioSettingsArgs args, CustomResourceOptions options)
type: meraki:devices:WirelessRadioSettings
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. WirelessRadioSettingsArgs
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. WirelessRadioSettingsArgs
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. WirelessRadioSettingsArgs
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. WirelessRadioSettingsArgs
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. WirelessRadioSettingsArgs
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 wirelessRadioSettingsResource = new Meraki.Devices.WirelessRadioSettings("wirelessRadioSettingsResource", new()
{
    Serial = "string",
    FiveGhzSettings = new Meraki.Devices.Inputs.WirelessRadioSettingsFiveGhzSettingsArgs
    {
        Channel = 0,
        ChannelWidth = "string",
        TargetPower = 0,
    },
    RfProfileId = "string",
    TwoFourGhzSettings = new Meraki.Devices.Inputs.WirelessRadioSettingsTwoFourGhzSettingsArgs
    {
        Channel = 0,
        TargetPower = 0,
    },
});
Copy
example, err := devices.NewWirelessRadioSettings(ctx, "wirelessRadioSettingsResource", &devices.WirelessRadioSettingsArgs{
	Serial: pulumi.String("string"),
	FiveGhzSettings: &devices.WirelessRadioSettingsFiveGhzSettingsArgs{
		Channel:      pulumi.Int(0),
		ChannelWidth: pulumi.String("string"),
		TargetPower:  pulumi.Int(0),
	},
	RfProfileId: pulumi.String("string"),
	TwoFourGhzSettings: &devices.WirelessRadioSettingsTwoFourGhzSettingsArgs{
		Channel:     pulumi.Int(0),
		TargetPower: pulumi.Int(0),
	},
})
Copy
var wirelessRadioSettingsResource = new WirelessRadioSettings("wirelessRadioSettingsResource", WirelessRadioSettingsArgs.builder()
    .serial("string")
    .fiveGhzSettings(WirelessRadioSettingsFiveGhzSettingsArgs.builder()
        .channel(0)
        .channelWidth("string")
        .targetPower(0)
        .build())
    .rfProfileId("string")
    .twoFourGhzSettings(WirelessRadioSettingsTwoFourGhzSettingsArgs.builder()
        .channel(0)
        .targetPower(0)
        .build())
    .build());
Copy
wireless_radio_settings_resource = meraki.devices.WirelessRadioSettings("wirelessRadioSettingsResource",
    serial="string",
    five_ghz_settings={
        "channel": 0,
        "channel_width": "string",
        "target_power": 0,
    },
    rf_profile_id="string",
    two_four_ghz_settings={
        "channel": 0,
        "target_power": 0,
    })
Copy
const wirelessRadioSettingsResource = new meraki.devices.WirelessRadioSettings("wirelessRadioSettingsResource", {
    serial: "string",
    fiveGhzSettings: {
        channel: 0,
        channelWidth: "string",
        targetPower: 0,
    },
    rfProfileId: "string",
    twoFourGhzSettings: {
        channel: 0,
        targetPower: 0,
    },
});
Copy
type: meraki:devices:WirelessRadioSettings
properties:
    fiveGhzSettings:
        channel: 0
        channelWidth: string
        targetPower: 0
    rfProfileId: string
    serial: string
    twoFourGhzSettings:
        channel: 0
        targetPower: 0
Copy

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

Serial This property is required. string
serial path parameter.
FiveGhzSettings WirelessRadioSettingsFiveGhzSettings
Manual radio settings for 5 GHz.
RfProfileId string
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
TwoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettings
Manual radio settings for 2.4 GHz.
Serial This property is required. string
serial path parameter.
FiveGhzSettings WirelessRadioSettingsFiveGhzSettingsArgs
Manual radio settings for 5 GHz.
RfProfileId string
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
TwoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettingsArgs
Manual radio settings for 2.4 GHz.
serial This property is required. String
serial path parameter.
fiveGhzSettings WirelessRadioSettingsFiveGhzSettings
Manual radio settings for 5 GHz.
rfProfileId String
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
twoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettings
Manual radio settings for 2.4 GHz.
serial This property is required. string
serial path parameter.
fiveGhzSettings WirelessRadioSettingsFiveGhzSettings
Manual radio settings for 5 GHz.
rfProfileId string
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
twoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettings
Manual radio settings for 2.4 GHz.
serial This property is required. str
serial path parameter.
five_ghz_settings WirelessRadioSettingsFiveGhzSettingsArgs
Manual radio settings for 5 GHz.
rf_profile_id str
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
two_four_ghz_settings WirelessRadioSettingsTwoFourGhzSettingsArgs
Manual radio settings for 2.4 GHz.
serial This property is required. String
serial path parameter.
fiveGhzSettings Property Map
Manual radio settings for 5 GHz.
rfProfileId String
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
twoFourGhzSettings Property Map
Manual radio settings for 2.4 GHz.

Outputs

All input properties are implicitly available as output properties. Additionally, the WirelessRadioSettings 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 WirelessRadioSettings Resource

Get an existing WirelessRadioSettings 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?: WirelessRadioSettingsState, opts?: CustomResourceOptions): WirelessRadioSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        five_ghz_settings: Optional[WirelessRadioSettingsFiveGhzSettingsArgs] = None,
        rf_profile_id: Optional[str] = None,
        serial: Optional[str] = None,
        two_four_ghz_settings: Optional[WirelessRadioSettingsTwoFourGhzSettingsArgs] = None) -> WirelessRadioSettings
func GetWirelessRadioSettings(ctx *Context, name string, id IDInput, state *WirelessRadioSettingsState, opts ...ResourceOption) (*WirelessRadioSettings, error)
public static WirelessRadioSettings Get(string name, Input<string> id, WirelessRadioSettingsState? state, CustomResourceOptions? opts = null)
public static WirelessRadioSettings get(String name, Output<String> id, WirelessRadioSettingsState state, CustomResourceOptions options)
resources:  _:    type: meraki:devices:WirelessRadioSettings    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:
FiveGhzSettings WirelessRadioSettingsFiveGhzSettings
Manual radio settings for 5 GHz.
RfProfileId string
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
Serial string
serial path parameter.
TwoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettings
Manual radio settings for 2.4 GHz.
FiveGhzSettings WirelessRadioSettingsFiveGhzSettingsArgs
Manual radio settings for 5 GHz.
RfProfileId string
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
Serial string
serial path parameter.
TwoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettingsArgs
Manual radio settings for 2.4 GHz.
fiveGhzSettings WirelessRadioSettingsFiveGhzSettings
Manual radio settings for 5 GHz.
rfProfileId String
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
serial String
serial path parameter.
twoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettings
Manual radio settings for 2.4 GHz.
fiveGhzSettings WirelessRadioSettingsFiveGhzSettings
Manual radio settings for 5 GHz.
rfProfileId string
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
serial string
serial path parameter.
twoFourGhzSettings WirelessRadioSettingsTwoFourGhzSettings
Manual radio settings for 2.4 GHz.
five_ghz_settings WirelessRadioSettingsFiveGhzSettingsArgs
Manual radio settings for 5 GHz.
rf_profile_id str
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
serial str
serial path parameter.
two_four_ghz_settings WirelessRadioSettingsTwoFourGhzSettingsArgs
Manual radio settings for 2.4 GHz.
fiveGhzSettings Property Map
Manual radio settings for 5 GHz.
rfProfileId String
The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
serial String
serial path parameter.
twoFourGhzSettings Property Map
Manual radio settings for 2.4 GHz.

Supporting Types

WirelessRadioSettingsFiveGhzSettings
, WirelessRadioSettingsFiveGhzSettingsArgs

Channel int
Sets a manual channel for 5 GHz. Can be '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161', '165', '169', '173' or '177' or null for using auto channel.
ChannelWidth string
Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
TargetPower int
Set a manual target power for 5 GHz. Can be between '8' or '30' or null for using auto power range.
Channel int
Sets a manual channel for 5 GHz. Can be '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161', '165', '169', '173' or '177' or null for using auto channel.
ChannelWidth string
Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
TargetPower int
Set a manual target power for 5 GHz. Can be between '8' or '30' or null for using auto power range.
channel Integer
Sets a manual channel for 5 GHz. Can be '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161', '165', '169', '173' or '177' or null for using auto channel.
channelWidth String
Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
targetPower Integer
Set a manual target power for 5 GHz. Can be between '8' or '30' or null for using auto power range.
channel number
Sets a manual channel for 5 GHz. Can be '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161', '165', '169', '173' or '177' or null for using auto channel.
channelWidth string
Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
targetPower number
Set a manual target power for 5 GHz. Can be between '8' or '30' or null for using auto power range.
channel int
Sets a manual channel for 5 GHz. Can be '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161', '165', '169', '173' or '177' or null for using auto channel.
channel_width str
Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
target_power int
Set a manual target power for 5 GHz. Can be between '8' or '30' or null for using auto power range.
channel Number
Sets a manual channel for 5 GHz. Can be '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161', '165', '169', '173' or '177' or null for using auto channel.
channelWidth String
Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
targetPower Number
Set a manual target power for 5 GHz. Can be between '8' or '30' or null for using auto power range.

WirelessRadioSettingsTwoFourGhzSettings
, WirelessRadioSettingsTwoFourGhzSettingsArgs

Channel int
Sets a manual channel for 2.4 GHz. Can be '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13' or '14' or null for using auto channel.
TargetPower int
Set a manual target power for 2.4 GHz. Can be between '5' or '30' or null for using auto power range.
Channel int
Sets a manual channel for 2.4 GHz. Can be '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13' or '14' or null for using auto channel.
TargetPower int
Set a manual target power for 2.4 GHz. Can be between '5' or '30' or null for using auto power range.
channel Integer
Sets a manual channel for 2.4 GHz. Can be '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13' or '14' or null for using auto channel.
targetPower Integer
Set a manual target power for 2.4 GHz. Can be between '5' or '30' or null for using auto power range.
channel number
Sets a manual channel for 2.4 GHz. Can be '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13' or '14' or null for using auto channel.
targetPower number
Set a manual target power for 2.4 GHz. Can be between '5' or '30' or null for using auto power range.
channel int
Sets a manual channel for 2.4 GHz. Can be '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13' or '14' or null for using auto channel.
target_power int
Set a manual target power for 2.4 GHz. Can be between '5' or '30' or null for using auto power range.
channel Number
Sets a manual channel for 2.4 GHz. Can be '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13' or '14' or null for using auto channel.
targetPower Number
Set a manual target power for 2.4 GHz. Can be between '5' or '30' or null for using auto power range.

Import

$ pulumi import meraki:devices/wirelessRadioSettings:WirelessRadioSettings 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.