1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWirelesscontrollerBleprofile
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectWirelesscontrollerBleprofile

Explore with Pulumi AI

Configure Bluetooth Low Energy profile.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectWirelesscontrollerBleprofile("trname", {
    beaconInterval: 100,
    bleScanning: "disable",
    comment: "This is a Terraform example",
    eddystoneInstance: "abcdef",
    eddystoneNamespace: "0102030405",
    eddystoneUrl: "http://www.fortinet.com",
    eddystoneUrlEncodeHex: "00666f7274696e65-7407",
    ibeaconUuid: "005ea414-cbd1-11e5-9956-625662870761",
    majorId: 1000,
    minorId: 2000,
    txpower: "0",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectWirelesscontrollerBleprofile("trname",
    beacon_interval=100,
    ble_scanning="disable",
    comment="This is a Terraform example",
    eddystone_instance="abcdef",
    eddystone_namespace="0102030405",
    eddystone_url="http://www.fortinet.com",
    eddystone_url_encode_hex="00666f7274696e65-7407",
    ibeacon_uuid="005ea414-cbd1-11e5-9956-625662870761",
    major_id=1000,
    minor_id=2000,
    txpower="0")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewObjectWirelesscontrollerBleprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerBleprofileArgs{
			BeaconInterval:        pulumi.Float64(100),
			BleScanning:           pulumi.String("disable"),
			Comment:               pulumi.String("This is a Terraform example"),
			EddystoneInstance:     pulumi.String("abcdef"),
			EddystoneNamespace:    pulumi.String("0102030405"),
			EddystoneUrl:          pulumi.String("http://www.fortinet.com"),
			EddystoneUrlEncodeHex: pulumi.String("00666f7274696e65-7407"),
			IbeaconUuid:           pulumi.String("005ea414-cbd1-11e5-9956-625662870761"),
			MajorId:               pulumi.Float64(1000),
			MinorId:               pulumi.Float64(2000),
			Txpower:               pulumi.String("0"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.ObjectWirelesscontrollerBleprofile("trname", new()
    {
        BeaconInterval = 100,
        BleScanning = "disable",
        Comment = "This is a Terraform example",
        EddystoneInstance = "abcdef",
        EddystoneNamespace = "0102030405",
        EddystoneUrl = "http://www.fortinet.com",
        EddystoneUrlEncodeHex = "00666f7274696e65-7407",
        IbeaconUuid = "005ea414-cbd1-11e5-9956-625662870761",
        MajorId = 1000,
        MinorId = 2000,
        Txpower = "0",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerBleprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerBleprofileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var trname = new ObjectWirelesscontrollerBleprofile("trname", ObjectWirelesscontrollerBleprofileArgs.builder()
            .beaconInterval(100)
            .bleScanning("disable")
            .comment("This is a Terraform example")
            .eddystoneInstance("abcdef")
            .eddystoneNamespace("0102030405")
            .eddystoneUrl("http://www.fortinet.com")
            .eddystoneUrlEncodeHex("00666f7274696e65-7407")
            .ibeaconUuid("005ea414-cbd1-11e5-9956-625662870761")
            .majorId(1000)
            .minorId(2000)
            .txpower("0")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectWirelesscontrollerBleprofile
    properties:
      beaconInterval: 100
      bleScanning: disable
      comment: This is a Terraform example
      eddystoneInstance: abcdef
      eddystoneNamespace: '0102030405'
      eddystoneUrl: http://www.fortinet.com
      eddystoneUrlEncodeHex: 00666f7274696e65-7407
      ibeaconUuid: 005ea414-cbd1-11e5-9956-625662870761
      majorId: 1000
      minorId: 2000
      txpower: '0'
Copy

Create ObjectWirelesscontrollerBleprofile Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ObjectWirelesscontrollerBleprofile(name: string, args?: ObjectWirelesscontrollerBleprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerBleprofile(resource_name: str,
                                       args: Optional[ObjectWirelesscontrollerBleprofileArgs] = None,
                                       opts: Optional[ResourceOptions] = None)

@overload
def ObjectWirelesscontrollerBleprofile(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       adom: Optional[str] = None,
                                       advertisings: Optional[Sequence[str]] = None,
                                       beacon_interval: Optional[float] = 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[float] = None,
                                       minor_id: Optional[float] = None,
                                       name: Optional[str] = None,
                                       object_wirelesscontroller_bleprofile_id: Optional[str] = None,
                                       scan_interval: Optional[float] = None,
                                       scan_period: Optional[float] = None,
                                       scan_threshold: Optional[str] = None,
                                       scan_time: Optional[float] = None,
                                       scan_type: Optional[str] = None,
                                       scan_window: Optional[float] = None,
                                       scopetype: Optional[str] = None,
                                       txpower: Optional[str] = None)
func NewObjectWirelesscontrollerBleprofile(ctx *Context, name string, args *ObjectWirelesscontrollerBleprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerBleprofile, error)
public ObjectWirelesscontrollerBleprofile(string name, ObjectWirelesscontrollerBleprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerBleprofile(String name, ObjectWirelesscontrollerBleprofileArgs args)
public ObjectWirelesscontrollerBleprofile(String name, ObjectWirelesscontrollerBleprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerBleprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ObjectWirelesscontrollerBleprofileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ObjectWirelesscontrollerBleprofileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ObjectWirelesscontrollerBleprofileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ObjectWirelesscontrollerBleprofileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerBleprofileArgs
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 objectWirelesscontrollerBleprofileResource = new Fortimanager.ObjectWirelesscontrollerBleprofile("objectWirelesscontrollerBleprofileResource", new()
{
    Adom = "string",
    Advertisings = new[]
    {
        "string",
    },
    BeaconInterval = 0,
    BleScanning = "string",
    Comment = "string",
    EddystoneInstance = "string",
    EddystoneNamespace = "string",
    EddystoneUrl = "string",
    EddystoneUrlEncodeHex = "string",
    IbeaconUuid = "string",
    MajorId = 0,
    MinorId = 0,
    Name = "string",
    ObjectWirelesscontrollerBleprofileId = "string",
    ScanInterval = 0,
    ScanPeriod = 0,
    ScanThreshold = "string",
    ScanTime = 0,
    ScanType = "string",
    ScanWindow = 0,
    Scopetype = "string",
    Txpower = "string",
});
Copy
example, err := fortimanager.NewObjectWirelesscontrollerBleprofile(ctx, "objectWirelesscontrollerBleprofileResource", &fortimanager.ObjectWirelesscontrollerBleprofileArgs{
	Adom: pulumi.String("string"),
	Advertisings: pulumi.StringArray{
		pulumi.String("string"),
	},
	BeaconInterval:                       pulumi.Float64(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.Float64(0),
	MinorId:                              pulumi.Float64(0),
	Name:                                 pulumi.String("string"),
	ObjectWirelesscontrollerBleprofileId: pulumi.String("string"),
	ScanInterval:                         pulumi.Float64(0),
	ScanPeriod:                           pulumi.Float64(0),
	ScanThreshold:                        pulumi.String("string"),
	ScanTime:                             pulumi.Float64(0),
	ScanType:                             pulumi.String("string"),
	ScanWindow:                           pulumi.Float64(0),
	Scopetype:                            pulumi.String("string"),
	Txpower:                              pulumi.String("string"),
})
Copy
var objectWirelesscontrollerBleprofileResource = new ObjectWirelesscontrollerBleprofile("objectWirelesscontrollerBleprofileResource", ObjectWirelesscontrollerBleprofileArgs.builder()
    .adom("string")
    .advertisings("string")
    .beaconInterval(0)
    .bleScanning("string")
    .comment("string")
    .eddystoneInstance("string")
    .eddystoneNamespace("string")
    .eddystoneUrl("string")
    .eddystoneUrlEncodeHex("string")
    .ibeaconUuid("string")
    .majorId(0)
    .minorId(0)
    .name("string")
    .objectWirelesscontrollerBleprofileId("string")
    .scanInterval(0)
    .scanPeriod(0)
    .scanThreshold("string")
    .scanTime(0)
    .scanType("string")
    .scanWindow(0)
    .scopetype("string")
    .txpower("string")
    .build());
Copy
object_wirelesscontroller_bleprofile_resource = fortimanager.ObjectWirelesscontrollerBleprofile("objectWirelesscontrollerBleprofileResource",
    adom="string",
    advertisings=["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",
    object_wirelesscontroller_bleprofile_id="string",
    scan_interval=0,
    scan_period=0,
    scan_threshold="string",
    scan_time=0,
    scan_type="string",
    scan_window=0,
    scopetype="string",
    txpower="string")
Copy
const objectWirelesscontrollerBleprofileResource = new fortimanager.ObjectWirelesscontrollerBleprofile("objectWirelesscontrollerBleprofileResource", {
    adom: "string",
    advertisings: ["string"],
    beaconInterval: 0,
    bleScanning: "string",
    comment: "string",
    eddystoneInstance: "string",
    eddystoneNamespace: "string",
    eddystoneUrl: "string",
    eddystoneUrlEncodeHex: "string",
    ibeaconUuid: "string",
    majorId: 0,
    minorId: 0,
    name: "string",
    objectWirelesscontrollerBleprofileId: "string",
    scanInterval: 0,
    scanPeriod: 0,
    scanThreshold: "string",
    scanTime: 0,
    scanType: "string",
    scanWindow: 0,
    scopetype: "string",
    txpower: "string",
});
Copy
type: fortimanager:ObjectWirelesscontrollerBleprofile
properties:
    adom: string
    advertisings:
        - string
    beaconInterval: 0
    bleScanning: string
    comment: string
    eddystoneInstance: string
    eddystoneNamespace: string
    eddystoneUrl: string
    eddystoneUrlEncodeHex: string
    ibeaconUuid: string
    majorId: 0
    minorId: 0
    name: string
    objectWirelesscontrollerBleprofileId: string
    scanInterval: 0
    scanPeriod: 0
    scanThreshold: string
    scanTime: 0
    scanType: string
    scanWindow: 0
    scopetype: string
    txpower: string
Copy

ObjectWirelesscontrollerBleprofile 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 ObjectWirelesscontrollerBleprofile resource accepts the following input properties:

Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Advertisings List<string>
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
BeaconInterval double
Beacon interval (default = 100 msec).
BleScanning string
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
Comment string
Comment.
EddystoneInstance string
Eddystone instance ID.
EddystoneNamespace string
Eddystone namespace ID.
EddystoneUrl string
Eddystone URL.
EddystoneUrlEncodeHex string
Eddystone encoded URL hexadecimal string
IbeaconUuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
MajorId double
Major ID.
MinorId double
Minor ID.
Name string
Bluetooth Low Energy profile name.
ObjectWirelesscontrollerBleprofileId string
an identifier for the resource with format {{name}}.
ScanInterval double
Scan Interval (default = 50 msec).
ScanPeriod double
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 double
Scan Time (default = 1000 msec).
ScanType string
Scan Type (default = active). Valid values: active, passive.
ScanWindow double
Scan Windows (default = 50 msec).
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Txpower string
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Advertisings []string
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
BeaconInterval float64
Beacon interval (default = 100 msec).
BleScanning string
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
Comment string
Comment.
EddystoneInstance string
Eddystone instance ID.
EddystoneNamespace string
Eddystone namespace ID.
EddystoneUrl string
Eddystone URL.
EddystoneUrlEncodeHex string
Eddystone encoded URL hexadecimal string
IbeaconUuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
MajorId float64
Major ID.
MinorId float64
Minor ID.
Name string
Bluetooth Low Energy profile name.
ObjectWirelesscontrollerBleprofileId string
an identifier for the resource with format {{name}}.
ScanInterval float64
Scan Interval (default = 50 msec).
ScanPeriod float64
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 float64
Scan Time (default = 1000 msec).
ScanType string
Scan Type (default = active). Valid values: active, passive.
ScanWindow float64
Scan Windows (default = 50 msec).
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Txpower string
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings List<String>
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
beaconInterval Double
Beacon interval (default = 100 msec).
bleScanning String
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
comment String
Comment.
eddystoneInstance String
Eddystone instance ID.
eddystoneNamespace String
Eddystone namespace ID.
eddystoneUrl String
Eddystone URL.
eddystoneUrlEncodeHex String
Eddystone encoded URL hexadecimal string
ibeaconUuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
majorId Double
Major ID.
minorId Double
Minor ID.
name String
Bluetooth Low Energy profile name.
objectWirelesscontrollerBleprofileId String
an identifier for the resource with format {{name}}.
scanInterval Double
Scan Interval (default = 50 msec).
scanPeriod Double
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 Double
Scan Time (default = 1000 msec).
scanType String
Scan Type (default = active). Valid values: active, passive.
scanWindow Double
Scan Windows (default = 50 msec).
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower String
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings 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: disable, enable.
comment string
Comment.
eddystoneInstance string
Eddystone instance ID.
eddystoneNamespace string
Eddystone namespace ID.
eddystoneUrl string
Eddystone URL.
eddystoneUrlEncodeHex string
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.
objectWirelesscontrollerBleprofileId string
an identifier for the resource with format {{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).
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower string
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings Sequence[str]
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
beacon_interval float
Beacon interval (default = 100 msec).
ble_scanning str
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
comment str
Comment.
eddystone_instance str
Eddystone instance ID.
eddystone_namespace str
Eddystone namespace ID.
eddystone_url str
Eddystone URL.
eddystone_url_encode_hex str
Eddystone encoded URL hexadecimal string
ibeacon_uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
major_id float
Major ID.
minor_id float
Minor ID.
name str
Bluetooth Low Energy profile name.
object_wirelesscontroller_bleprofile_id str
an identifier for the resource with format {{name}}.
scan_interval float
Scan Interval (default = 50 msec).
scan_period float
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 float
Scan Time (default = 1000 msec).
scan_type str
Scan Type (default = active). Valid values: active, passive.
scan_window float
Scan Windows (default = 50 msec).
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower str
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings List<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: disable, enable.
comment String
Comment.
eddystoneInstance String
Eddystone instance ID.
eddystoneNamespace String
Eddystone namespace ID.
eddystoneUrl String
Eddystone URL.
eddystoneUrlEncodeHex String
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.
objectWirelesscontrollerBleprofileId String
an identifier for the resource with format {{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).
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower String
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.

Outputs

All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerBleprofile 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 ObjectWirelesscontrollerBleprofile Resource

Get an existing ObjectWirelesscontrollerBleprofile 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?: ObjectWirelesscontrollerBleprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerBleprofile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        advertisings: Optional[Sequence[str]] = None,
        beacon_interval: Optional[float] = 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[float] = None,
        minor_id: Optional[float] = None,
        name: Optional[str] = None,
        object_wirelesscontroller_bleprofile_id: Optional[str] = None,
        scan_interval: Optional[float] = None,
        scan_period: Optional[float] = None,
        scan_threshold: Optional[str] = None,
        scan_time: Optional[float] = None,
        scan_type: Optional[str] = None,
        scan_window: Optional[float] = None,
        scopetype: Optional[str] = None,
        txpower: Optional[str] = None) -> ObjectWirelesscontrollerBleprofile
func GetObjectWirelesscontrollerBleprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerBleprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerBleprofile, error)
public static ObjectWirelesscontrollerBleprofile Get(string name, Input<string> id, ObjectWirelesscontrollerBleprofileState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerBleprofile get(String name, Output<String> id, ObjectWirelesscontrollerBleprofileState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWirelesscontrollerBleprofile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Advertisings List<string>
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
BeaconInterval double
Beacon interval (default = 100 msec).
BleScanning string
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
Comment string
Comment.
EddystoneInstance string
Eddystone instance ID.
EddystoneNamespace string
Eddystone namespace ID.
EddystoneUrl string
Eddystone URL.
EddystoneUrlEncodeHex string
Eddystone encoded URL hexadecimal string
IbeaconUuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
MajorId double
Major ID.
MinorId double
Minor ID.
Name string
Bluetooth Low Energy profile name.
ObjectWirelesscontrollerBleprofileId string
an identifier for the resource with format {{name}}.
ScanInterval double
Scan Interval (default = 50 msec).
ScanPeriod double
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 double
Scan Time (default = 1000 msec).
ScanType string
Scan Type (default = active). Valid values: active, passive.
ScanWindow double
Scan Windows (default = 50 msec).
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Txpower string
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Advertisings []string
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
BeaconInterval float64
Beacon interval (default = 100 msec).
BleScanning string
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
Comment string
Comment.
EddystoneInstance string
Eddystone instance ID.
EddystoneNamespace string
Eddystone namespace ID.
EddystoneUrl string
Eddystone URL.
EddystoneUrlEncodeHex string
Eddystone encoded URL hexadecimal string
IbeaconUuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
MajorId float64
Major ID.
MinorId float64
Minor ID.
Name string
Bluetooth Low Energy profile name.
ObjectWirelesscontrollerBleprofileId string
an identifier for the resource with format {{name}}.
ScanInterval float64
Scan Interval (default = 50 msec).
ScanPeriod float64
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 float64
Scan Time (default = 1000 msec).
ScanType string
Scan Type (default = active). Valid values: active, passive.
ScanWindow float64
Scan Windows (default = 50 msec).
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Txpower string
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings List<String>
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
beaconInterval Double
Beacon interval (default = 100 msec).
bleScanning String
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
comment String
Comment.
eddystoneInstance String
Eddystone instance ID.
eddystoneNamespace String
Eddystone namespace ID.
eddystoneUrl String
Eddystone URL.
eddystoneUrlEncodeHex String
Eddystone encoded URL hexadecimal string
ibeaconUuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
majorId Double
Major ID.
minorId Double
Minor ID.
name String
Bluetooth Low Energy profile name.
objectWirelesscontrollerBleprofileId String
an identifier for the resource with format {{name}}.
scanInterval Double
Scan Interval (default = 50 msec).
scanPeriod Double
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 Double
Scan Time (default = 1000 msec).
scanType String
Scan Type (default = active). Valid values: active, passive.
scanWindow Double
Scan Windows (default = 50 msec).
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower String
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings 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: disable, enable.
comment string
Comment.
eddystoneInstance string
Eddystone instance ID.
eddystoneNamespace string
Eddystone namespace ID.
eddystoneUrl string
Eddystone URL.
eddystoneUrlEncodeHex string
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.
objectWirelesscontrollerBleprofileId string
an identifier for the resource with format {{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).
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower string
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings Sequence[str]
Advertising type. Valid values: ibeacon, eddystone-uid, eddystone-url.
beacon_interval float
Beacon interval (default = 100 msec).
ble_scanning str
Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values: disable, enable.
comment str
Comment.
eddystone_instance str
Eddystone instance ID.
eddystone_namespace str
Eddystone namespace ID.
eddystone_url str
Eddystone URL.
eddystone_url_encode_hex str
Eddystone encoded URL hexadecimal string
ibeacon_uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
major_id float
Major ID.
minor_id float
Minor ID.
name str
Bluetooth Low Energy profile name.
object_wirelesscontroller_bleprofile_id str
an identifier for the resource with format {{name}}.
scan_interval float
Scan Interval (default = 50 msec).
scan_period float
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 float
Scan Time (default = 1000 msec).
scan_type str
Scan Type (default = active). Valid values: active, passive.
scan_window float
Scan Windows (default = 50 msec).
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower str
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advertisings List<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: disable, enable.
comment String
Comment.
eddystoneInstance String
Eddystone instance ID.
eddystoneNamespace String
Eddystone namespace ID.
eddystoneUrl String
Eddystone URL.
eddystoneUrlEncodeHex String
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.
objectWirelesscontrollerBleprofileId String
an identifier for the resource with format {{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).
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
txpower String
Transmit power level (default = 0). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.

Import

ObjectWirelessController BleProfile can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWirelesscontrollerBleprofile:ObjectWirelesscontrollerBleprofile labelname {{name}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.