UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

204 lines (203 loc) 7.64 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ## Import * * ```sh * $ pulumi import meraki:networks/wirelessRfProfiles:WirelessRfProfiles example "network_id,rf_profile_id" * ``` */ export declare class WirelessRfProfiles extends pulumi.CustomResource { /** * Get an existing WirelessRfProfiles resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WirelessRfProfilesState, opts?: pulumi.CustomResourceOptions): WirelessRfProfiles; /** * Returns true if the given object is an instance of WirelessRfProfiles. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is WirelessRfProfiles; /** * Settings that will be enabled if selectionType is set to 'ap'. */ readonly apBandSettings: pulumi.Output<outputs.networks.WirelessRfProfilesApBandSettings>; /** * Band selection can be set to either 'ssid' or 'ap'. This param is required on creation. */ readonly bandSelectionType: pulumi.Output<string>; /** * Steers client to best available access point. Can be either true or false. Defaults to true. */ readonly clientBalancingEnabled: pulumi.Output<boolean>; /** * Settings related to 5Ghz band */ readonly fiveGhzSettings: pulumi.Output<outputs.networks.WirelessRfProfilesFiveGhzSettings>; /** * Flex radio settings. */ readonly flexRadios: pulumi.Output<outputs.networks.WirelessRfProfilesFlexRadios | undefined>; /** * Minimum bitrate can be set to either 'band' or 'ssid'. Defaults to band. */ readonly minBitrateType: pulumi.Output<string>; /** * The name of the new profile. Must be unique. This param is required on creation. */ readonly name: pulumi.Output<string>; /** * The network ID of the RF Profile */ readonly networkId: pulumi.Output<string>; /** * Per-SSID radio settings by number. */ readonly perSsidSettings: pulumi.Output<outputs.networks.WirelessRfProfilesPerSsidSettings>; /** * rfProfileId path parameter. Rf profile ID */ readonly rfProfileId: pulumi.Output<string>; /** * Settings related to 6Ghz band. Only applicable to networks with 6Ghz capable APs */ readonly sixGhzSettings: pulumi.Output<outputs.networks.WirelessRfProfilesSixGhzSettings>; /** * Settings related to radio transmission. */ readonly transmission: pulumi.Output<outputs.networks.WirelessRfProfilesTransmission>; /** * Settings related to 2.4Ghz band */ readonly twoFourGhzSettings: pulumi.Output<outputs.networks.WirelessRfProfilesTwoFourGhzSettings>; /** * Create a WirelessRfProfiles resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: WirelessRfProfilesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering WirelessRfProfiles resources. */ export interface WirelessRfProfilesState { /** * Settings that will be enabled if selectionType is set to 'ap'. */ apBandSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesApBandSettings>; /** * Band selection can be set to either 'ssid' or 'ap'. This param is required on creation. */ bandSelectionType?: pulumi.Input<string>; /** * Steers client to best available access point. Can be either true or false. Defaults to true. */ clientBalancingEnabled?: pulumi.Input<boolean>; /** * Settings related to 5Ghz band */ fiveGhzSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesFiveGhzSettings>; /** * Flex radio settings. */ flexRadios?: pulumi.Input<inputs.networks.WirelessRfProfilesFlexRadios>; /** * Minimum bitrate can be set to either 'band' or 'ssid'. Defaults to band. */ minBitrateType?: pulumi.Input<string>; /** * The name of the new profile. Must be unique. This param is required on creation. */ name?: pulumi.Input<string>; /** * The network ID of the RF Profile */ networkId?: pulumi.Input<string>; /** * Per-SSID radio settings by number. */ perSsidSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesPerSsidSettings>; /** * rfProfileId path parameter. Rf profile ID */ rfProfileId?: pulumi.Input<string>; /** * Settings related to 6Ghz band. Only applicable to networks with 6Ghz capable APs */ sixGhzSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesSixGhzSettings>; /** * Settings related to radio transmission. */ transmission?: pulumi.Input<inputs.networks.WirelessRfProfilesTransmission>; /** * Settings related to 2.4Ghz band */ twoFourGhzSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesTwoFourGhzSettings>; } /** * The set of arguments for constructing a WirelessRfProfiles resource. */ export interface WirelessRfProfilesArgs { /** * Settings that will be enabled if selectionType is set to 'ap'. */ apBandSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesApBandSettings>; /** * Band selection can be set to either 'ssid' or 'ap'. This param is required on creation. */ bandSelectionType?: pulumi.Input<string>; /** * Steers client to best available access point. Can be either true or false. Defaults to true. */ clientBalancingEnabled?: pulumi.Input<boolean>; /** * Settings related to 5Ghz band */ fiveGhzSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesFiveGhzSettings>; /** * Flex radio settings. */ flexRadios?: pulumi.Input<inputs.networks.WirelessRfProfilesFlexRadios>; /** * Minimum bitrate can be set to either 'band' or 'ssid'. Defaults to band. */ minBitrateType?: pulumi.Input<string>; /** * The name of the new profile. Must be unique. This param is required on creation. */ name?: pulumi.Input<string>; /** * The network ID of the RF Profile */ networkId: pulumi.Input<string>; /** * Per-SSID radio settings by number. */ perSsidSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesPerSsidSettings>; /** * rfProfileId path parameter. Rf profile ID */ rfProfileId?: pulumi.Input<string>; /** * Settings related to 6Ghz band. Only applicable to networks with 6Ghz capable APs */ sixGhzSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesSixGhzSettings>; /** * Settings related to radio transmission. */ transmission?: pulumi.Input<inputs.networks.WirelessRfProfilesTransmission>; /** * Settings related to 2.4Ghz band */ twoFourGhzSettings?: pulumi.Input<inputs.networks.WirelessRfProfilesTwoFourGhzSettings>; }