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

meraki.devices.ApplianceRadioSettings

Explore with Pulumi AI

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

    ~>Warning: This resource does not represent a real-world entity in Meraki Dashboard, therefore changing or deleting this resource on its own has no immediate effect. Instead, it is a task part of a Meraki Dashboard workflow. It is executed in Meraki without any additional verification. It does not check if it was executed before or if a similar configuration or action already existed previously.

    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.ApplianceRadioSettings;
    import com.pulumi.meraki.devices.ApplianceRadioSettingsArgs;
    import com.pulumi.meraki.devices.inputs.ApplianceRadioSettingsFiveGhzSettingsArgs;
    import com.pulumi.meraki.devices.inputs.ApplianceRadioSettingsTwoFourGhzSettingsArgs;
    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 ApplianceRadioSettings("example", ApplianceRadioSettingsArgs.builder()
                .fiveGhzSettings(ApplianceRadioSettingsFiveGhzSettingsArgs.builder()
                    .channel(149)
                    .channel_width(20)
                    .target_power(15)
                    .build())
                .rfProfileId("1234")
                .serial("string")
                .twoFourGhzSettings(ApplianceRadioSettingsTwoFourGhzSettingsArgs.builder()
                    .channel(11)
                    .target_power(21)
                    .build())
                .build());
    
            ctx.export("merakiDevicesApplianceRadioSettingsExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:devices:ApplianceRadioSettings
        properties:
          fiveGhzSettings:
            channel: 149
            channel_width: 20
            target_power: 15
          rfProfileId: '1234'
          serial: string
          twoFourGhzSettings:
            channel: 11
            target_power: 21
    outputs:
      merakiDevicesApplianceRadioSettingsExample: ${example}
    

    Create ApplianceRadioSettings Resource

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

    Constructor syntax

    new ApplianceRadioSettings(name: string, args: ApplianceRadioSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def ApplianceRadioSettings(resource_name: str,
                               args: ApplianceRadioSettingsArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApplianceRadioSettings(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               serial: Optional[str] = None,
                               five_ghz_settings: Optional[ApplianceRadioSettingsFiveGhzSettingsArgs] = None,
                               rf_profile_id: Optional[str] = None,
                               two_four_ghz_settings: Optional[ApplianceRadioSettingsTwoFourGhzSettingsArgs] = None)
    func NewApplianceRadioSettings(ctx *Context, name string, args ApplianceRadioSettingsArgs, opts ...ResourceOption) (*ApplianceRadioSettings, error)
    public ApplianceRadioSettings(string name, ApplianceRadioSettingsArgs args, CustomResourceOptions? opts = null)
    public ApplianceRadioSettings(String name, ApplianceRadioSettingsArgs args)
    public ApplianceRadioSettings(String name, ApplianceRadioSettingsArgs args, CustomResourceOptions options)
    
    type: meraki:devices:ApplianceRadioSettings
    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 ApplianceRadioSettingsArgs
    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 ApplianceRadioSettingsArgs
    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 ApplianceRadioSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplianceRadioSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplianceRadioSettingsArgs
    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 applianceRadioSettingsResource = new Meraki.Devices.ApplianceRadioSettings("applianceRadioSettingsResource", new()
    {
        Serial = "string",
        FiveGhzSettings = new Meraki.Devices.Inputs.ApplianceRadioSettingsFiveGhzSettingsArgs
        {
            Channel = 0,
            ChannelWidth = 0,
            TargetPower = 0,
        },
        RfProfileId = "string",
        TwoFourGhzSettings = new Meraki.Devices.Inputs.ApplianceRadioSettingsTwoFourGhzSettingsArgs
        {
            Channel = 0,
            TargetPower = 0,
        },
    });
    
    example, err := devices.NewApplianceRadioSettings(ctx, "applianceRadioSettingsResource", &devices.ApplianceRadioSettingsArgs{
    	Serial: pulumi.String("string"),
    	FiveGhzSettings: &devices.ApplianceRadioSettingsFiveGhzSettingsArgs{
    		Channel:      pulumi.Int(0),
    		ChannelWidth: pulumi.Int(0),
    		TargetPower:  pulumi.Int(0),
    	},
    	RfProfileId: pulumi.String("string"),
    	TwoFourGhzSettings: &devices.ApplianceRadioSettingsTwoFourGhzSettingsArgs{
    		Channel:     pulumi.Int(0),
    		TargetPower: pulumi.Int(0),
    	},
    })
    
    var applianceRadioSettingsResource = new ApplianceRadioSettings("applianceRadioSettingsResource", ApplianceRadioSettingsArgs.builder()
        .serial("string")
        .fiveGhzSettings(ApplianceRadioSettingsFiveGhzSettingsArgs.builder()
            .channel(0)
            .channelWidth(0)
            .targetPower(0)
            .build())
        .rfProfileId("string")
        .twoFourGhzSettings(ApplianceRadioSettingsTwoFourGhzSettingsArgs.builder()
            .channel(0)
            .targetPower(0)
            .build())
        .build());
    
    appliance_radio_settings_resource = meraki.devices.ApplianceRadioSettings("applianceRadioSettingsResource",
        serial="string",
        five_ghz_settings=meraki.devices.ApplianceRadioSettingsFiveGhzSettingsArgs(
            channel=0,
            channel_width=0,
            target_power=0,
        ),
        rf_profile_id="string",
        two_four_ghz_settings=meraki.devices.ApplianceRadioSettingsTwoFourGhzSettingsArgs(
            channel=0,
            target_power=0,
        ))
    
    const applianceRadioSettingsResource = new meraki.devices.ApplianceRadioSettings("applianceRadioSettingsResource", {
        serial: "string",
        fiveGhzSettings: {
            channel: 0,
            channelWidth: 0,
            targetPower: 0,
        },
        rfProfileId: "string",
        twoFourGhzSettings: {
            channel: 0,
            targetPower: 0,
        },
    });
    
    type: meraki:devices:ApplianceRadioSettings
    properties:
        fiveGhzSettings:
            channel: 0
            channelWidth: 0
            targetPower: 0
        rfProfileId: string
        serial: string
        twoFourGhzSettings:
            channel: 0
            targetPower: 0
    

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

    Serial string
    The device serial
    FiveGhzSettings ApplianceRadioSettingsFiveGhzSettings
    Manual radio settings for 5 GHz
    RfProfileId string
    RF Profile ID
    TwoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettings
    Manual radio settings for 2.4 GHz
    Serial string
    The device serial
    FiveGhzSettings ApplianceRadioSettingsFiveGhzSettingsArgs
    Manual radio settings for 5 GHz
    RfProfileId string
    RF Profile ID
    TwoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettingsArgs
    Manual radio settings for 2.4 GHz
    serial String
    The device serial
    fiveGhzSettings ApplianceRadioSettingsFiveGhzSettings
    Manual radio settings for 5 GHz
    rfProfileId String
    RF Profile ID
    twoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettings
    Manual radio settings for 2.4 GHz
    serial string
    The device serial
    fiveGhzSettings ApplianceRadioSettingsFiveGhzSettings
    Manual radio settings for 5 GHz
    rfProfileId string
    RF Profile ID
    twoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettings
    Manual radio settings for 2.4 GHz
    serial str
    The device serial
    five_ghz_settings ApplianceRadioSettingsFiveGhzSettingsArgs
    Manual radio settings for 5 GHz
    rf_profile_id str
    RF Profile ID
    two_four_ghz_settings ApplianceRadioSettingsTwoFourGhzSettingsArgs
    Manual radio settings for 2.4 GHz
    serial String
    The device serial
    fiveGhzSettings Property Map
    Manual radio settings for 5 GHz
    rfProfileId String
    RF Profile ID
    twoFourGhzSettings Property Map
    Manual radio settings for 2.4 GHz

    Outputs

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

    Get an existing ApplianceRadioSettings 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?: ApplianceRadioSettingsState, opts?: CustomResourceOptions): ApplianceRadioSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            five_ghz_settings: Optional[ApplianceRadioSettingsFiveGhzSettingsArgs] = None,
            rf_profile_id: Optional[str] = None,
            serial: Optional[str] = None,
            two_four_ghz_settings: Optional[ApplianceRadioSettingsTwoFourGhzSettingsArgs] = None) -> ApplianceRadioSettings
    func GetApplianceRadioSettings(ctx *Context, name string, id IDInput, state *ApplianceRadioSettingsState, opts ...ResourceOption) (*ApplianceRadioSettings, error)
    public static ApplianceRadioSettings Get(string name, Input<string> id, ApplianceRadioSettingsState? state, CustomResourceOptions? opts = null)
    public static ApplianceRadioSettings get(String name, Output<String> id, ApplianceRadioSettingsState 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 ApplianceRadioSettingsFiveGhzSettings
    Manual radio settings for 5 GHz
    RfProfileId string
    RF Profile ID
    Serial string
    The device serial
    TwoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettings
    Manual radio settings for 2.4 GHz
    FiveGhzSettings ApplianceRadioSettingsFiveGhzSettingsArgs
    Manual radio settings for 5 GHz
    RfProfileId string
    RF Profile ID
    Serial string
    The device serial
    TwoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettingsArgs
    Manual radio settings for 2.4 GHz
    fiveGhzSettings ApplianceRadioSettingsFiveGhzSettings
    Manual radio settings for 5 GHz
    rfProfileId String
    RF Profile ID
    serial String
    The device serial
    twoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettings
    Manual radio settings for 2.4 GHz
    fiveGhzSettings ApplianceRadioSettingsFiveGhzSettings
    Manual radio settings for 5 GHz
    rfProfileId string
    RF Profile ID
    serial string
    The device serial
    twoFourGhzSettings ApplianceRadioSettingsTwoFourGhzSettings
    Manual radio settings for 2.4 GHz
    five_ghz_settings ApplianceRadioSettingsFiveGhzSettingsArgs
    Manual radio settings for 5 GHz
    rf_profile_id str
    RF Profile ID
    serial str
    The device serial
    two_four_ghz_settings ApplianceRadioSettingsTwoFourGhzSettingsArgs
    Manual radio settings for 2.4 GHz
    fiveGhzSettings Property Map
    Manual radio settings for 5 GHz
    rfProfileId String
    RF Profile ID
    serial String
    The device serial
    twoFourGhzSettings Property Map
    Manual radio settings for 2.4 GHz

    Supporting Types

    ApplianceRadioSettingsFiveGhzSettings, ApplianceRadioSettingsFiveGhzSettingsArgs

    Channel int
    Manual channel for 5 GHz
    ChannelWidth int
    Manual channel width for 5 GHz
    TargetPower int
    Manual target power for 5 GHz
    Channel int
    Manual channel for 5 GHz
    ChannelWidth int
    Manual channel width for 5 GHz
    TargetPower int
    Manual target power for 5 GHz
    channel Integer
    Manual channel for 5 GHz
    channelWidth Integer
    Manual channel width for 5 GHz
    targetPower Integer
    Manual target power for 5 GHz
    channel number
    Manual channel for 5 GHz
    channelWidth number
    Manual channel width for 5 GHz
    targetPower number
    Manual target power for 5 GHz
    channel int
    Manual channel for 5 GHz
    channel_width int
    Manual channel width for 5 GHz
    target_power int
    Manual target power for 5 GHz
    channel Number
    Manual channel for 5 GHz
    channelWidth Number
    Manual channel width for 5 GHz
    targetPower Number
    Manual target power for 5 GHz

    ApplianceRadioSettingsTwoFourGhzSettings, ApplianceRadioSettingsTwoFourGhzSettingsArgs

    Channel int
    Manual channel for 2.4 GHz
    TargetPower int
    Manual target power for 2.4 GHz
    Channel int
    Manual channel for 2.4 GHz
    TargetPower int
    Manual target power for 2.4 GHz
    channel Integer
    Manual channel for 2.4 GHz
    targetPower Integer
    Manual target power for 2.4 GHz
    channel number
    Manual channel for 2.4 GHz
    targetPower number
    Manual target power for 2.4 GHz
    channel int
    Manual channel for 2.4 GHz
    target_power int
    Manual target power for 2.4 GHz
    channel Number
    Manual channel for 2.4 GHz
    targetPower Number
    Manual target power for 2.4 GHz

    Import

    $ pulumi import meraki:devices/applianceRadioSettings:ApplianceRadioSettings 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