1. Packages
  2. Cisco Meraki
  3. API Docs
  4. devices
  5. WirelessRadioSettings
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.devices.WirelessRadioSettings

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    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.
    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 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 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 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 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 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)
    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.
    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 int
    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 int
    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 Integer
    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 number
    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 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.
    channelWidth Number
    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 meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi