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

fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist

Explore with Pulumi AI

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

    Organization identifier list.

    This resource is a sub resource for variable oi_list of resource fortimanager.ObjectWirelesscontrollerHotspot20Anqproamingconsortium. 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 trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium = new fortimanager.ObjectWirelesscontrollerHotspot20Anqproamingconsortium("trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium", {});
    const trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist = new fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist", {
        anqpRoamingConsortium: trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium.name,
        comment: "This is a Terraform example",
        index: 2,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wirelesscontroller_hotspot20_anqproamingconsortium = fortimanager.ObjectWirelesscontrollerHotspot20Anqproamingconsortium("trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium")
    trname_object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist = fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist",
        anqp_roaming_consortium=trname_object_wirelesscontroller_hotspot20_anqproamingconsortium.name,
        comment="This is a Terraform example",
        index=2)
    
    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 {
    		trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium, err := fortimanager.NewObjectWirelesscontrollerHotspot20Anqproamingconsortium(ctx, "trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(ctx, "trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist", &fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs{
    			AnqpRoamingConsortium: trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium.Name,
    			Comment:               pulumi.String("This is a Terraform example"),
    			Index:                 pulumi.Float64(2),
    		})
    		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 trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium = new Fortimanager.ObjectWirelesscontrollerHotspot20Anqproamingconsortium("trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium");
    
        var trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist", new()
        {
            AnqpRoamingConsortium = trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium.Name,
            Comment = "This is a Terraform example",
            Index = 2,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Anqproamingconsortium;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs;
    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 trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium = new ObjectWirelesscontrollerHotspot20Anqproamingconsortium("trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium");
    
            var trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist = new ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist", ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs.builder()
                .anqpRoamingConsortium(trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium.name())
                .comment("This is a Terraform example")
                .index(2)
                .build());
    
        }
    }
    
    resources:
      trnameObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist:
        type: fortimanager:ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist
        properties:
          anqpRoamingConsortium: ${trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium.name}
          comment: This is a Terraform example
          index: 2
      trnameObjectWirelesscontrollerHotspot20Anqproamingconsortium:
        type: fortimanager:ObjectWirelesscontrollerHotspot20Anqproamingconsortium
    

    Create ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(name: string, args: ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(resource_name: str,
                                                                     args: ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs,
                                                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(resource_name: str,
                                                                     opts: Optional[ResourceOptions] = None,
                                                                     anqp_roaming_consortium: Optional[str] = None,
                                                                     adom: Optional[str] = None,
                                                                     comment: Optional[str] = None,
                                                                     index: Optional[float] = None,
                                                                     object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist_id: Optional[str] = None,
                                                                     oi: Optional[str] = None,
                                                                     scopetype: Optional[str] = None)
    func NewObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist, error)
    public ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(string name, ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(String name, ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs args)
    public ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(String name, ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist
    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 ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs
    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 ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs
    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 ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs
    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 objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource", new()
    {
        AnqpRoamingConsortium = "string",
        Adom = "string",
        Comment = "string",
        Index = 0,
        ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId = "string",
        Oi = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(ctx, "objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource", &fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs{
    AnqpRoamingConsortium: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    Index: pulumi.Float64(0),
    ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId: pulumi.String("string"),
    Oi: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource = new ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource", ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistArgs.builder()
        .anqpRoamingConsortium("string")
        .adom("string")
        .comment("string")
        .index(0)
        .objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId("string")
        .oi("string")
        .scopetype("string")
        .build());
    
    object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist_resource = fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource",
        anqp_roaming_consortium="string",
        adom="string",
        comment="string",
        index=0,
        object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist_id="string",
        oi="string",
        scopetype="string")
    
    const objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource = new fortimanager.ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist("objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistResource", {
        anqpRoamingConsortium: "string",
        adom: "string",
        comment: "string",
        index: 0,
        objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId: "string",
        oi: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist
    properties:
        adom: string
        anqpRoamingConsortium: string
        comment: string
        index: 0
        objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId: string
        oi: string
        scopetype: string
    

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

    AnqpRoamingConsortium string
    Anqp Roaming Consortium.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    Index double
    OI index.
    ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId string
    an identifier for the resource with format {{index}}.
    Oi string
    Organization identifier.
    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.
    AnqpRoamingConsortium string
    Anqp Roaming Consortium.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    Index float64
    OI index.
    ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId string
    an identifier for the resource with format {{index}}.
    Oi string
    Organization identifier.
    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.
    anqpRoamingConsortium String
    Anqp Roaming Consortium.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    index Double
    OI index.
    objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId String
    an identifier for the resource with format {{index}}.
    oi String
    Organization identifier.
    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.
    anqpRoamingConsortium string
    Anqp Roaming Consortium.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    index number
    OI index.
    objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId string
    an identifier for the resource with format {{index}}.
    oi string
    Organization identifier.
    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.
    anqp_roaming_consortium str
    Anqp Roaming Consortium.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    index float
    OI index.
    object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist_id str
    an identifier for the resource with format {{index}}.
    oi str
    Organization identifier.
    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.
    anqpRoamingConsortium String
    Anqp Roaming Consortium.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    index Number
    OI index.
    objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId String
    an identifier for the resource with format {{index}}.
    oi String
    Organization identifier.
    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.

    Outputs

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

    Get an existing ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist 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?: ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            anqp_roaming_consortium: Optional[str] = None,
            comment: Optional[str] = None,
            index: Optional[float] = None,
            object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist_id: Optional[str] = None,
            oi: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist
    func GetObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist, error)
    public static ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist    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.
    AnqpRoamingConsortium string
    Anqp Roaming Consortium.
    Comment string
    Comment.
    Index double
    OI index.
    ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId string
    an identifier for the resource with format {{index}}.
    Oi string
    Organization identifier.
    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.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AnqpRoamingConsortium string
    Anqp Roaming Consortium.
    Comment string
    Comment.
    Index float64
    OI index.
    ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId string
    an identifier for the resource with format {{index}}.
    Oi string
    Organization identifier.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anqpRoamingConsortium String
    Anqp Roaming Consortium.
    comment String
    Comment.
    index Double
    OI index.
    objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId String
    an identifier for the resource with format {{index}}.
    oi String
    Organization identifier.
    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.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anqpRoamingConsortium string
    Anqp Roaming Consortium.
    comment string
    Comment.
    index number
    OI index.
    objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId string
    an identifier for the resource with format {{index}}.
    oi string
    Organization identifier.
    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.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anqp_roaming_consortium str
    Anqp Roaming Consortium.
    comment str
    Comment.
    index float
    OI index.
    object_wirelesscontroller_hotspot20_anqproamingconsortium_oilist_id str
    an identifier for the resource with format {{index}}.
    oi str
    Organization identifier.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anqpRoamingConsortium String
    Anqp Roaming Consortium.
    comment String
    Comment.
    index Number
    OI index.
    objectWirelesscontrollerHotspot20AnqproamingconsortiumOilistId String
    an identifier for the resource with format {{index}}.
    oi String
    Organization identifier.
    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.

    Import

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

    Set import_options = [“anqp_roaming_consortium=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20AnqproamingconsortiumOilist:ObjectWirelesscontrollerHotspot20AnqproamingconsortiumOilist labelname {{index}}
    

    $ 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