fortios.wirelesscontroller.Bleprofile
Explore with Pulumi AI
Configure Bluetooth Low Energy profile.
Create Bleprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Bleprofile(name: string, args?: BleprofileArgs, opts?: CustomResourceOptions);@overload
def Bleprofile(resource_name: str,
               args: Optional[BleprofileArgs] = None,
               opts: Optional[ResourceOptions] = None)
@overload
def Bleprofile(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               advertising: Optional[str] = None,
               beacon_interval: Optional[int] = None,
               ble_scanning: Optional[str] = None,
               comment: Optional[str] = None,
               eddystone_instance: Optional[str] = None,
               eddystone_namespace: Optional[str] = None,
               eddystone_url: Optional[str] = None,
               eddystone_url_encode_hex: Optional[str] = None,
               ibeacon_uuid: Optional[str] = None,
               major_id: Optional[int] = None,
               minor_id: Optional[int] = None,
               name: Optional[str] = None,
               scan_interval: Optional[int] = None,
               scan_period: Optional[int] = None,
               scan_threshold: Optional[str] = None,
               scan_time: Optional[int] = None,
               scan_type: Optional[str] = None,
               scan_window: Optional[int] = None,
               txpower: Optional[str] = None,
               vdomparam: Optional[str] = None)func NewBleprofile(ctx *Context, name string, args *BleprofileArgs, opts ...ResourceOption) (*Bleprofile, error)public Bleprofile(string name, BleprofileArgs? args = null, CustomResourceOptions? opts = null)
public Bleprofile(String name, BleprofileArgs args)
public Bleprofile(String name, BleprofileArgs args, CustomResourceOptions options)
type: fortios:wirelesscontroller:Bleprofile
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 BleprofileArgs
- 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 BleprofileArgs
- 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 BleprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BleprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BleprofileArgs
- 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 bleprofileResource = new Fortios.Wirelesscontroller.Bleprofile("bleprofileResource", new()
{
    Advertising = "string",
    BeaconInterval = 0,
    BleScanning = "string",
    Comment = "string",
    EddystoneInstance = "string",
    EddystoneNamespace = "string",
    EddystoneUrl = "string",
    EddystoneUrlEncodeHex = "string",
    IbeaconUuid = "string",
    MajorId = 0,
    MinorId = 0,
    Name = "string",
    ScanInterval = 0,
    ScanPeriod = 0,
    ScanThreshold = "string",
    ScanTime = 0,
    ScanType = "string",
    ScanWindow = 0,
    Txpower = "string",
    Vdomparam = "string",
});
example, err := wirelesscontroller.NewBleprofile(ctx, "bleprofileResource", &wirelesscontroller.BleprofileArgs{
	Advertising:           pulumi.String("string"),
	BeaconInterval:        pulumi.Int(0),
	BleScanning:           pulumi.String("string"),
	Comment:               pulumi.String("string"),
	EddystoneInstance:     pulumi.String("string"),
	EddystoneNamespace:    pulumi.String("string"),
	EddystoneUrl:          pulumi.String("string"),
	EddystoneUrlEncodeHex: pulumi.String("string"),
	IbeaconUuid:           pulumi.String("string"),
	MajorId:               pulumi.Int(0),
	MinorId:               pulumi.Int(0),
	Name:                  pulumi.String("string"),
	ScanInterval:          pulumi.Int(0),
	ScanPeriod:            pulumi.Int(0),
	ScanThreshold:         pulumi.String("string"),
	ScanTime:              pulumi.Int(0),
	ScanType:              pulumi.String("string"),
	ScanWindow:            pulumi.Int(0),
	Txpower:               pulumi.String("string"),
	Vdomparam:             pulumi.String("string"),
})
var bleprofileResource = new Bleprofile("bleprofileResource", BleprofileArgs.builder()
    .advertising("string")
    .beaconInterval(0)
    .bleScanning("string")
    .comment("string")
    .eddystoneInstance("string")
    .eddystoneNamespace("string")
    .eddystoneUrl("string")
    .eddystoneUrlEncodeHex("string")
    .ibeaconUuid("string")
    .majorId(0)
    .minorId(0)
    .name("string")
    .scanInterval(0)
    .scanPeriod(0)
    .scanThreshold("string")
    .scanTime(0)
    .scanType("string")
    .scanWindow(0)
    .txpower("string")
    .vdomparam("string")
    .build());
bleprofile_resource = fortios.wirelesscontroller.Bleprofile("bleprofileResource",
    advertising="string",
    beacon_interval=0,
    ble_scanning="string",
    comment="string",
    eddystone_instance="string",
    eddystone_namespace="string",
    eddystone_url="string",
    eddystone_url_encode_hex="string",
    ibeacon_uuid="string",
    major_id=0,
    minor_id=0,
    name="string",
    scan_interval=0,
    scan_period=0,
    scan_threshold="string",
    scan_time=0,
    scan_type="string",
    scan_window=0,
    txpower="string",
    vdomparam="string")
const bleprofileResource = new fortios.wirelesscontroller.Bleprofile("bleprofileResource", {
    advertising: "string",
    beaconInterval: 0,
    bleScanning: "string",
    comment: "string",
    eddystoneInstance: "string",
    eddystoneNamespace: "string",
    eddystoneUrl: "string",
    eddystoneUrlEncodeHex: "string",
    ibeaconUuid: "string",
    majorId: 0,
    minorId: 0,
    name: "string",
    scanInterval: 0,
    scanPeriod: 0,
    scanThreshold: "string",
    scanTime: 0,
    scanType: "string",
    scanWindow: 0,
    txpower: "string",
    vdomparam: "string",
});
type: fortios:wirelesscontroller:Bleprofile
properties:
    advertising: string
    beaconInterval: 0
    bleScanning: string
    comment: string
    eddystoneInstance: string
    eddystoneNamespace: string
    eddystoneUrl: string
    eddystoneUrlEncodeHex: string
    ibeaconUuid: string
    majorId: 0
    minorId: 0
    name: string
    scanInterval: 0
    scanPeriod: 0
    scanThreshold: string
    scanTime: 0
    scanType: string
    scanWindow: 0
    txpower: string
    vdomparam: string
Bleprofile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Bleprofile resource accepts the following input properties:
- Advertising string
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- BeaconInterval int
- Beacon interval (default = 100 msec).
- BleScanning string
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- Comment string
- Comment.
- EddystoneInstance string
- Eddystone instance ID.
- EddystoneNamespace string
- Eddystone namespace ID.
- EddystoneUrl string
- Eddystone URL.
- EddystoneUrl stringEncode Hex 
- Eddystone encoded URL hexadecimal string
- IbeaconUuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- MajorId int
- Major ID.
- MinorId int
- Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- ScanInterval int
- Scan Interval (default = 50 msec).
- ScanPeriod int
- Scan Period (default = 4000 msec).
- ScanThreshold string
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- ScanTime int
- Scan Time (default = 1000 msec).
- ScanType string
- Scan Type (default = active). Valid values: active,passive.
- ScanWindow int
- Scan Windows (default = 50 msec).
- Txpower string
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- Vdomparam 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.
- Advertising string
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- BeaconInterval int
- Beacon interval (default = 100 msec).
- BleScanning string
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- Comment string
- Comment.
- EddystoneInstance string
- Eddystone instance ID.
- EddystoneNamespace string
- Eddystone namespace ID.
- EddystoneUrl string
- Eddystone URL.
- EddystoneUrl stringEncode Hex 
- Eddystone encoded URL hexadecimal string
- IbeaconUuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- MajorId int
- Major ID.
- MinorId int
- Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- ScanInterval int
- Scan Interval (default = 50 msec).
- ScanPeriod int
- Scan Period (default = 4000 msec).
- ScanThreshold string
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- ScanTime int
- Scan Time (default = 1000 msec).
- ScanType string
- Scan Type (default = active). Valid values: active,passive.
- ScanWindow int
- Scan Windows (default = 50 msec).
- Txpower string
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- Vdomparam 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.
- advertising String
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beaconInterval Integer
- Beacon interval (default = 100 msec).
- bleScanning String
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment String
- Comment.
- eddystoneInstance String
- Eddystone instance ID.
- eddystoneNamespace String
- Eddystone namespace ID.
- eddystoneUrl String
- Eddystone URL.
- eddystoneUrl StringEncode Hex 
- Eddystone encoded URL hexadecimal string
- ibeaconUuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- majorId Integer
- Major ID.
- minorId Integer
- Minor ID.
- name String
- Bluetooth Low Energy profile name.
- scanInterval Integer
- Scan Interval (default = 50 msec).
- scanPeriod Integer
- Scan Period (default = 4000 msec).
- scanThreshold String
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scanTime Integer
- Scan Time (default = 1000 msec).
- scanType String
- Scan Type (default = active). Valid values: active,passive.
- scanWindow Integer
- Scan Windows (default = 50 msec).
- txpower String
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam 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.
- advertising string
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beaconInterval number
- Beacon interval (default = 100 msec).
- bleScanning string
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment string
- Comment.
- eddystoneInstance string
- Eddystone instance ID.
- eddystoneNamespace string
- Eddystone namespace ID.
- eddystoneUrl string
- Eddystone URL.
- eddystoneUrl stringEncode Hex 
- Eddystone encoded URL hexadecimal string
- ibeaconUuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- majorId number
- Major ID.
- minorId number
- Minor ID.
- name string
- Bluetooth Low Energy profile name.
- scanInterval number
- Scan Interval (default = 50 msec).
- scanPeriod number
- Scan Period (default = 4000 msec).
- scanThreshold string
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scanTime number
- Scan Time (default = 1000 msec).
- scanType string
- Scan Type (default = active). Valid values: active,passive.
- scanWindow number
- Scan Windows (default = 50 msec).
- txpower string
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam 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.
- advertising str
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beacon_interval int
- Beacon interval (default = 100 msec).
- ble_scanning str
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment str
- Comment.
- eddystone_instance str
- Eddystone instance ID.
- eddystone_namespace str
- Eddystone namespace ID.
- eddystone_url str
- Eddystone URL.
- eddystone_url_ strencode_ hex 
- Eddystone encoded URL hexadecimal string
- ibeacon_uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major_id int
- Major ID.
- minor_id int
- Minor ID.
- name str
- Bluetooth Low Energy profile name.
- scan_interval int
- Scan Interval (default = 50 msec).
- scan_period int
- Scan Period (default = 4000 msec).
- scan_threshold str
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan_time int
- Scan Time (default = 1000 msec).
- scan_type str
- Scan Type (default = active). Valid values: active,passive.
- scan_window int
- Scan Windows (default = 50 msec).
- txpower str
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam str
- 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.
- advertising String
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beaconInterval Number
- Beacon interval (default = 100 msec).
- bleScanning String
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment String
- Comment.
- eddystoneInstance String
- Eddystone instance ID.
- eddystoneNamespace String
- Eddystone namespace ID.
- eddystoneUrl String
- Eddystone URL.
- eddystoneUrl StringEncode Hex 
- Eddystone encoded URL hexadecimal string
- ibeaconUuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- majorId Number
- Major ID.
- minorId Number
- Minor ID.
- name String
- Bluetooth Low Energy profile name.
- scanInterval Number
- Scan Interval (default = 50 msec).
- scanPeriod Number
- Scan Period (default = 4000 msec).
- scanThreshold String
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scanTime Number
- Scan Time (default = 1000 msec).
- scanType String
- Scan Type (default = active). Valid values: active,passive.
- scanWindow Number
- Scan Windows (default = 50 msec).
- txpower String
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the Bleprofile 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 Bleprofile Resource
Get an existing Bleprofile 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?: BleprofileState, opts?: CustomResourceOptions): Bleprofile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        advertising: Optional[str] = None,
        beacon_interval: Optional[int] = None,
        ble_scanning: Optional[str] = None,
        comment: Optional[str] = None,
        eddystone_instance: Optional[str] = None,
        eddystone_namespace: Optional[str] = None,
        eddystone_url: Optional[str] = None,
        eddystone_url_encode_hex: Optional[str] = None,
        ibeacon_uuid: Optional[str] = None,
        major_id: Optional[int] = None,
        minor_id: Optional[int] = None,
        name: Optional[str] = None,
        scan_interval: Optional[int] = None,
        scan_period: Optional[int] = None,
        scan_threshold: Optional[str] = None,
        scan_time: Optional[int] = None,
        scan_type: Optional[str] = None,
        scan_window: Optional[int] = None,
        txpower: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Bleprofilefunc GetBleprofile(ctx *Context, name string, id IDInput, state *BleprofileState, opts ...ResourceOption) (*Bleprofile, error)public static Bleprofile Get(string name, Input<string> id, BleprofileState? state, CustomResourceOptions? opts = null)public static Bleprofile get(String name, Output<String> id, BleprofileState state, CustomResourceOptions options)resources:  _:    type: fortios:wirelesscontroller:Bleprofile    get:      id: ${id}- 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.
- Advertising string
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- BeaconInterval int
- Beacon interval (default = 100 msec).
- BleScanning string
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- Comment string
- Comment.
- EddystoneInstance string
- Eddystone instance ID.
- EddystoneNamespace string
- Eddystone namespace ID.
- EddystoneUrl string
- Eddystone URL.
- EddystoneUrl stringEncode Hex 
- Eddystone encoded URL hexadecimal string
- IbeaconUuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- MajorId int
- Major ID.
- MinorId int
- Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- ScanInterval int
- Scan Interval (default = 50 msec).
- ScanPeriod int
- Scan Period (default = 4000 msec).
- ScanThreshold string
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- ScanTime int
- Scan Time (default = 1000 msec).
- ScanType string
- Scan Type (default = active). Valid values: active,passive.
- ScanWindow int
- Scan Windows (default = 50 msec).
- Txpower string
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- Vdomparam 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.
- Advertising string
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- BeaconInterval int
- Beacon interval (default = 100 msec).
- BleScanning string
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- Comment string
- Comment.
- EddystoneInstance string
- Eddystone instance ID.
- EddystoneNamespace string
- Eddystone namespace ID.
- EddystoneUrl string
- Eddystone URL.
- EddystoneUrl stringEncode Hex 
- Eddystone encoded URL hexadecimal string
- IbeaconUuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- MajorId int
- Major ID.
- MinorId int
- Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- ScanInterval int
- Scan Interval (default = 50 msec).
- ScanPeriod int
- Scan Period (default = 4000 msec).
- ScanThreshold string
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- ScanTime int
- Scan Time (default = 1000 msec).
- ScanType string
- Scan Type (default = active). Valid values: active,passive.
- ScanWindow int
- Scan Windows (default = 50 msec).
- Txpower string
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- Vdomparam 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.
- advertising String
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beaconInterval Integer
- Beacon interval (default = 100 msec).
- bleScanning String
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment String
- Comment.
- eddystoneInstance String
- Eddystone instance ID.
- eddystoneNamespace String
- Eddystone namespace ID.
- eddystoneUrl String
- Eddystone URL.
- eddystoneUrl StringEncode Hex 
- Eddystone encoded URL hexadecimal string
- ibeaconUuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- majorId Integer
- Major ID.
- minorId Integer
- Minor ID.
- name String
- Bluetooth Low Energy profile name.
- scanInterval Integer
- Scan Interval (default = 50 msec).
- scanPeriod Integer
- Scan Period (default = 4000 msec).
- scanThreshold String
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scanTime Integer
- Scan Time (default = 1000 msec).
- scanType String
- Scan Type (default = active). Valid values: active,passive.
- scanWindow Integer
- Scan Windows (default = 50 msec).
- txpower String
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam 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.
- advertising string
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beaconInterval number
- Beacon interval (default = 100 msec).
- bleScanning string
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment string
- Comment.
- eddystoneInstance string
- Eddystone instance ID.
- eddystoneNamespace string
- Eddystone namespace ID.
- eddystoneUrl string
- Eddystone URL.
- eddystoneUrl stringEncode Hex 
- Eddystone encoded URL hexadecimal string
- ibeaconUuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- majorId number
- Major ID.
- minorId number
- Minor ID.
- name string
- Bluetooth Low Energy profile name.
- scanInterval number
- Scan Interval (default = 50 msec).
- scanPeriod number
- Scan Period (default = 4000 msec).
- scanThreshold string
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scanTime number
- Scan Time (default = 1000 msec).
- scanType string
- Scan Type (default = active). Valid values: active,passive.
- scanWindow number
- Scan Windows (default = 50 msec).
- txpower string
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam 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.
- advertising str
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beacon_interval int
- Beacon interval (default = 100 msec).
- ble_scanning str
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment str
- Comment.
- eddystone_instance str
- Eddystone instance ID.
- eddystone_namespace str
- Eddystone namespace ID.
- eddystone_url str
- Eddystone URL.
- eddystone_url_ strencode_ hex 
- Eddystone encoded URL hexadecimal string
- ibeacon_uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major_id int
- Major ID.
- minor_id int
- Minor ID.
- name str
- Bluetooth Low Energy profile name.
- scan_interval int
- Scan Interval (default = 50 msec).
- scan_period int
- Scan Period (default = 4000 msec).
- scan_threshold str
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan_time int
- Scan Time (default = 1000 msec).
- scan_type str
- Scan Type (default = active). Valid values: active,passive.
- scan_window int
- Scan Windows (default = 50 msec).
- txpower str
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam str
- 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.
- advertising String
- Advertising type. Valid values: ibeacon,eddystone-uid,eddystone-url.
- beaconInterval Number
- Beacon interval (default = 100 msec).
- bleScanning String
- Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: enable,disable.
- comment String
- Comment.
- eddystoneInstance String
- Eddystone instance ID.
- eddystoneNamespace String
- Eddystone namespace ID.
- eddystoneUrl String
- Eddystone URL.
- eddystoneUrl StringEncode Hex 
- Eddystone encoded URL hexadecimal string
- ibeaconUuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- majorId Number
- Major ID.
- minorId Number
- Minor ID.
- name String
- Bluetooth Low Energy profile name.
- scanInterval Number
- Scan Interval (default = 50 msec).
- scanPeriod Number
- Scan Period (default = 4000 msec).
- scanThreshold String
- Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scanTime Number
- Scan Time (default = 1000 msec).
- scanType String
- Scan Type (default = active). Valid values: active,passive.
- scanWindow Number
- Scan Windows (default = 50 msec).
- txpower String
- Transmit power level (default = 0). Valid values: 0,1,2,3,4,5,6,7,8,9,10,11,12.
- vdomparam 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.
Import
WirelessController BleProfile can be imported using any of these accepted formats:
$ pulumi import fortios:wirelesscontroller/bleprofile:Bleprofile labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:wirelesscontroller/bleprofile:Bleprofile labelname {{name}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the fortiosTerraform Provider.
