fortimanager.ObjectWirelesscontrollerBonjourprofile
Explore with Pulumi AI
Configure Bonjour profiles. Bonjour is Apple’s zero configuration networking protocol. Bonjour profiles allow APs and FortiAPs to connnect to networks using Bonjour.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
policy_list
:fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectWirelesscontrollerBonjourprofile("trname", {comment: "This is a Terraform example"});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectWirelesscontrollerBonjourprofile("trname", comment="This is a Terraform example")
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.NewObjectWirelesscontrollerBonjourprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerBonjourprofileArgs{
Comment: pulumi.String("This is a Terraform example"),
})
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.ObjectWirelesscontrollerBonjourprofile("trname", new()
{
Comment = "This is a Terraform example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerBonjourprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerBonjourprofileArgs;
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 ObjectWirelesscontrollerBonjourprofile("trname", ObjectWirelesscontrollerBonjourprofileArgs.builder()
.comment("This is a Terraform example")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWirelesscontrollerBonjourprofile
properties:
comment: This is a Terraform example
Create ObjectWirelesscontrollerBonjourprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerBonjourprofile(name: string, args?: ObjectWirelesscontrollerBonjourprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerBonjourprofile(resource_name: str,
args: Optional[ObjectWirelesscontrollerBonjourprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerBonjourprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_wirelesscontroller_bonjourprofile_id: Optional[str] = None,
policy_lists: Optional[Sequence[ObjectWirelesscontrollerBonjourprofilePolicyListArgs]] = None,
scopetype: Optional[str] = None)
func NewObjectWirelesscontrollerBonjourprofile(ctx *Context, name string, args *ObjectWirelesscontrollerBonjourprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerBonjourprofile, error)
public ObjectWirelesscontrollerBonjourprofile(string name, ObjectWirelesscontrollerBonjourprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerBonjourprofile(String name, ObjectWirelesscontrollerBonjourprofileArgs args)
public ObjectWirelesscontrollerBonjourprofile(String name, ObjectWirelesscontrollerBonjourprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerBonjourprofile
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 ObjectWirelesscontrollerBonjourprofileArgs
- 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 ObjectWirelesscontrollerBonjourprofileArgs
- 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 ObjectWirelesscontrollerBonjourprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerBonjourprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerBonjourprofileArgs
- 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 objectWirelesscontrollerBonjourprofileResource = new Fortimanager.ObjectWirelesscontrollerBonjourprofile("objectWirelesscontrollerBonjourprofileResource", new()
{
Adom = "string",
Comment = "string",
DynamicSortSubtable = "string",
Name = "string",
ObjectWirelesscontrollerBonjourprofileId = "string",
PolicyLists = new[]
{
new Fortimanager.Inputs.ObjectWirelesscontrollerBonjourprofilePolicyListArgs
{
Description = "string",
FromVlan = "string",
PolicyId = 0,
Services = new[]
{
"string",
},
ToVlan = "string",
},
},
Scopetype = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerBonjourprofile(ctx, "objectWirelesscontrollerBonjourprofileResource", &fortimanager.ObjectWirelesscontrollerBonjourprofileArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectWirelesscontrollerBonjourprofileId: pulumi.String("string"),
PolicyLists: .ObjectWirelesscontrollerBonjourprofilePolicyListTypeArray{
&.ObjectWirelesscontrollerBonjourprofilePolicyListTypeArgs{
Description: pulumi.String("string"),
FromVlan: pulumi.String("string"),
PolicyId: pulumi.Float64(0),
Services: pulumi.StringArray{
pulumi.String("string"),
},
ToVlan: pulumi.String("string"),
},
},
Scopetype: pulumi.String("string"),
})
var objectWirelesscontrollerBonjourprofileResource = new ObjectWirelesscontrollerBonjourprofile("objectWirelesscontrollerBonjourprofileResource", ObjectWirelesscontrollerBonjourprofileArgs.builder()
.adom("string")
.comment("string")
.dynamicSortSubtable("string")
.name("string")
.objectWirelesscontrollerBonjourprofileId("string")
.policyLists(ObjectWirelesscontrollerBonjourprofilePolicyListArgs.builder()
.description("string")
.fromVlan("string")
.policyId(0)
.services("string")
.toVlan("string")
.build())
.scopetype("string")
.build());
object_wirelesscontroller_bonjourprofile_resource = fortimanager.ObjectWirelesscontrollerBonjourprofile("objectWirelesscontrollerBonjourprofileResource",
adom="string",
comment="string",
dynamic_sort_subtable="string",
name="string",
object_wirelesscontroller_bonjourprofile_id="string",
policy_lists=[{
"description": "string",
"from_vlan": "string",
"policy_id": 0,
"services": ["string"],
"to_vlan": "string",
}],
scopetype="string")
const objectWirelesscontrollerBonjourprofileResource = new fortimanager.ObjectWirelesscontrollerBonjourprofile("objectWirelesscontrollerBonjourprofileResource", {
adom: "string",
comment: "string",
dynamicSortSubtable: "string",
name: "string",
objectWirelesscontrollerBonjourprofileId: "string",
policyLists: [{
description: "string",
fromVlan: "string",
policyId: 0,
services: ["string"],
toVlan: "string",
}],
scopetype: "string",
});
type: fortimanager:ObjectWirelesscontrollerBonjourprofile
properties:
adom: string
comment: string
dynamicSortSubtable: string
name: string
objectWirelesscontrollerBonjourprofileId: string
policyLists:
- description: string
fromVlan: string
policyId: 0
services:
- string
toVlan: string
scopetype: string
ObjectWirelesscontrollerBonjourprofile 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 ObjectWirelesscontrollerBonjourprofile 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. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Bonjour profile name.
- Object
Wirelesscontroller stringBonjourprofile Id - an identifier for the resource with format {{name}}.
- Policy
Lists List<ObjectWirelesscontroller Bonjourprofile Policy List> - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Bonjour profile name.
- Object
Wirelesscontroller stringBonjourprofile Id - an identifier for the resource with format {{name}}.
- Policy
Lists []ObjectWirelesscontroller Bonjourprofile Policy List Type Args - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Bonjour profile name.
- object
Wirelesscontroller StringBonjourprofile Id - an identifier for the resource with format {{name}}.
- policy
Lists List<ObjectWirelesscontroller Bonjourprofile Policy List> - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name string
- Bonjour profile name.
- object
Wirelesscontroller stringBonjourprofile Id - an identifier for the resource with format {{name}}.
- policy
Lists ObjectWirelesscontroller Bonjourprofile Policy List[] - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name str
- Bonjour profile name.
- object_
wirelesscontroller_ strbonjourprofile_ id - an identifier for the resource with format {{name}}.
- policy_
lists Sequence[ObjectWirelesscontroller Bonjourprofile Policy List Args] - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Bonjour profile name.
- object
Wirelesscontroller StringBonjourprofile Id - an identifier for the resource with format {{name}}.
- policy
Lists List<Property Map> - Policy-List. The structure of
policy_list
block is documented below. - 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
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerBonjourprofile 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 ObjectWirelesscontrollerBonjourprofile Resource
Get an existing ObjectWirelesscontrollerBonjourprofile 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?: ObjectWirelesscontrollerBonjourprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerBonjourprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_wirelesscontroller_bonjourprofile_id: Optional[str] = None,
policy_lists: Optional[Sequence[ObjectWirelesscontrollerBonjourprofilePolicyListArgs]] = None,
scopetype: Optional[str] = None) -> ObjectWirelesscontrollerBonjourprofile
func GetObjectWirelesscontrollerBonjourprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerBonjourprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerBonjourprofile, error)
public static ObjectWirelesscontrollerBonjourprofile Get(string name, Input<string> id, ObjectWirelesscontrollerBonjourprofileState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerBonjourprofile get(String name, Output<String> id, ObjectWirelesscontrollerBonjourprofileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerBonjourprofile 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. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Bonjour profile name.
- Object
Wirelesscontroller stringBonjourprofile Id - an identifier for the resource with format {{name}}.
- Policy
Lists List<ObjectWirelesscontroller Bonjourprofile Policy List> - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Bonjour profile name.
- Object
Wirelesscontroller stringBonjourprofile Id - an identifier for the resource with format {{name}}.
- Policy
Lists []ObjectWirelesscontroller Bonjourprofile Policy List Type Args - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Bonjour profile name.
- object
Wirelesscontroller StringBonjourprofile Id - an identifier for the resource with format {{name}}.
- policy
Lists List<ObjectWirelesscontroller Bonjourprofile Policy List> - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name string
- Bonjour profile name.
- object
Wirelesscontroller stringBonjourprofile Id - an identifier for the resource with format {{name}}.
- policy
Lists ObjectWirelesscontroller Bonjourprofile Policy List[] - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name str
- Bonjour profile name.
- object_
wirelesscontroller_ strbonjourprofile_ id - an identifier for the resource with format {{name}}.
- policy_
lists Sequence[ObjectWirelesscontroller Bonjourprofile Policy List Args] - Policy-List. The structure of
policy_list
block is documented below. - 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Bonjour profile name.
- object
Wirelesscontroller StringBonjourprofile Id - an identifier for the resource with format {{name}}.
- policy
Lists List<Property Map> - Policy-List. The structure of
policy_list
block is documented below. - 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
.
Supporting Types
ObjectWirelesscontrollerBonjourprofilePolicyList, ObjectWirelesscontrollerBonjourprofilePolicyListArgs
- Description string
- Description.
- From
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- Policy
Id double - Policy ID.
- Services List<string>
- Bonjour services for the VLAN connecting to the Bonjour network. Valid values:
airplay
,afp
,bit-torrent
,ftp
,ichat
,itunes
,printers
,samba
,scanners
,ssh
,chromecast
,all
. - To
Vlan string - VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
- Description string
- Description.
- From
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- Policy
Id float64 - Policy ID.
- Services []string
- Bonjour services for the VLAN connecting to the Bonjour network. Valid values:
airplay
,afp
,bit-torrent
,ftp
,ichat
,itunes
,printers
,samba
,scanners
,ssh
,chromecast
,all
. - To
Vlan string - VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
- description String
- Description.
- from
Vlan String - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- policy
Id Double - Policy ID.
- services List<String>
- Bonjour services for the VLAN connecting to the Bonjour network. Valid values:
airplay
,afp
,bit-torrent
,ftp
,ichat
,itunes
,printers
,samba
,scanners
,ssh
,chromecast
,all
. - to
Vlan String - VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
- description string
- Description.
- from
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- policy
Id number - Policy ID.
- services string[]
- Bonjour services for the VLAN connecting to the Bonjour network. Valid values:
airplay
,afp
,bit-torrent
,ftp
,ichat
,itunes
,printers
,samba
,scanners
,ssh
,chromecast
,all
. - to
Vlan string - VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
- description str
- Description.
- from_
vlan str - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- policy_
id float - Policy ID.
- services Sequence[str]
- Bonjour services for the VLAN connecting to the Bonjour network. Valid values:
airplay
,afp
,bit-torrent
,ftp
,ichat
,itunes
,printers
,samba
,scanners
,ssh
,chromecast
,all
. - to_
vlan str - VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
- description String
- Description.
- from
Vlan String - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- policy
Id Number - Policy ID.
- services List<String>
- Bonjour services for the VLAN connecting to the Bonjour network. Valid values:
airplay
,afp
,bit-torrent
,ftp
,ichat
,itunes
,printers
,samba
,scanners
,ssh
,chromecast
,all
. - to
Vlan String - VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
Import
ObjectWirelessController BonjourProfile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerBonjourprofile:ObjectWirelesscontrollerBonjourprofile 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.