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",
});
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")
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
})
}
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",
});
});
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());
}
}
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'
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
isadom
, otherwise the value of adom in the provider will be inherited. - Advertisings List<string>
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - Beacon
Interval double - Beacon interval (default = 100 msec).
- Ble
Scanning string - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - Comment string
- Comment.
- Eddystone
Instance string - Eddystone instance ID.
- Eddystone
Namespace string - Eddystone namespace ID.
- Eddystone
Url string - Eddystone URL.
- Eddystone
Url stringEncode Hex - Eddystone encoded URL hexadecimal string
- Ibeacon
Uuid string - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Major
Id double - Major ID.
- Minor
Id double - Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- Object
Wirelesscontroller stringBleprofile Id - an identifier for the resource with format {{name}}.
- Scan
Interval double - Scan Interval (default = 50 msec).
- Scan
Period double - Scan Period (default = 4000 msec).
- Scan
Threshold string - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- Scan
Time double - Scan Time (default = 1000 msec).
- Scan
Type string - Scan Type (default = active). Valid values:
active
,passive
. - Scan
Window double - Scan Windows (default = 50 msec).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - Advertisings []string
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - Beacon
Interval float64 - Beacon interval (default = 100 msec).
- Ble
Scanning string - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - Comment string
- Comment.
- Eddystone
Instance string - Eddystone instance ID.
- Eddystone
Namespace string - Eddystone namespace ID.
- Eddystone
Url string - Eddystone URL.
- Eddystone
Url stringEncode Hex - Eddystone encoded URL hexadecimal string
- Ibeacon
Uuid string - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Major
Id float64 - Major ID.
- Minor
Id float64 - Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- Object
Wirelesscontroller stringBleprofile Id - an identifier for the resource with format {{name}}.
- Scan
Interval float64 - Scan Interval (default = 50 msec).
- Scan
Period float64 - Scan Period (default = 4000 msec).
- Scan
Threshold string - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- Scan
Time float64 - Scan Time (default = 1000 msec).
- Scan
Type string - Scan Type (default = active). Valid values:
active
,passive
. - Scan
Window float64 - Scan Windows (default = 50 msec).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - advertisings List<String>
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - beacon
Interval Double - Beacon interval (default = 100 msec).
- ble
Scanning String - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - comment String
- Comment.
- eddystone
Instance String - Eddystone instance ID.
- eddystone
Namespace String - Eddystone namespace ID.
- eddystone
Url String - Eddystone URL.
- eddystone
Url StringEncode Hex - Eddystone encoded URL hexadecimal string
- ibeacon
Uuid String - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major
Id Double - Major ID.
- minor
Id Double - Minor ID.
- name String
- Bluetooth Low Energy profile name.
- object
Wirelesscontroller StringBleprofile Id - an identifier for the resource with format {{name}}.
- scan
Interval Double - Scan Interval (default = 50 msec).
- scan
Period Double - Scan Period (default = 4000 msec).
- scan
Threshold String - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan
Time Double - Scan Time (default = 1000 msec).
- scan
Type String - Scan Type (default = active). Valid values:
active
,passive
. - scan
Window Double - Scan Windows (default = 50 msec).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - advertisings string[]
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - beacon
Interval number - Beacon interval (default = 100 msec).
- ble
Scanning string - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - comment string
- Comment.
- eddystone
Instance string - Eddystone instance ID.
- eddystone
Namespace string - Eddystone namespace ID.
- eddystone
Url string - Eddystone URL.
- eddystone
Url stringEncode Hex - Eddystone encoded URL hexadecimal string
- ibeacon
Uuid string - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major
Id number - Major ID.
- minor
Id number - Minor ID.
- name string
- Bluetooth Low Energy profile name.
- object
Wirelesscontroller stringBleprofile Id - an identifier for the resource with format {{name}}.
- scan
Interval number - Scan Interval (default = 50 msec).
- scan
Period number - Scan Period (default = 4000 msec).
- scan
Threshold string - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan
Time number - Scan Time (default = 1000 msec).
- scan
Type string - Scan Type (default = active). Valid values:
active
,passive
. - scan
Window number - Scan Windows (default = 50 msec).
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, 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_ strencode_ hex - 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_ strbleprofile_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - advertisings List<String>
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - beacon
Interval Number - Beacon interval (default = 100 msec).
- ble
Scanning String - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - comment String
- Comment.
- eddystone
Instance String - Eddystone instance ID.
- eddystone
Namespace String - Eddystone namespace ID.
- eddystone
Url String - Eddystone URL.
- eddystone
Url StringEncode Hex - Eddystone encoded URL hexadecimal string
- ibeacon
Uuid String - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major
Id Number - Major ID.
- minor
Id Number - Minor ID.
- name String
- Bluetooth Low Energy profile name.
- object
Wirelesscontroller StringBleprofile Id - an identifier for the resource with format {{name}}.
- scan
Interval Number - Scan Interval (default = 50 msec).
- scan
Period Number - Scan Period (default = 4000 msec).
- scan
Threshold String - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan
Time Number - Scan Time (default = 1000 msec).
- scan
Type String - Scan Type (default = active). Valid values:
active
,passive
. - scan
Window Number - Scan Windows (default = 50 msec).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
- 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Advertisings List<string>
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - Beacon
Interval double - Beacon interval (default = 100 msec).
- Ble
Scanning string - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - Comment string
- Comment.
- Eddystone
Instance string - Eddystone instance ID.
- Eddystone
Namespace string - Eddystone namespace ID.
- Eddystone
Url string - Eddystone URL.
- Eddystone
Url stringEncode Hex - Eddystone encoded URL hexadecimal string
- Ibeacon
Uuid string - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Major
Id double - Major ID.
- Minor
Id double - Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- Object
Wirelesscontroller stringBleprofile Id - an identifier for the resource with format {{name}}.
- Scan
Interval double - Scan Interval (default = 50 msec).
- Scan
Period double - Scan Period (default = 4000 msec).
- Scan
Threshold string - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- Scan
Time double - Scan Time (default = 1000 msec).
- Scan
Type string - Scan Type (default = active). Valid values:
active
,passive
. - Scan
Window double - Scan Windows (default = 50 msec).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - Advertisings []string
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - Beacon
Interval float64 - Beacon interval (default = 100 msec).
- Ble
Scanning string - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - Comment string
- Comment.
- Eddystone
Instance string - Eddystone instance ID.
- Eddystone
Namespace string - Eddystone namespace ID.
- Eddystone
Url string - Eddystone URL.
- Eddystone
Url stringEncode Hex - Eddystone encoded URL hexadecimal string
- Ibeacon
Uuid string - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Major
Id float64 - Major ID.
- Minor
Id float64 - Minor ID.
- Name string
- Bluetooth Low Energy profile name.
- Object
Wirelesscontroller stringBleprofile Id - an identifier for the resource with format {{name}}.
- Scan
Interval float64 - Scan Interval (default = 50 msec).
- Scan
Period float64 - Scan Period (default = 4000 msec).
- Scan
Threshold string - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- Scan
Time float64 - Scan Time (default = 1000 msec).
- Scan
Type string - Scan Type (default = active). Valid values:
active
,passive
. - Scan
Window float64 - Scan Windows (default = 50 msec).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - advertisings List<String>
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - beacon
Interval Double - Beacon interval (default = 100 msec).
- ble
Scanning String - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - comment String
- Comment.
- eddystone
Instance String - Eddystone instance ID.
- eddystone
Namespace String - Eddystone namespace ID.
- eddystone
Url String - Eddystone URL.
- eddystone
Url StringEncode Hex - Eddystone encoded URL hexadecimal string
- ibeacon
Uuid String - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major
Id Double - Major ID.
- minor
Id Double - Minor ID.
- name String
- Bluetooth Low Energy profile name.
- object
Wirelesscontroller StringBleprofile Id - an identifier for the resource with format {{name}}.
- scan
Interval Double - Scan Interval (default = 50 msec).
- scan
Period Double - Scan Period (default = 4000 msec).
- scan
Threshold String - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan
Time Double - Scan Time (default = 1000 msec).
- scan
Type String - Scan Type (default = active). Valid values:
active
,passive
. - scan
Window Double - Scan Windows (default = 50 msec).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - advertisings string[]
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - beacon
Interval number - Beacon interval (default = 100 msec).
- ble
Scanning string - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - comment string
- Comment.
- eddystone
Instance string - Eddystone instance ID.
- eddystone
Namespace string - Eddystone namespace ID.
- eddystone
Url string - Eddystone URL.
- eddystone
Url stringEncode Hex - Eddystone encoded URL hexadecimal string
- ibeacon
Uuid string - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major
Id number - Major ID.
- minor
Id number - Minor ID.
- name string
- Bluetooth Low Energy profile name.
- object
Wirelesscontroller stringBleprofile Id - an identifier for the resource with format {{name}}.
- scan
Interval number - Scan Interval (default = 50 msec).
- scan
Period number - Scan Period (default = 4000 msec).
- scan
Threshold string - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan
Time number - Scan Time (default = 1000 msec).
- scan
Type string - Scan Type (default = active). Valid values:
active
,passive
. - scan
Window number - Scan Windows (default = 50 msec).
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, 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_ strencode_ hex - 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_ strbleprofile_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - advertisings List<String>
- Advertising type. Valid values:
ibeacon
,eddystone-uid
,eddystone-url
. - beacon
Interval Number - Beacon interval (default = 100 msec).
- ble
Scanning String - Enable/disable Bluetooth Low Energy (BLE) scanning. Valid values:
disable
,enable
. - comment String
- Comment.
- eddystone
Instance String - Eddystone instance ID.
- eddystone
Namespace String - Eddystone namespace ID.
- eddystone
Url String - Eddystone URL.
- eddystone
Url StringEncode Hex - Eddystone encoded URL hexadecimal string
- ibeacon
Uuid String - Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- major
Id Number - Major ID.
- minor
Id Number - Minor ID.
- name String
- Bluetooth Low Energy profile name.
- object
Wirelesscontroller StringBleprofile Id - an identifier for the resource with format {{name}}.
- scan
Interval Number - Scan Interval (default = 50 msec).
- scan
Period Number - Scan Period (default = 4000 msec).
- scan
Threshold String - Minimum signal level/threshold in dBm required for the AP to report detected BLE device (-95 to -20, default = -90).
- scan
Time Number - Scan Time (default = 1000 msec).
- scan
Type String - Scan Type (default = active). Valid values:
active
,passive
. - scan
Window Number - Scan Windows (default = 50 msec).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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}}
$ 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.