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

fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist

Explore with Pulumi AI

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

    Icon list.

    This resource is a sub resource for variable icon_list of resource fortimanager.ObjectWirelesscontrollerHotspot20Icon. 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 trnameObjectWirelesscontrollerHotspot20Icon = new fortimanager.ObjectWirelesscontrollerHotspot20Icon("trnameObjectWirelesscontrollerHotspot20Icon", {});
    const trnameObjectWirelesscontrollerHotspot20IconIconlist = new fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist("trnameObjectWirelesscontrollerHotspot20IconIconlist", {
        type: "gif",
        icon: trnameObjectWirelesscontrollerHotspot20Icon.name,
    }, {
        dependsOn: [trnameObjectWirelesscontrollerHotspot20Icon],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wirelesscontroller_hotspot20_icon = fortimanager.ObjectWirelesscontrollerHotspot20Icon("trnameObjectWirelesscontrollerHotspot20Icon")
    trname_object_wirelesscontroller_hotspot20_icon_iconlist = fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist("trnameObjectWirelesscontrollerHotspot20IconIconlist",
        type="gif",
        icon=trname_object_wirelesscontroller_hotspot20_icon.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_hotspot20_icon]))
    
    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 {
    		trnameObjectWirelesscontrollerHotspot20Icon, err := fortimanager.NewObjectWirelesscontrollerHotspot20Icon(ctx, "trnameObjectWirelesscontrollerHotspot20Icon", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20IconIconlist(ctx, "trnameObjectWirelesscontrollerHotspot20IconIconlist", &fortimanager.ObjectWirelesscontrollerHotspot20IconIconlistArgs{
    			Type: pulumi.String("gif"),
    			Icon: trnameObjectWirelesscontrollerHotspot20Icon.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWirelesscontrollerHotspot20Icon,
    		}))
    		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 trnameObjectWirelesscontrollerHotspot20Icon = new Fortimanager.ObjectWirelesscontrollerHotspot20Icon("trnameObjectWirelesscontrollerHotspot20Icon");
    
        var trnameObjectWirelesscontrollerHotspot20IconIconlist = new Fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist("trnameObjectWirelesscontrollerHotspot20IconIconlist", new()
        {
            Type = "gif",
            Icon = trnameObjectWirelesscontrollerHotspot20Icon.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWirelesscontrollerHotspot20Icon,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Icon;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20IconIconlistArgs;
    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 trnameObjectWirelesscontrollerHotspot20Icon = new ObjectWirelesscontrollerHotspot20Icon("trnameObjectWirelesscontrollerHotspot20Icon");
    
            var trnameObjectWirelesscontrollerHotspot20IconIconlist = new ObjectWirelesscontrollerHotspot20IconIconlist("trnameObjectWirelesscontrollerHotspot20IconIconlist", ObjectWirelesscontrollerHotspot20IconIconlistArgs.builder()
                .type("gif")
                .icon(trnameObjectWirelesscontrollerHotspot20Icon.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWirelesscontrollerHotspot20Icon)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWirelesscontrollerHotspot20IconIconlist:
        type: fortimanager:ObjectWirelesscontrollerHotspot20IconIconlist
        properties:
          type: gif
          icon: ${trnameObjectWirelesscontrollerHotspot20Icon.name}
        options:
          dependsOn:
            - ${trnameObjectWirelesscontrollerHotspot20Icon}
      trnameObjectWirelesscontrollerHotspot20Icon:
        type: fortimanager:ObjectWirelesscontrollerHotspot20Icon
    

    Create ObjectWirelesscontrollerHotspot20IconIconlist Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerHotspot20IconIconlist(name: string, args: ObjectWirelesscontrollerHotspot20IconIconlistArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerHotspot20IconIconlist(resource_name: str,
                                                      args: ObjectWirelesscontrollerHotspot20IconIconlistArgs,
                                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerHotspot20IconIconlist(resource_name: str,
                                                      opts: Optional[ResourceOptions] = None,
                                                      icon: Optional[str] = None,
                                                      adom: Optional[str] = None,
                                                      file: Optional[str] = None,
                                                      height: Optional[float] = None,
                                                      lang: Optional[str] = None,
                                                      name: Optional[str] = None,
                                                      object_wirelesscontroller_hotspot20_icon_iconlist_id: Optional[str] = None,
                                                      scopetype: Optional[str] = None,
                                                      type: Optional[str] = None,
                                                      width: Optional[float] = None)
    func NewObjectWirelesscontrollerHotspot20IconIconlist(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20IconIconlistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20IconIconlist, error)
    public ObjectWirelesscontrollerHotspot20IconIconlist(string name, ObjectWirelesscontrollerHotspot20IconIconlistArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerHotspot20IconIconlist(String name, ObjectWirelesscontrollerHotspot20IconIconlistArgs args)
    public ObjectWirelesscontrollerHotspot20IconIconlist(String name, ObjectWirelesscontrollerHotspot20IconIconlistArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20IconIconlist
    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 ObjectWirelesscontrollerHotspot20IconIconlistArgs
    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 ObjectWirelesscontrollerHotspot20IconIconlistArgs
    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 ObjectWirelesscontrollerHotspot20IconIconlistArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20IconIconlistArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20IconIconlistArgs
    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 objectWirelesscontrollerHotspot20IconIconlistResource = new Fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist("objectWirelesscontrollerHotspot20IconIconlistResource", new()
    {
        Icon = "string",
        Adom = "string",
        File = "string",
        Height = 0,
        Lang = "string",
        Name = "string",
        ObjectWirelesscontrollerHotspot20IconIconlistId = "string",
        Scopetype = "string",
        Type = "string",
        Width = 0,
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerHotspot20IconIconlist(ctx, "objectWirelesscontrollerHotspot20IconIconlistResource", &fortimanager.ObjectWirelesscontrollerHotspot20IconIconlistArgs{
    Icon: pulumi.String("string"),
    Adom: pulumi.String("string"),
    File: pulumi.String("string"),
    Height: pulumi.Float64(0),
    Lang: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectWirelesscontrollerHotspot20IconIconlistId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Type: pulumi.String("string"),
    Width: pulumi.Float64(0),
    })
    
    var objectWirelesscontrollerHotspot20IconIconlistResource = new ObjectWirelesscontrollerHotspot20IconIconlist("objectWirelesscontrollerHotspot20IconIconlistResource", ObjectWirelesscontrollerHotspot20IconIconlistArgs.builder()
        .icon("string")
        .adom("string")
        .file("string")
        .height(0)
        .lang("string")
        .name("string")
        .objectWirelesscontrollerHotspot20IconIconlistId("string")
        .scopetype("string")
        .type("string")
        .width(0)
        .build());
    
    object_wirelesscontroller_hotspot20_icon_iconlist_resource = fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist("objectWirelesscontrollerHotspot20IconIconlistResource",
        icon="string",
        adom="string",
        file="string",
        height=0,
        lang="string",
        name="string",
        object_wirelesscontroller_hotspot20_icon_iconlist_id="string",
        scopetype="string",
        type="string",
        width=0)
    
    const objectWirelesscontrollerHotspot20IconIconlistResource = new fortimanager.ObjectWirelesscontrollerHotspot20IconIconlist("objectWirelesscontrollerHotspot20IconIconlistResource", {
        icon: "string",
        adom: "string",
        file: "string",
        height: 0,
        lang: "string",
        name: "string",
        objectWirelesscontrollerHotspot20IconIconlistId: "string",
        scopetype: "string",
        type: "string",
        width: 0,
    });
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20IconIconlist
    properties:
        adom: string
        file: string
        height: 0
        icon: string
        lang: string
        name: string
        objectWirelesscontrollerHotspot20IconIconlistId: string
        scopetype: string
        type: string
        width: 0
    

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

    Icon string
    Icon.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    File string
    Icon file.
    Height double
    Icon height.
    Lang string
    Language code.
    Name string
    Icon name.
    ObjectWirelesscontrollerHotspot20IconIconlistId string
    an identifier for the resource with format {{name}}.
    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.
    Type string
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    Width double
    Icon width.
    Icon string
    Icon.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    File string
    Icon file.
    Height float64
    Icon height.
    Lang string
    Language code.
    Name string
    Icon name.
    ObjectWirelesscontrollerHotspot20IconIconlistId string
    an identifier for the resource with format {{name}}.
    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.
    Type string
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    Width float64
    Icon width.
    icon String
    Icon.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file String
    Icon file.
    height Double
    Icon height.
    lang String
    Language code.
    name String
    Icon name.
    objectWirelesscontrollerHotspot20IconIconlistId String
    an identifier for the resource with format {{name}}.
    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.
    type String
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width Double
    Icon width.
    icon string
    Icon.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file string
    Icon file.
    height number
    Icon height.
    lang string
    Language code.
    name string
    Icon name.
    objectWirelesscontrollerHotspot20IconIconlistId string
    an identifier for the resource with format {{name}}.
    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.
    type string
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width number
    Icon width.
    icon str
    Icon.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file str
    Icon file.
    height float
    Icon height.
    lang str
    Language code.
    name str
    Icon name.
    object_wirelesscontroller_hotspot20_icon_iconlist_id str
    an identifier for the resource with format {{name}}.
    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.
    type str
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width float
    Icon width.
    icon String
    Icon.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file String
    Icon file.
    height Number
    Icon height.
    lang String
    Language code.
    name String
    Icon name.
    objectWirelesscontrollerHotspot20IconIconlistId String
    an identifier for the resource with format {{name}}.
    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.
    type String
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width Number
    Icon width.

    Outputs

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

    Get an existing ObjectWirelesscontrollerHotspot20IconIconlist 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?: ObjectWirelesscontrollerHotspot20IconIconlistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20IconIconlist
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            file: Optional[str] = None,
            height: Optional[float] = None,
            icon: Optional[str] = None,
            lang: Optional[str] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_hotspot20_icon_iconlist_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            type: Optional[str] = None,
            width: Optional[float] = None) -> ObjectWirelesscontrollerHotspot20IconIconlist
    func GetObjectWirelesscontrollerHotspot20IconIconlist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20IconIconlistState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20IconIconlist, error)
    public static ObjectWirelesscontrollerHotspot20IconIconlist Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20IconIconlistState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerHotspot20IconIconlist get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20IconIconlistState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20IconIconlist    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.
    File string
    Icon file.
    Height double
    Icon height.
    Icon string
    Icon.
    Lang string
    Language code.
    Name string
    Icon name.
    ObjectWirelesscontrollerHotspot20IconIconlistId string
    an identifier for the resource with format {{name}}.
    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.
    Type string
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    Width double
    Icon width.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    File string
    Icon file.
    Height float64
    Icon height.
    Icon string
    Icon.
    Lang string
    Language code.
    Name string
    Icon name.
    ObjectWirelesscontrollerHotspot20IconIconlistId string
    an identifier for the resource with format {{name}}.
    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.
    Type string
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    Width float64
    Icon width.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file String
    Icon file.
    height Double
    Icon height.
    icon String
    Icon.
    lang String
    Language code.
    name String
    Icon name.
    objectWirelesscontrollerHotspot20IconIconlistId String
    an identifier for the resource with format {{name}}.
    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.
    type String
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width Double
    Icon width.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file string
    Icon file.
    height number
    Icon height.
    icon string
    Icon.
    lang string
    Language code.
    name string
    Icon name.
    objectWirelesscontrollerHotspot20IconIconlistId string
    an identifier for the resource with format {{name}}.
    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.
    type string
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width number
    Icon width.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file str
    Icon file.
    height float
    Icon height.
    icon str
    Icon.
    lang str
    Language code.
    name str
    Icon name.
    object_wirelesscontroller_hotspot20_icon_iconlist_id str
    an identifier for the resource with format {{name}}.
    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.
    type str
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width float
    Icon width.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    file String
    Icon file.
    height Number
    Icon height.
    icon String
    Icon.
    lang String
    Language code.
    name String
    Icon name.
    objectWirelesscontrollerHotspot20IconIconlistId String
    an identifier for the resource with format {{name}}.
    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.
    type String
    Icon type. Valid values: bmp, gif, jpeg, png, tiff.
    width Number
    Icon width.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20IconIconlist:ObjectWirelesscontrollerHotspot20IconIconlist labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev