UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

298 lines (297 loc) 9.43 kB
import * as pulumi from "@pulumi/pulumi"; /** * Configure Bluetooth Low Energy profile. * * ## Import * * WirelessController BleProfile can be imported using any of these accepted formats: * * ```sh * $ pulumi import fortios:wirelesscontroller/bleprofile:Bleprofile labelname {{name}} * ``` * * If you do not want to import arguments of block: * * $ export "FORTIOS_IMPORT_TABLE"="false" * * ```sh * $ pulumi import fortios:wirelesscontroller/bleprofile:Bleprofile labelname {{name}} * ``` * * $ unset "FORTIOS_IMPORT_TABLE" */ export declare class Bleprofile extends pulumi.CustomResource { /** * Get an existing Bleprofile 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?: BleprofileState, opts?: pulumi.CustomResourceOptions): Bleprofile; /** * Returns true if the given object is an instance of Bleprofile. 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 Bleprofile; /** * Advertising type. Valid values: `ibeacon`, `eddystone-uid`, `eddystone-url`. */ readonly advertising: pulumi.Output<string>; /** * Beacon interval (default = 100 msec). */ readonly beaconInterval: pulumi.Output<number>; /** * Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: `enable`, `disable`. */ readonly bleScanning: pulumi.Output<string>; /** * Comment. */ readonly comment: pulumi.Output<string>; /** * Eddystone instance ID. */ readonly eddystoneInstance: pulumi.Output<string>; /** * Eddystone namespace ID. */ readonly eddystoneNamespace: pulumi.Output<string>; /** * Eddystone URL. */ readonly eddystoneUrl: pulumi.Output<string>; /** * Eddystone encoded URL hexadecimal string */ readonly eddystoneUrlEncodeHex: pulumi.Output<string>; /** * Universally Unique Identifier (UUID; automatically assigned but can be manually reset). */ readonly ibeaconUuid: pulumi.Output<string>; /** * Major ID. */ readonly majorId: pulumi.Output<number>; /** * Minor ID. */ readonly minorId: pulumi.Output<number>; /** * Bluetooth Low Energy profile name. */ readonly name: pulumi.Output<string>; /** * Scan Interval (default = 50 msec). */ readonly scanInterval: pulumi.Output<number>; /** * Scan Period (default = 4000 msec). */ readonly scanPeriod: pulumi.Output<number>; /** * Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90). */ readonly scanThreshold: pulumi.Output<string>; /** * Scan Time (default = 1000 msec). */ readonly scanTime: pulumi.Output<number>; /** * Scan Type (default = active). Valid values: `active`, `passive`. */ readonly scanType: pulumi.Output<string>; /** * Scan Windows (default = 50 msec). */ readonly scanWindow: pulumi.Output<number>; /** * Transmit power level (default = 0). Valid values: `0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `10`, `11`, `12`. */ readonly txpower: pulumi.Output<string>; /** * Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ readonly vdomparam: pulumi.Output<string>; /** * Create a Bleprofile 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?: BleprofileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Bleprofile resources. */ export interface BleprofileState { /** * Advertising type. Valid values: `ibeacon`, `eddystone-uid`, `eddystone-url`. */ advertising?: pulumi.Input<string>; /** * Beacon interval (default = 100 msec). */ beaconInterval?: pulumi.Input<number>; /** * Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: `enable`, `disable`. */ bleScanning?: pulumi.Input<string>; /** * Comment. */ comment?: pulumi.Input<string>; /** * Eddystone instance ID. */ eddystoneInstance?: pulumi.Input<string>; /** * Eddystone namespace ID. */ eddystoneNamespace?: pulumi.Input<string>; /** * Eddystone URL. */ eddystoneUrl?: pulumi.Input<string>; /** * Eddystone encoded URL hexadecimal string */ eddystoneUrlEncodeHex?: pulumi.Input<string>; /** * Universally Unique Identifier (UUID; automatically assigned but can be manually reset). */ ibeaconUuid?: pulumi.Input<string>; /** * Major ID. */ majorId?: pulumi.Input<number>; /** * Minor ID. */ minorId?: pulumi.Input<number>; /** * Bluetooth Low Energy profile name. */ name?: pulumi.Input<string>; /** * Scan Interval (default = 50 msec). */ scanInterval?: pulumi.Input<number>; /** * Scan Period (default = 4000 msec). */ scanPeriod?: pulumi.Input<number>; /** * Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90). */ scanThreshold?: pulumi.Input<string>; /** * Scan Time (default = 1000 msec). */ scanTime?: pulumi.Input<number>; /** * Scan Type (default = active). Valid values: `active`, `passive`. */ scanType?: pulumi.Input<string>; /** * Scan Windows (default = 50 msec). */ scanWindow?: pulumi.Input<number>; /** * Transmit power level (default = 0). Valid values: `0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `10`, `11`, `12`. */ txpower?: pulumi.Input<string>; /** * Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; } /** * The set of arguments for constructing a Bleprofile resource. */ export interface BleprofileArgs { /** * Advertising type. Valid values: `ibeacon`, `eddystone-uid`, `eddystone-url`. */ advertising?: pulumi.Input<string>; /** * Beacon interval (default = 100 msec). */ beaconInterval?: pulumi.Input<number>; /** * Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: `enable`, `disable`. */ bleScanning?: pulumi.Input<string>; /** * Comment. */ comment?: pulumi.Input<string>; /** * Eddystone instance ID. */ eddystoneInstance?: pulumi.Input<string>; /** * Eddystone namespace ID. */ eddystoneNamespace?: pulumi.Input<string>; /** * Eddystone URL. */ eddystoneUrl?: pulumi.Input<string>; /** * Eddystone encoded URL hexadecimal string */ eddystoneUrlEncodeHex?: pulumi.Input<string>; /** * Universally Unique Identifier (UUID; automatically assigned but can be manually reset). */ ibeaconUuid?: pulumi.Input<string>; /** * Major ID. */ majorId?: pulumi.Input<number>; /** * Minor ID. */ minorId?: pulumi.Input<number>; /** * Bluetooth Low Energy profile name. */ name?: pulumi.Input<string>; /** * Scan Interval (default = 50 msec). */ scanInterval?: pulumi.Input<number>; /** * Scan Period (default = 4000 msec). */ scanPeriod?: pulumi.Input<number>; /** * Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90). */ scanThreshold?: pulumi.Input<string>; /** * Scan Time (default = 1000 msec). */ scanTime?: pulumi.Input<number>; /** * Scan Type (default = active). Valid values: `active`, `passive`. */ scanType?: pulumi.Input<string>; /** * Scan Windows (default = 50 msec). */ scanWindow?: pulumi.Input<number>; /** * Transmit power level (default = 0). Valid values: `0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `10`, `11`, `12`. */ txpower?: pulumi.Input<string>; /** * Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; }