UNPKG

@pulumi/meraki

Version:

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

243 lines (242 loc) 8.3 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = new meraki.networks.ApplianceSsids("example", { * authMode: "8021x-radius", * defaultVlanId: 1, * dhcpEnforcedDeauthentication: { * enabled: true, * }, * dot11w: { * enabled: true, * required: true, * }, * enabled: true, * encryptionMode: "wpa", * name: "My SSID", * networkId: "string", * number: "string", * psk: "psk", * radiusServers: [{ * host: "0.0.0.0", * port: 1000, * secret: "secret", * }], * visible: true, * wpaEncryptionMode: "WPA2 only", * }); * export const merakiNetworksApplianceSsidsExample = example; * ``` * * ## Import * * ```sh * $ pulumi import meraki:networks/applianceSsids:ApplianceSsids example "network_id,number" * ``` */ export declare class ApplianceSsids extends pulumi.CustomResource { /** * Get an existing ApplianceSsids 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?: ApplianceSsidsState, opts?: pulumi.CustomResourceOptions): ApplianceSsids; /** * Returns true if the given object is an instance of ApplianceSsids. 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 ApplianceSsids; /** * The association control method for the SSID. */ readonly authMode: pulumi.Output<string>; /** * The VLAN ID of the VLAN associated to this SSID. */ readonly defaultVlanId: pulumi.Output<number>; /** * DHCP Enforced Deauthentication enables the disassociation of wireless clients in addition to Mandatory DHCP. This param is only valid on firmware versions >= MX 17.0 where the associated LAN has Mandatory DHCP Enabled */ readonly dhcpEnforcedDeauthentication: pulumi.Output<outputs.networks.ApplianceSsidsDhcpEnforcedDeauthentication>; /** * The current setting for Protected Management Frames (802.11w). */ readonly dot11w: pulumi.Output<outputs.networks.ApplianceSsidsDot11w>; /** * Whether or not the SSID is enabled. */ readonly enabled: pulumi.Output<boolean>; /** * The psk encryption mode for the SSID. */ readonly encryptionMode: pulumi.Output<string>; /** * The name of the SSID. */ readonly name: pulumi.Output<string>; /** * networkId path parameter. Network ID */ readonly networkId: pulumi.Output<string>; /** * The number of the SSID. */ readonly number: pulumi.Output<number>; /** * The passkey for the SSID. This param is only valid if the authMode is 'psk'. */ readonly psk: pulumi.Output<string>; /** * The RADIUS 802.1x servers to be used for authentication. */ readonly radiusServers: pulumi.Output<outputs.networks.ApplianceSsidsRadiusServer[]>; /** * The RADIUS 802.1x servers to be used for authentication. */ readonly radiusServersResponses: pulumi.Output<outputs.networks.ApplianceSsidsRadiusServersResponse[]>; /** * Boolean indicating whether the MX should advertise or hide this SSID. */ readonly visible: pulumi.Output<boolean>; /** * WPA encryption mode for the SSID. */ readonly wpaEncryptionMode: pulumi.Output<string>; /** * Create a ApplianceSsids 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: ApplianceSsidsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ApplianceSsids resources. */ export interface ApplianceSsidsState { /** * The association control method for the SSID. */ authMode?: pulumi.Input<string>; /** * The VLAN ID of the VLAN associated to this SSID. */ defaultVlanId?: pulumi.Input<number>; /** * DHCP Enforced Deauthentication enables the disassociation of wireless clients in addition to Mandatory DHCP. This param is only valid on firmware versions >= MX 17.0 where the associated LAN has Mandatory DHCP Enabled */ dhcpEnforcedDeauthentication?: pulumi.Input<inputs.networks.ApplianceSsidsDhcpEnforcedDeauthentication>; /** * The current setting for Protected Management Frames (802.11w). */ dot11w?: pulumi.Input<inputs.networks.ApplianceSsidsDot11w>; /** * Whether or not the SSID is enabled. */ enabled?: pulumi.Input<boolean>; /** * The psk encryption mode for the SSID. */ encryptionMode?: pulumi.Input<string>; /** * The name of the SSID. */ name?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * The number of the SSID. */ number?: pulumi.Input<number>; /** * The passkey for the SSID. This param is only valid if the authMode is 'psk'. */ psk?: pulumi.Input<string>; /** * The RADIUS 802.1x servers to be used for authentication. */ radiusServers?: pulumi.Input<pulumi.Input<inputs.networks.ApplianceSsidsRadiusServer>[]>; /** * The RADIUS 802.1x servers to be used for authentication. */ radiusServersResponses?: pulumi.Input<pulumi.Input<inputs.networks.ApplianceSsidsRadiusServersResponse>[]>; /** * Boolean indicating whether the MX should advertise or hide this SSID. */ visible?: pulumi.Input<boolean>; /** * WPA encryption mode for the SSID. */ wpaEncryptionMode?: pulumi.Input<string>; } /** * The set of arguments for constructing a ApplianceSsids resource. */ export interface ApplianceSsidsArgs { /** * The association control method for the SSID. */ authMode?: pulumi.Input<string>; /** * The VLAN ID of the VLAN associated to this SSID. */ defaultVlanId?: pulumi.Input<number>; /** * DHCP Enforced Deauthentication enables the disassociation of wireless clients in addition to Mandatory DHCP. This param is only valid on firmware versions >= MX 17.0 where the associated LAN has Mandatory DHCP Enabled */ dhcpEnforcedDeauthentication?: pulumi.Input<inputs.networks.ApplianceSsidsDhcpEnforcedDeauthentication>; /** * The current setting for Protected Management Frames (802.11w). */ dot11w?: pulumi.Input<inputs.networks.ApplianceSsidsDot11w>; /** * Whether or not the SSID is enabled. */ enabled?: pulumi.Input<boolean>; /** * The psk encryption mode for the SSID. */ encryptionMode?: pulumi.Input<string>; /** * The name of the SSID. */ name?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * The number of the SSID. */ number: pulumi.Input<number>; /** * The passkey for the SSID. This param is only valid if the authMode is 'psk'. */ psk?: pulumi.Input<string>; /** * The RADIUS 802.1x servers to be used for authentication. */ radiusServers?: pulumi.Input<pulumi.Input<inputs.networks.ApplianceSsidsRadiusServer>[]>; /** * Boolean indicating whether the MX should advertise or hide this SSID. */ visible?: pulumi.Input<boolean>; /** * WPA encryption mode for the SSID. */ wpaEncryptionMode?: pulumi.Input<string>; }