meraki.devices.ApplianceRadioSettings
Explore with Pulumi AI
~>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
- Five
Ghz ApplianceSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz
- Rf
Profile stringId - RF Profile ID
- Two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz
- Serial string
- The device serial
- Five
Ghz ApplianceSettings Radio Settings Five Ghz Settings Args - Manual radio settings for 5 GHz
- Rf
Profile stringId - RF Profile ID
- Two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings Args - Manual radio settings for 2.4 GHz
- serial String
- The device serial
- five
Ghz ApplianceSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz
- rf
Profile StringId - RF Profile ID
- two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz
- serial string
- The device serial
- five
Ghz ApplianceSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz
- rf
Profile stringId - RF Profile ID
- two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz
- serial str
- The device serial
- five_
ghz_ Appliancesettings Radio Settings Five Ghz Settings Args - Manual radio settings for 5 GHz
- rf_
profile_ strid - RF Profile ID
- two_
four_ Applianceghz_ settings Radio Settings Two Four Ghz Settings Args - Manual radio settings for 2.4 GHz
- serial String
- The device serial
- five
Ghz Property MapSettings - Manual radio settings for 5 GHz
- rf
Profile StringId - RF Profile ID
- two
Four Property MapGhz Settings - 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.
- Five
Ghz ApplianceSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz
- Rf
Profile stringId - RF Profile ID
- Serial string
- The device serial
- Two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz
- Five
Ghz ApplianceSettings Radio Settings Five Ghz Settings Args - Manual radio settings for 5 GHz
- Rf
Profile stringId - RF Profile ID
- Serial string
- The device serial
- Two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings Args - Manual radio settings for 2.4 GHz
- five
Ghz ApplianceSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz
- rf
Profile StringId - RF Profile ID
- serial String
- The device serial
- two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz
- five
Ghz ApplianceSettings Radio Settings Five Ghz Settings - Manual radio settings for 5 GHz
- rf
Profile stringId - RF Profile ID
- serial string
- The device serial
- two
Four ApplianceGhz Settings Radio Settings Two Four Ghz Settings - Manual radio settings for 2.4 GHz
- five_
ghz_ Appliancesettings Radio Settings Five Ghz Settings Args - Manual radio settings for 5 GHz
- rf_
profile_ strid - RF Profile ID
- serial str
- The device serial
- two_
four_ Applianceghz_ 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 - RF Profile ID
- serial String
- The device serial
- two
Four Property MapGhz Settings - Manual radio settings for 2.4 GHz
Supporting Types
ApplianceRadioSettingsFiveGhzSettings, ApplianceRadioSettingsFiveGhzSettingsArgs
- 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 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 Integer
- Manual channel for 5 GHz
- channel
Width Integer - Manual channel width for 5 GHz
- target
Power Integer - Manual target power for 5 GHz
- channel number
- Manual channel for 5 GHz
- channel
Width number - Manual channel width for 5 GHz
- target
Power 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
- channel
Width Number - Manual channel width for 5 GHz
- target
Power Number - Manual target power for 5 GHz
ApplianceRadioSettingsTwoFourGhzSettings, ApplianceRadioSettingsTwoFourGhzSettingsArgs
- Channel int
- Manual channel for 2.4 GHz
- Target
Power int - 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 Integer
- Manual channel for 2.4 GHz
- target
Power Integer - Manual target power for 2.4 GHz
- channel number
- Manual channel for 2.4 GHz
- target
Power 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
- target
Power 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.