@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
540 lines • 19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* This resource manages the Wireless Access Point configuration.
*
* It can be used to define specific configuration at the device level or to override AP Device Profile (`junipermist.org.DeviceprofileAp`).
*
* ## Import
*
* Using `pulumi import`, import `junipermist.device.Ap` with:
* AP Configuration can be imported by specifying the siteId and the deviceId
*
* ```sh
* $ pulumi import junipermist:device/ap:Ap ap_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
* ```
*/
export declare class Ap extends pulumi.CustomResource {
/**
* Get an existing Ap 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?: ApState, opts?: pulumi.CustomResourceOptions): Ap;
/**
* Returns true if the given object is an instance of Ap. 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 Ap;
/**
* Location integration settings for AeroScout on this access point
*/
readonly aeroscout: pulumi.Output<outputs.device.ApAeroscout | undefined>;
/**
* Location integration settings for Airista on this access point
*/
readonly airista: pulumi.Output<outputs.device.ApAirista | undefined>;
/**
* Bluetooth Low Energy beacon and asset settings for this access point
*/
readonly bleConfig: pulumi.Output<outputs.device.ApBleConfig | undefined>;
/**
* Location integration settings for Centrak on this access point
*/
readonly centrak: pulumi.Output<outputs.device.ApCentrak | undefined>;
/**
* Wireless client bridge settings for this access point
*/
readonly clientBridge: pulumi.Output<outputs.device.ApClientBridge | undefined>;
readonly deviceId: pulumi.Output<string>;
/**
* Whether to disable eth1 port
*/
readonly disableEth1: pulumi.Output<boolean>;
/**
* Whether to disable eth2 port
*/
readonly disableEth2: pulumi.Output<boolean>;
/**
* Whether to disable eth3 port
*/
readonly disableEth3: pulumi.Output<boolean>;
/**
* Whether to disable module port
*/
readonly disableModule: pulumi.Output<boolean>;
/**
* Electronic shelf label integration settings for this access point
*/
readonly eslConfig: pulumi.Output<outputs.device.ApEslConfig | undefined>;
/**
* For some AP models, flowControl can be enabled to address some switch compatibility issue
*/
readonly flowControl: pulumi.Output<boolean>;
/**
* Installation height of the AP, in meters
*/
readonly height: pulumi.Output<number | undefined>;
/**
* First custom image URL associated with the access point
*/
readonly image1Url: pulumi.Output<string>;
/**
* Second custom image URL associated with the access point
*/
readonly image2Url: pulumi.Output<string>;
/**
* Third custom image URL associated with the access point
*/
readonly image3Url: pulumi.Output<string>;
/**
* Management IP addressing settings for this access point
*/
readonly ipConfig: pulumi.Output<outputs.device.ApIpConfig | undefined>;
/**
* Link aggregation settings for supported AP Ethernet uplinks
*/
readonly lacpConfig: pulumi.Output<outputs.device.ApLacpConfig | undefined>;
/**
* Indicator light behavior settings for this access point
*/
readonly led: pulumi.Output<outputs.device.ApLed | undefined>;
/**
* Whether this map is considered locked down
*/
readonly locked: pulumi.Output<boolean | undefined>;
/**
* Access point MAC address used to identify the device
*/
readonly mac: pulumi.Output<string>;
/**
* Map where the device belongs to
*/
readonly mapId: pulumi.Output<string | undefined>;
/**
* Wireless mesh role and band settings for this access point
*/
readonly mesh: pulumi.Output<outputs.device.ApMesh | undefined>;
/**
* Hardware model reported for the access point
*/
readonly model: pulumi.Output<string>;
/**
* MQTT broker publishing settings for this access point
*/
readonly mqttConfig: pulumi.Output<outputs.device.ApMqttConfig | undefined>;
/**
* Configured hostname assigned to the access point
*/
readonly name: pulumi.Output<string>;
/**
* Any notes about this AP
*/
readonly notes: pulumi.Output<string | undefined>;
/**
* NTP servers used by this access point
*/
readonly ntpServers: pulumi.Output<string[] | undefined>;
/**
* Organization that owns this access point
*/
readonly orgId: pulumi.Output<string>;
/**
* AP orientation in degrees from 0 to 359, where 0 is up and 90 is right
*/
readonly orientation: pulumi.Output<number | undefined>;
/**
* Whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
*/
readonly poePassthrough: pulumi.Output<boolean>;
/**
* eth0 is not allowed here. Property key is the interface(s) name (e.g. `eth1` or `eth1,eth2`). If spcified, this takes predecence over switchConfig (switch_config requires user to configure all vlans manually, which is error-prone. thus deprecated)
*/
readonly portConfig: pulumi.Output<{
[key: string]: outputs.device.ApPortConfig;
} | undefined>;
/**
* Power negotiation and peripheral power settings for this access point
*/
readonly pwrConfig: pulumi.Output<outputs.device.ApPwrConfig | undefined>;
/**
* Radio configuration overrides for this access point
*/
readonly radioConfig: pulumi.Output<outputs.device.ApRadioConfig | undefined>;
/**
* Manufacturer serial number for the access point
*/
readonly serial: pulumi.Output<string>;
/**
* Site where this access point is assigned
*/
readonly siteId: pulumi.Output<string>;
/**
* Device type discriminator for access point records
*/
readonly type: pulumi.Output<string>;
/**
* Authentication and failover behavior for AP uplink ports
*/
readonly uplinkPortConfig: pulumi.Output<outputs.device.ApUplinkPortConfig | undefined>;
/**
* Legacy USB integration settings for this access point
*/
readonly usbConfig: pulumi.Output<outputs.device.ApUsbConfig | undefined>;
/**
* Variable values that override site variables for this access point
*/
readonly vars: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Horizontal map position of the AP, in pixels
*/
readonly x: pulumi.Output<number | undefined>;
/**
* Vertical map position of the AP, in pixels
*/
readonly y: pulumi.Output<number | undefined>;
/**
* Zigbee radio and network settings for this access point
*/
readonly zigbeeConfig: pulumi.Output<outputs.device.ApZigbeeConfig | undefined>;
/**
* Create a Ap 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: ApArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Ap resources.
*/
export interface ApState {
/**
* Location integration settings for AeroScout on this access point
*/
aeroscout?: pulumi.Input<inputs.device.ApAeroscout | undefined>;
/**
* Location integration settings for Airista on this access point
*/
airista?: pulumi.Input<inputs.device.ApAirista | undefined>;
/**
* Bluetooth Low Energy beacon and asset settings for this access point
*/
bleConfig?: pulumi.Input<inputs.device.ApBleConfig | undefined>;
/**
* Location integration settings for Centrak on this access point
*/
centrak?: pulumi.Input<inputs.device.ApCentrak | undefined>;
/**
* Wireless client bridge settings for this access point
*/
clientBridge?: pulumi.Input<inputs.device.ApClientBridge | undefined>;
deviceId?: pulumi.Input<string | undefined>;
/**
* Whether to disable eth1 port
*/
disableEth1?: pulumi.Input<boolean | undefined>;
/**
* Whether to disable eth2 port
*/
disableEth2?: pulumi.Input<boolean | undefined>;
/**
* Whether to disable eth3 port
*/
disableEth3?: pulumi.Input<boolean | undefined>;
/**
* Whether to disable module port
*/
disableModule?: pulumi.Input<boolean | undefined>;
/**
* Electronic shelf label integration settings for this access point
*/
eslConfig?: pulumi.Input<inputs.device.ApEslConfig | undefined>;
/**
* For some AP models, flowControl can be enabled to address some switch compatibility issue
*/
flowControl?: pulumi.Input<boolean | undefined>;
/**
* Installation height of the AP, in meters
*/
height?: pulumi.Input<number | undefined>;
/**
* First custom image URL associated with the access point
*/
image1Url?: pulumi.Input<string | undefined>;
/**
* Second custom image URL associated with the access point
*/
image2Url?: pulumi.Input<string | undefined>;
/**
* Third custom image URL associated with the access point
*/
image3Url?: pulumi.Input<string | undefined>;
/**
* Management IP addressing settings for this access point
*/
ipConfig?: pulumi.Input<inputs.device.ApIpConfig | undefined>;
/**
* Link aggregation settings for supported AP Ethernet uplinks
*/
lacpConfig?: pulumi.Input<inputs.device.ApLacpConfig | undefined>;
/**
* Indicator light behavior settings for this access point
*/
led?: pulumi.Input<inputs.device.ApLed | undefined>;
/**
* Whether this map is considered locked down
*/
locked?: pulumi.Input<boolean | undefined>;
/**
* Access point MAC address used to identify the device
*/
mac?: pulumi.Input<string | undefined>;
/**
* Map where the device belongs to
*/
mapId?: pulumi.Input<string | undefined>;
/**
* Wireless mesh role and band settings for this access point
*/
mesh?: pulumi.Input<inputs.device.ApMesh | undefined>;
/**
* Hardware model reported for the access point
*/
model?: pulumi.Input<string | undefined>;
/**
* MQTT broker publishing settings for this access point
*/
mqttConfig?: pulumi.Input<inputs.device.ApMqttConfig | undefined>;
/**
* Configured hostname assigned to the access point
*/
name?: pulumi.Input<string | undefined>;
/**
* Any notes about this AP
*/
notes?: pulumi.Input<string | undefined>;
/**
* NTP servers used by this access point
*/
ntpServers?: pulumi.Input<pulumi.Input<string>[] | undefined>;
/**
* Organization that owns this access point
*/
orgId?: pulumi.Input<string | undefined>;
/**
* AP orientation in degrees from 0 to 359, where 0 is up and 90 is right
*/
orientation?: pulumi.Input<number | undefined>;
/**
* Whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
*/
poePassthrough?: pulumi.Input<boolean | undefined>;
/**
* eth0 is not allowed here. Property key is the interface(s) name (e.g. `eth1` or `eth1,eth2`). If spcified, this takes predecence over switchConfig (switch_config requires user to configure all vlans manually, which is error-prone. thus deprecated)
*/
portConfig?: pulumi.Input<{
[key: string]: pulumi.Input<inputs.device.ApPortConfig>;
} | undefined>;
/**
* Power negotiation and peripheral power settings for this access point
*/
pwrConfig?: pulumi.Input<inputs.device.ApPwrConfig | undefined>;
/**
* Radio configuration overrides for this access point
*/
radioConfig?: pulumi.Input<inputs.device.ApRadioConfig | undefined>;
/**
* Manufacturer serial number for the access point
*/
serial?: pulumi.Input<string | undefined>;
/**
* Site where this access point is assigned
*/
siteId?: pulumi.Input<string | undefined>;
/**
* Device type discriminator for access point records
*/
type?: pulumi.Input<string | undefined>;
/**
* Authentication and failover behavior for AP uplink ports
*/
uplinkPortConfig?: pulumi.Input<inputs.device.ApUplinkPortConfig | undefined>;
/**
* Legacy USB integration settings for this access point
*/
usbConfig?: pulumi.Input<inputs.device.ApUsbConfig | undefined>;
/**
* Variable values that override site variables for this access point
*/
vars?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
} | undefined>;
/**
* Horizontal map position of the AP, in pixels
*/
x?: pulumi.Input<number | undefined>;
/**
* Vertical map position of the AP, in pixels
*/
y?: pulumi.Input<number | undefined>;
/**
* Zigbee radio and network settings for this access point
*/
zigbeeConfig?: pulumi.Input<inputs.device.ApZigbeeConfig | undefined>;
}
/**
* The set of arguments for constructing a Ap resource.
*/
export interface ApArgs {
/**
* Location integration settings for AeroScout on this access point
*/
aeroscout?: pulumi.Input<inputs.device.ApAeroscout | undefined>;
/**
* Location integration settings for Airista on this access point
*/
airista?: pulumi.Input<inputs.device.ApAirista | undefined>;
/**
* Bluetooth Low Energy beacon and asset settings for this access point
*/
bleConfig?: pulumi.Input<inputs.device.ApBleConfig | undefined>;
/**
* Location integration settings for Centrak on this access point
*/
centrak?: pulumi.Input<inputs.device.ApCentrak | undefined>;
/**
* Wireless client bridge settings for this access point
*/
clientBridge?: pulumi.Input<inputs.device.ApClientBridge | undefined>;
deviceId: pulumi.Input<string>;
/**
* Whether to disable eth1 port
*/
disableEth1?: pulumi.Input<boolean | undefined>;
/**
* Whether to disable eth2 port
*/
disableEth2?: pulumi.Input<boolean | undefined>;
/**
* Whether to disable eth3 port
*/
disableEth3?: pulumi.Input<boolean | undefined>;
/**
* Whether to disable module port
*/
disableModule?: pulumi.Input<boolean | undefined>;
/**
* Electronic shelf label integration settings for this access point
*/
eslConfig?: pulumi.Input<inputs.device.ApEslConfig | undefined>;
/**
* For some AP models, flowControl can be enabled to address some switch compatibility issue
*/
flowControl?: pulumi.Input<boolean | undefined>;
/**
* Installation height of the AP, in meters
*/
height?: pulumi.Input<number | undefined>;
/**
* Management IP addressing settings for this access point
*/
ipConfig?: pulumi.Input<inputs.device.ApIpConfig | undefined>;
/**
* Link aggregation settings for supported AP Ethernet uplinks
*/
lacpConfig?: pulumi.Input<inputs.device.ApLacpConfig | undefined>;
/**
* Indicator light behavior settings for this access point
*/
led?: pulumi.Input<inputs.device.ApLed | undefined>;
/**
* Whether this map is considered locked down
*/
locked?: pulumi.Input<boolean | undefined>;
/**
* Map where the device belongs to
*/
mapId?: pulumi.Input<string | undefined>;
/**
* Wireless mesh role and band settings for this access point
*/
mesh?: pulumi.Input<inputs.device.ApMesh | undefined>;
/**
* MQTT broker publishing settings for this access point
*/
mqttConfig?: pulumi.Input<inputs.device.ApMqttConfig | undefined>;
/**
* Configured hostname assigned to the access point
*/
name?: pulumi.Input<string | undefined>;
/**
* Any notes about this AP
*/
notes?: pulumi.Input<string | undefined>;
/**
* NTP servers used by this access point
*/
ntpServers?: pulumi.Input<pulumi.Input<string>[] | undefined>;
/**
* AP orientation in degrees from 0 to 359, where 0 is up and 90 is right
*/
orientation?: pulumi.Input<number | undefined>;
/**
* Whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
*/
poePassthrough?: pulumi.Input<boolean | undefined>;
/**
* eth0 is not allowed here. Property key is the interface(s) name (e.g. `eth1` or `eth1,eth2`). If spcified, this takes predecence over switchConfig (switch_config requires user to configure all vlans manually, which is error-prone. thus deprecated)
*/
portConfig?: pulumi.Input<{
[key: string]: pulumi.Input<inputs.device.ApPortConfig>;
} | undefined>;
/**
* Power negotiation and peripheral power settings for this access point
*/
pwrConfig?: pulumi.Input<inputs.device.ApPwrConfig | undefined>;
/**
* Radio configuration overrides for this access point
*/
radioConfig?: pulumi.Input<inputs.device.ApRadioConfig | undefined>;
/**
* Site where this access point is assigned
*/
siteId: pulumi.Input<string>;
/**
* Authentication and failover behavior for AP uplink ports
*/
uplinkPortConfig?: pulumi.Input<inputs.device.ApUplinkPortConfig | undefined>;
/**
* Legacy USB integration settings for this access point
*/
usbConfig?: pulumi.Input<inputs.device.ApUsbConfig | undefined>;
/**
* Variable values that override site variables for this access point
*/
vars?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
} | undefined>;
/**
* Horizontal map position of the AP, in pixels
*/
x?: pulumi.Input<number | undefined>;
/**
* Vertical map position of the AP, in pixels
*/
y?: pulumi.Input<number | undefined>;
/**
* Zigbee radio and network settings for this access point
*/
zigbeeConfig?: pulumi.Input<inputs.device.ApZigbeeConfig | undefined>;
}
//# sourceMappingURL=ap.d.ts.map