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

fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist

Explore with Pulumi AI

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

    Name list.

    This resource is a sub resource for variable value_list of resource fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatorname. 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 trnameObjectWirelesscontrollerHotspot20H2qpoperatorname = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatorname("trnameObjectWirelesscontrollerHotspot20H2qpoperatorname", {});
    const trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist", {
        h2qpOperatorName: trnameObjectWirelesscontrollerHotspot20H2qpoperatorname.name,
        index: 4,
        lang: "23",
        value: "34",
    }, {
        dependsOn: [trnameObjectWirelesscontrollerHotspot20H2qpoperatorname],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wirelesscontroller_hotspot20_h2qpoperatorname = fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatorname("trnameObjectWirelesscontrollerHotspot20H2qpoperatorname")
    trname_object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist = fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist",
        h2qp_operator_name=trname_object_wirelesscontroller_hotspot20_h2qpoperatorname.name,
        index=4,
        lang="23",
        value="34",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_hotspot20_h2qpoperatorname]))
    
    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 {
    		trnameObjectWirelesscontrollerHotspot20H2qpoperatorname, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpoperatorname(ctx, "trnameObjectWirelesscontrollerHotspot20H2qpoperatorname", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(ctx, "trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs{
    			H2qpOperatorName: trnameObjectWirelesscontrollerHotspot20H2qpoperatorname.Name,
    			Index:            pulumi.Float64(4),
    			Lang:             pulumi.String("23"),
    			Value:            pulumi.String("34"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWirelesscontrollerHotspot20H2qpoperatorname,
    		}))
    		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 trnameObjectWirelesscontrollerHotspot20H2qpoperatorname = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatorname("trnameObjectWirelesscontrollerHotspot20H2qpoperatorname");
    
        var trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist", new()
        {
            H2qpOperatorName = trnameObjectWirelesscontrollerHotspot20H2qpoperatorname.Name,
            Index = 4,
            Lang = "23",
            Value = "34",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWirelesscontrollerHotspot20H2qpoperatorname,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatorname;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs;
    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 trnameObjectWirelesscontrollerHotspot20H2qpoperatorname = new ObjectWirelesscontrollerHotspot20H2qpoperatorname("trnameObjectWirelesscontrollerHotspot20H2qpoperatorname");
    
            var trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist = new ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist", ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs.builder()
                .h2qpOperatorName(trnameObjectWirelesscontrollerHotspot20H2qpoperatorname.name())
                .index(4)
                .lang(23)
                .value(34)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWirelesscontrollerHotspot20H2qpoperatorname)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist:
        type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist
        properties:
          h2qpOperatorName: ${trnameObjectWirelesscontrollerHotspot20H2qpoperatorname.name}
          index: 4
          lang: 23
          value: 34
        options:
          dependsOn:
            - ${trnameObjectWirelesscontrollerHotspot20H2qpoperatorname}
      trnameObjectWirelesscontrollerHotspot20H2qpoperatorname:
        type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpoperatorname
    

    Create ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(name: string, args: ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(resource_name: str,
                                                                   args: ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs,
                                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(resource_name: str,
                                                                   opts: Optional[ResourceOptions] = None,
                                                                   h2qp_operator_name: Optional[str] = None,
                                                                   adom: Optional[str] = None,
                                                                   index: Optional[float] = None,
                                                                   lang: Optional[str] = None,
                                                                   object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist_id: Optional[str] = None,
                                                                   scopetype: Optional[str] = None,
                                                                   value: Optional[str] = None)
    func NewObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist, error)
    public ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(string name, ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(String name, ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs args)
    public ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(String name, ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist
    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 ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs
    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 ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs
    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 ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs
    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 objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource", new()
    {
        H2qpOperatorName = "string",
        Adom = "string",
        Index = 0,
        Lang = "string",
        ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistId = "string",
        Scopetype = "string",
        Value = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(ctx, "objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs{
    H2qpOperatorName: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Index: pulumi.Float64(0),
    Lang: pulumi.String("string"),
    ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Value: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource = new ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource", ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistArgs.builder()
        .h2qpOperatorName("string")
        .adom("string")
        .index(0)
        .lang("string")
        .objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId("string")
        .scopetype("string")
        .value("string")
        .build());
    
    object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist_resource = fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource",
        h2qp_operator_name="string",
        adom="string",
        index=0,
        lang="string",
        object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist_id="string",
        scopetype="string",
        value="string")
    
    const objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist("objectWirelesscontrollerHotspot20H2qpoperatornameValuelistResource", {
        h2qpOperatorName: "string",
        adom: "string",
        index: 0,
        lang: "string",
        objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId: "string",
        scopetype: "string",
        value: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist
    properties:
        adom: string
        h2qpOperatorName: string
        index: 0
        lang: string
        objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId: string
        scopetype: string
        value: string
    

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

    H2qpOperatorName string
    H2Qp Operator Name.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Index double
    Value index.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistId string
    an identifier for the resource with format {{index}}.
    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.
    Value string
    Friendly name value.
    H2qpOperatorName string
    H2Qp Operator Name.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Index float64
    Value index.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistId string
    an identifier for the resource with format {{index}}.
    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.
    Value string
    Friendly name value.
    h2qpOperatorName String
    H2Qp Operator Name.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    index Double
    Value index.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId String
    an identifier for the resource with format {{index}}.
    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.
    value String
    Friendly name value.
    h2qpOperatorName string
    H2Qp Operator Name.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    index number
    Value index.
    lang string
    Language code.
    objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId string
    an identifier for the resource with format {{index}}.
    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.
    value string
    Friendly name value.
    h2qp_operator_name str
    H2Qp Operator Name.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    index float
    Value index.
    lang str
    Language code.
    object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist_id str
    an identifier for the resource with format {{index}}.
    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.
    value str
    Friendly name value.
    h2qpOperatorName String
    H2Qp Operator Name.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    index Number
    Value index.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId String
    an identifier for the resource with format {{index}}.
    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.
    value String
    Friendly name value.

    Outputs

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

    Get an existing ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist 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?: ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            h2qp_operator_name: Optional[str] = None,
            index: Optional[float] = None,
            lang: Optional[str] = None,
            object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            value: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist
    func GetObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist, error)
    public static ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist    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.
    H2qpOperatorName string
    H2Qp Operator Name.
    Index double
    Value index.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistId string
    an identifier for the resource with format {{index}}.
    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.
    Value string
    Friendly name value.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    H2qpOperatorName string
    H2Qp Operator Name.
    Index float64
    Value index.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelistId string
    an identifier for the resource with format {{index}}.
    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.
    Value string
    Friendly name value.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qpOperatorName String
    H2Qp Operator Name.
    index Double
    Value index.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId String
    an identifier for the resource with format {{index}}.
    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.
    value String
    Friendly name value.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qpOperatorName string
    H2Qp Operator Name.
    index number
    Value index.
    lang string
    Language code.
    objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId string
    an identifier for the resource with format {{index}}.
    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.
    value string
    Friendly name value.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qp_operator_name str
    H2Qp Operator Name.
    index float
    Value index.
    lang str
    Language code.
    object_wirelesscontroller_hotspot20_h2qpoperatorname_valuelist_id str
    an identifier for the resource with format {{index}}.
    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.
    value str
    Friendly name value.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qpOperatorName String
    H2Qp Operator Name.
    index Number
    Value index.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qpoperatornameValuelistId String
    an identifier for the resource with format {{index}}.
    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.
    value String
    Friendly name value.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20H2qpoperatornameValuelist:ObjectWirelesscontrollerHotspot20H2qpoperatornameValuelist 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