1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWirelesscontrollerBonjourprofilePolicylist
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectWirelesscontrollerBonjourprofilePolicylist

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Bonjour policy list.

    This resource is a sub resource for variable policy_list of resource fortimanager.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:

    BonjourProfile string
    Bonjour Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Description string
    Description.
    FromVlan string
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    ObjectWirelesscontrollerBonjourprofilePolicylistId string
    an identifier for the resource with format {{policy_id}}.
    PolicyId double
    Policy ID.
    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.
    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.
    ToVlan string
    VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
    BonjourProfile string
    Bonjour Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Description string
    Description.
    FromVlan string
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    ObjectWirelesscontrollerBonjourprofilePolicylistId string
    an identifier for the resource with format {{policy_id}}.
    PolicyId float64
    Policy ID.
    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.
    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.
    ToVlan string
    VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
    bonjourProfile String
    Bonjour Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description String
    Description.
    fromVlan String
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    objectWirelesscontrollerBonjourprofilePolicylistId String
    an identifier for the resource with format {{policy_id}}.
    policyId Double
    Policy ID.
    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.
    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.
    toVlan String
    VLAN ID to which the Bonjour service is made available (0 - 4094, default = all).
    bonjourProfile string
    Bonjour Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description string
    Description.
    fromVlan string
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    objectWirelesscontrollerBonjourprofilePolicylistId string
    an identifier for the resource with format {{policy_id}}.
    policyId number
    Policy ID.
    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.
    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.
    toVlan 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 is adom, 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_bonjourprofile_policylist_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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).
    bonjourProfile String
    Bonjour Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description String
    Description.
    fromVlan String
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    objectWirelesscontrollerBonjourprofilePolicylistId String
    an identifier for the resource with format {{policy_id}}.
    policyId Number
    Policy ID.
    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.
    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.
    toVlan 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.
    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.
    BonjourProfile string
    Bonjour Profile.
    Description string
    Description.
    FromVlan string
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    ObjectWirelesscontrollerBonjourprofilePolicylistId string
    an identifier for the resource with format {{policy_id}}.
    PolicyId double
    Policy ID.
    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.
    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.
    ToVlan 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 is adom, otherwise the value of adom in the provider will be inherited.
    BonjourProfile string
    Bonjour Profile.
    Description string
    Description.
    FromVlan string
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    ObjectWirelesscontrollerBonjourprofilePolicylistId string
    an identifier for the resource with format {{policy_id}}.
    PolicyId float64
    Policy ID.
    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.
    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.
    ToVlan 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 is adom, otherwise the value of adom in the provider will be inherited.
    bonjourProfile String
    Bonjour Profile.
    description String
    Description.
    fromVlan String
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    objectWirelesscontrollerBonjourprofilePolicylistId String
    an identifier for the resource with format {{policy_id}}.
    policyId Double
    Policy ID.
    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.
    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.
    toVlan 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 is adom, otherwise the value of adom in the provider will be inherited.
    bonjourProfile string
    Bonjour Profile.
    description string
    Description.
    fromVlan string
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    objectWirelesscontrollerBonjourprofilePolicylistId string
    an identifier for the resource with format {{policy_id}}.
    policyId number
    Policy ID.
    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.
    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.
    toVlan 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 is adom, 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_bonjourprofile_policylist_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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 is adom, otherwise the value of adom in the provider will be inherited.
    bonjourProfile String
    Bonjour Profile.
    description String
    Description.
    fromVlan String
    VLAN ID from which the Bonjour service is advertised (0 - 4094, default = 0).
    objectWirelesscontrollerBonjourprofilePolicylistId String
    an identifier for the resource with format {{policy_id}}.
    policyId Number
    Policy ID.
    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.
    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.
    toVlan 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev