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 = 0,
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.Int(0),
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(0)
.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=meraki.devices.WirelessRadioSettingsFiveGhzSettingsArgs(
channel=0,
channel_width=0,
target_power=0,
),
rf_profile_id="string",
two_four_ghz_settings=meraki.devices.WirelessRadioSettingsTwoFourGhzSettingsArgs(
channel=0,
target_power=0,
))
const wirelessRadioSettingsResource = new meraki.devices.WirelessRadioSettings("wirelessRadioSettingsResource", {
serial: "string",
fiveGhzSettings: {
channel: 0,
channelWidth: 0,
targetPower: 0,
},
rfProfileId: "string",
twoFourGhzSettings: {
channel: 0,
targetPower: 0,
},
});
type: meraki:devices:WirelessRadioSettings
properties:
fiveGhzSettings:
channel: 0
channelWidth: 0
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
The WirelessRadioSettings resource accepts the following input properties:
- Serial string
- serial path parameter.
- Five
Ghz WirelessSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz.
- Rf
Profile 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).
- Two
Four WirelessGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz.
- Serial string
- serial path parameter.
- Five
Ghz WirelessSettings Radio Settings Five Ghz Settings Args - Manual radio settings for 5 GHz.
- Rf
Profile 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).
- Two
Four WirelessGhz Settings Radio Settings Two Four Ghz Settings Args - Manual radio settings for 2.4 GHz.
- serial String
- serial path parameter.
- five
Ghz WirelessSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz.
- rf
Profile 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).
- two
Four WirelessGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz.
- serial string
- serial path parameter.
- five
Ghz WirelessSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz.
- rf
Profile 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).
- two
Four 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.
- five
Ghz Property MapSettings - Manual radio settings for 5 GHz.
- rf
Profile 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).
- two
Four 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) -> 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)
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.
- Five
Ghz WirelessSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz.
- Rf
Profile 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.
- Two
Four 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 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.
- Two
Four WirelessGhz Settings Radio Settings Two Four Ghz Settings Args - Manual radio settings for 2.4 GHz.
- five
Ghz WirelessSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz.
- rf
Profile 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.
- two
Four WirelessGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz.
- five
Ghz WirelessSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz.
- rf
Profile 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.
- two
Four 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.
- five
Ghz Property MapSettings - Manual radio settings for 5 GHz.
- rf
Profile 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.
- two
Four 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.
- Channel
Width int - 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 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 int - 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 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.
- channel
Width Integer - Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
- target
Power 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.
- channel
Width number - Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
- target
Power 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 int - 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.
- channel
Width Number - Sets a manual channel for 5 GHz. Can be '0', '20', '40', '80' or '160' or null for using auto channel width.
- target
Power 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.
- 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 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 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.
- target
Power 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.
- target
Power 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.
- target
Power 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
meraki
Terraform Provider.