fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist
Explore with Pulumi AI
Bonjour policy list.
This resource is a sub resource for variable
policy_list
of resourcefortimanager.ObjectWirelesscontrollerBonjourprofile
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectWirelesscontrollerBonjourprofile = new fortimanager.ObjectWirelesscontrollerBonjourprofile("trnameObjectWirelesscontrollerBonjourprofile", {});
const trnameObjectWirelesscontrollerBonjourprofilePolicylist = new fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist("trnameObjectWirelesscontrollerBonjourprofilePolicylist", {
bonjourProfile: trnameObjectWirelesscontrollerBonjourprofile.name,
policyId: 1,
services: ["ftp"],
toVlan: "2000",
}, {
dependsOn: [trnameObjectWirelesscontrollerBonjourprofile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_wirelesscontroller_bonjourprofile = fortimanager.ObjectWirelesscontrollerBonjourprofile("trnameObjectWirelesscontrollerBonjourprofile")
trname_object_wirelesscontroller_bonjourprofile_policylist = fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist("trnameObjectWirelesscontrollerBonjourprofilePolicylist",
bonjour_profile=trname_object_wirelesscontroller_bonjourprofile.name,
policy_id=1,
services=["ftp"],
to_vlan="2000",
opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_bonjourprofile]))
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 {
trnameObjectWirelesscontrollerBonjourprofile, err := fortimanager.NewObjectWirelesscontrollerBonjourprofile(ctx, "trnameObjectWirelesscontrollerBonjourprofile", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWirelesscontrollerBonjourprofilePolicylist(ctx, "trnameObjectWirelesscontrollerBonjourprofilePolicylist", &fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylistArgs{
BonjourProfile: trnameObjectWirelesscontrollerBonjourprofile.Name,
PolicyId: pulumi.Float64(1),
Services: pulumi.StringArray{
pulumi.String("ftp"),
},
ToVlan: pulumi.String("2000"),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectWirelesscontrollerBonjourprofile,
}))
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 trnameObjectWirelesscontrollerBonjourprofile = new Fortimanager.ObjectWirelesscontrollerBonjourprofile("trnameObjectWirelesscontrollerBonjourprofile");
var trnameObjectWirelesscontrollerBonjourprofilePolicylist = new Fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist("trnameObjectWirelesscontrollerBonjourprofilePolicylist", new()
{
BonjourProfile = trnameObjectWirelesscontrollerBonjourprofile.Name,
PolicyId = 1,
Services = new[]
{
"ftp",
},
ToVlan = "2000",
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectWirelesscontrollerBonjourprofile,
},
});
});
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.ObjectWirelesscontrollerBonjourprofilePolicylist;
import com.pulumi.fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylistArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectWirelesscontrollerBonjourprofile = new ObjectWirelesscontrollerBonjourprofile("trnameObjectWirelesscontrollerBonjourprofile");
var trnameObjectWirelesscontrollerBonjourprofilePolicylist = new ObjectWirelesscontrollerBonjourprofilePolicylist("trnameObjectWirelesscontrollerBonjourprofilePolicylist", ObjectWirelesscontrollerBonjourprofilePolicylistArgs.builder()
.bonjourProfile(trnameObjectWirelesscontrollerBonjourprofile.name())
.policyId(1)
.services("ftp")
.toVlan(2000)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWirelesscontrollerBonjourprofile)
.build());
}
}
resources:
trnameObjectWirelesscontrollerBonjourprofilePolicylist:
type: fortimanager:ObjectWirelesscontrollerBonjourprofilePolicylist
properties:
bonjourProfile: ${trnameObjectWirelesscontrollerBonjourprofile.name}
policyId: 1
services:
- ftp
toVlan: 2000
options:
dependsOn:
- ${trnameObjectWirelesscontrollerBonjourprofile}
trnameObjectWirelesscontrollerBonjourprofile:
type: fortimanager:ObjectWirelesscontrollerBonjourprofile
Create ObjectWirelesscontrollerBonjourprofilePolicylist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerBonjourprofilePolicylist(name: string, args: ObjectWirelesscontrollerBonjourprofilePolicylistArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerBonjourprofilePolicylist(resource_name: str,
args: ObjectWirelesscontrollerBonjourprofilePolicylistArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerBonjourprofilePolicylist(resource_name: str,
opts: Optional[ResourceOptions] = None,
bonjour_profile: Optional[str] = None,
adom: Optional[str] = None,
description: Optional[str] = None,
from_vlan: Optional[str] = None,
object_wirelesscontroller_bonjourprofile_policylist_id: Optional[str] = None,
policy_id: Optional[float] = None,
scopetype: Optional[str] = None,
services: Optional[Sequence[str]] = None,
to_vlan: Optional[str] = None)
func NewObjectWirelesscontrollerBonjourprofilePolicylist(ctx *Context, name string, args ObjectWirelesscontrollerBonjourprofilePolicylistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerBonjourprofilePolicylist, error)
public ObjectWirelesscontrollerBonjourprofilePolicylist(string name, ObjectWirelesscontrollerBonjourprofilePolicylistArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerBonjourprofilePolicylist(String name, ObjectWirelesscontrollerBonjourprofilePolicylistArgs args)
public ObjectWirelesscontrollerBonjourprofilePolicylist(String name, ObjectWirelesscontrollerBonjourprofilePolicylistArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerBonjourprofilePolicylist
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 ObjectWirelesscontrollerBonjourprofilePolicylistArgs
- 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 ObjectWirelesscontrollerBonjourprofilePolicylistArgs
- 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 ObjectWirelesscontrollerBonjourprofilePolicylistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerBonjourprofilePolicylistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerBonjourprofilePolicylistArgs
- 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 objectWirelesscontrollerBonjourprofilePolicylistResource = new Fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist("objectWirelesscontrollerBonjourprofilePolicylistResource", new()
{
BonjourProfile = "string",
Adom = "string",
Description = "string",
FromVlan = "string",
ObjectWirelesscontrollerBonjourprofilePolicylistId = "string",
PolicyId = 0,
Scopetype = "string",
Services = new[]
{
"string",
},
ToVlan = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerBonjourprofilePolicylist(ctx, "objectWirelesscontrollerBonjourprofilePolicylistResource", &fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylistArgs{
BonjourProfile: pulumi.String("string"),
Adom: pulumi.String("string"),
Description: pulumi.String("string"),
FromVlan: pulumi.String("string"),
ObjectWirelesscontrollerBonjourprofilePolicylistId: pulumi.String("string"),
PolicyId: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Services: pulumi.StringArray{
pulumi.String("string"),
},
ToVlan: pulumi.String("string"),
})
var objectWirelesscontrollerBonjourprofilePolicylistResource = new ObjectWirelesscontrollerBonjourprofilePolicylist("objectWirelesscontrollerBonjourprofilePolicylistResource", ObjectWirelesscontrollerBonjourprofilePolicylistArgs.builder()
.bonjourProfile("string")
.adom("string")
.description("string")
.fromVlan("string")
.objectWirelesscontrollerBonjourprofilePolicylistId("string")
.policyId(0)
.scopetype("string")
.services("string")
.toVlan("string")
.build());
object_wirelesscontroller_bonjourprofile_policylist_resource = fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist("objectWirelesscontrollerBonjourprofilePolicylistResource",
bonjour_profile="string",
adom="string",
description="string",
from_vlan="string",
object_wirelesscontroller_bonjourprofile_policylist_id="string",
policy_id=0,
scopetype="string",
services=["string"],
to_vlan="string")
const objectWirelesscontrollerBonjourprofilePolicylistResource = new fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist("objectWirelesscontrollerBonjourprofilePolicylistResource", {
bonjourProfile: "string",
adom: "string",
description: "string",
fromVlan: "string",
objectWirelesscontrollerBonjourprofilePolicylistId: "string",
policyId: 0,
scopetype: "string",
services: ["string"],
toVlan: "string",
});
type: fortimanager:ObjectWirelesscontrollerBonjourprofilePolicylist
properties:
adom: string
bonjourProfile: string
description: string
fromVlan: string
objectWirelesscontrollerBonjourprofilePolicylistId: string
policyId: 0
scopetype: string
services:
- string
toVlan: string
ObjectWirelesscontrollerBonjourprofilePolicylist 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 ObjectWirelesscontrollerBonjourprofilePolicylist resource accepts the following input properties:
- Bonjour
Profile string - Bonjour Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Description string
- Description.
- From
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- Object
Wirelesscontroller stringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- Policy
Id double - Policy ID.
- 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
. - 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).
- Bonjour
Profile string - Bonjour Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Description string
- Description.
- From
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- Object
Wirelesscontroller stringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- Policy
Id float64 - Policy ID.
- 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
. - 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).
- bonjour
Profile String - Bonjour Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - description String
- Description.
- from
Vlan String - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object
Wirelesscontroller StringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- policy
Id Double - Policy ID.
- 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
. - 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).
- bonjour
Profile string - Bonjour Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - description string
- Description.
- from
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object
Wirelesscontroller stringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- policy
Id number - Policy ID.
- 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
. - 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).
- bonjour_
profile str - Bonjour Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - description str
- Description.
- from_
vlan str - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object_
wirelesscontroller_ strbonjourprofile_ policylist_ id - an identifier for the resource with format {{policy_id}}.
- policy_
id float - Policy ID.
- 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
. - 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).
- bonjour
Profile String - Bonjour Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - description String
- Description.
- from
Vlan String - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object
Wirelesscontroller StringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- policy
Id Number - Policy ID.
- 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
. - 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).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerBonjourprofilePolicylist 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 ObjectWirelesscontrollerBonjourprofilePolicylist Resource
Get an existing ObjectWirelesscontrollerBonjourprofilePolicylist 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?: ObjectWirelesscontrollerBonjourprofilePolicylistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerBonjourprofilePolicylist
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
bonjour_profile: Optional[str] = None,
description: Optional[str] = None,
from_vlan: Optional[str] = None,
object_wirelesscontroller_bonjourprofile_policylist_id: Optional[str] = None,
policy_id: Optional[float] = None,
scopetype: Optional[str] = None,
services: Optional[Sequence[str]] = None,
to_vlan: Optional[str] = None) -> ObjectWirelesscontrollerBonjourprofilePolicylist
func GetObjectWirelesscontrollerBonjourprofilePolicylist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerBonjourprofilePolicylistState, opts ...ResourceOption) (*ObjectWirelesscontrollerBonjourprofilePolicylist, error)
public static ObjectWirelesscontrollerBonjourprofilePolicylist Get(string name, Input<string> id, ObjectWirelesscontrollerBonjourprofilePolicylistState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerBonjourprofilePolicylist get(String name, Output<String> id, ObjectWirelesscontrollerBonjourprofilePolicylistState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerBonjourprofilePolicylist 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. - Bonjour
Profile string - Bonjour Profile.
- Description string
- Description.
- From
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- Object
Wirelesscontroller stringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- Policy
Id double - Policy ID.
- 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
. - 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).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bonjour
Profile string - Bonjour Profile.
- Description string
- Description.
- From
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- Object
Wirelesscontroller stringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- Policy
Id float64 - Policy ID.
- 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
. - 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).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bonjour
Profile String - Bonjour Profile.
- description String
- Description.
- from
Vlan String - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object
Wirelesscontroller StringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- policy
Id Double - Policy ID.
- 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
. - 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).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bonjour
Profile string - Bonjour Profile.
- description string
- Description.
- from
Vlan string - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object
Wirelesscontroller stringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- policy
Id number - Policy ID.
- 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
. - 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).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bonjour_
profile str - Bonjour Profile.
- description str
- Description.
- from_
vlan str - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object_
wirelesscontroller_ strbonjourprofile_ policylist_ id - an identifier for the resource with format {{policy_id}}.
- policy_
id float - Policy ID.
- 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
. - 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).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bonjour
Profile String - Bonjour Profile.
- description String
- Description.
- from
Vlan String - VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
- object
Wirelesscontroller StringBonjourprofile Policylist Id - an identifier for the resource with format {{policy_id}}.
- policy
Id Number - Policy ID.
- 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
. - 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 BonjourProfilePolicyList can be imported using any of these accepted formats:
Set import_options = [“bonjour_profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerBonjourprofilePolicylist:ObjectWirelesscontrollerBonjourprofilePolicylist labelname {{policy_id}}
$ 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.