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);
    }
}
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}
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 string
- The unique name of the resource.
- args WirelessRadioSettingsArgs
- 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 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 string
- The unique name of the resource.
- args WirelessRadioSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WirelessRadioSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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,
    },
});
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),
	},
})
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());
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,
    })
const wirelessRadioSettingsResource = new meraki.devices.WirelessRadioSettings("wirelessRadioSettingsResource", {
    serial: "string",
    fiveGhzSettings: {
        channel: 0,
        channelWidth: "string",
        targetPower: 0,
    },
    rfProfileId: "string",
    twoFourGhzSettings: {
        channel: 0,
        targetPower: 0,
    },
});
type: meraki:devices:WirelessRadioSettings
properties:
    fiveGhzSettings:
        channel: 0
        channelWidth: string
        targetPower: 0
    rfProfileId: string
    serial: string
    twoFourGhzSettings:
        channel: 0
        targetPower: 0
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 string
- serial path parameter.
- FiveGhz WirelessSettings Radio Settings Five Ghz Settings 
- Manual radio settings for 5 GHz.
- RfProfile stringId 
- 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).
- TwoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings 
- Manual radio settings for 2.4 GHz.
- Serial string
- serial path parameter.
- FiveGhz WirelessSettings Radio Settings Five Ghz Settings Args 
- Manual radio settings for 5 GHz.
- RfProfile stringId 
- 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).
- TwoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings Args 
- Manual radio settings for 2.4 GHz.
- serial String
- serial path parameter.
- fiveGhz WirelessSettings Radio Settings Five Ghz Settings 
- Manual radio settings for 5 GHz.
- rfProfile StringId 
- 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).
- twoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings 
- Manual radio settings for 2.4 GHz.
- serial string
- serial path parameter.
- fiveGhz WirelessSettings Radio Settings Five Ghz Settings 
- Manual radio settings for 5 GHz.
- rfProfile stringId 
- 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).
- twoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings 
- Manual radio settings for 2.4 GHz.
- serial str
- serial path parameter.
- five_ghz_ Wirelesssettings Radio Settings Five Ghz Settings Args 
- Manual radio settings for 5 GHz.
- rf_profile_ strid 
- 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_ Wirelessghz_ settings Radio Settings Two Four Ghz Settings Args 
- Manual radio settings for 2.4 GHz.
- serial String
- serial path parameter.
- fiveGhz Property MapSettings 
- Manual radio settings for 5 GHz.
- rfProfile StringId 
- 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).
- twoFour Property MapGhz Settings 
- 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) -> WirelessRadioSettingsfunc 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
- 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.
- FiveGhz WirelessSettings Radio Settings Five Ghz Settings 
- Manual radio settings for 5 GHz.
- RfProfile stringId 
- 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.
- TwoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings 
- Manual radio settings for 2.4 GHz.
- FiveGhz WirelessSettings Radio Settings Five Ghz Settings Args 
- Manual radio settings for 5 GHz.
- RfProfile stringId 
- 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.
- TwoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings Args 
- Manual radio settings for 2.4 GHz.
- fiveGhz WirelessSettings Radio Settings Five Ghz Settings 
- Manual radio settings for 5 GHz.
- rfProfile StringId 
- 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.
- twoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings 
- Manual radio settings for 2.4 GHz.
- fiveGhz WirelessSettings Radio Settings Five Ghz Settings 
- Manual radio settings for 5 GHz.
- rfProfile stringId 
- 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.
- twoFour WirelessGhz Settings Radio Settings Two Four Ghz Settings 
- Manual radio settings for 2.4 GHz.
- five_ghz_ Wirelesssettings Radio Settings Five Ghz Settings Args 
- Manual radio settings for 5 GHz.
- rf_profile_ strid 
- 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_ Wirelessghz_ settings Radio Settings Two Four Ghz Settings Args 
- Manual radio settings for 2.4 GHz.
- fiveGhz Property MapSettings 
- Manual radio settings for 5 GHz.
- rfProfile StringId 
- 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.
- twoFour Property MapGhz Settings 
- 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"
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 merakiTerraform Provider.
