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

fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric

Explore with Pulumi AI

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

    Configure WAN metrics.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric("trname", {
        downlinkLoad: 1,
        downlinkSpeed: 2400,
        linkAtCapacity: "disable",
        linkStatus: "down",
        loadMeasurementDuration: 10,
        symmetricWanLink: "asymmetric",
        uplinkSpeed: 2400,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric("trname",
        downlink_load=1,
        downlink_speed=2400,
        link_at_capacity="disable",
        link_status="down",
        load_measurement_duration=10,
        symmetric_wan_link="asymmetric",
        uplink_speed=2400)
    
    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 {
    		_, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpwanmetric(ctx, "trname", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs{
    			DownlinkLoad:            pulumi.Float64(1),
    			DownlinkSpeed:           pulumi.Float64(2400),
    			LinkAtCapacity:          pulumi.String("disable"),
    			LinkStatus:              pulumi.String("down"),
    			LoadMeasurementDuration: pulumi.Float64(10),
    			SymmetricWanLink:        pulumi.String("asymmetric"),
    			UplinkSpeed:             pulumi.Float64(2400),
    		})
    		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 trname = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric("trname", new()
        {
            DownlinkLoad = 1,
            DownlinkSpeed = 2400,
            LinkAtCapacity = "disable",
            LinkStatus = "down",
            LoadMeasurementDuration = 10,
            SymmetricWanLink = "asymmetric",
            UplinkSpeed = 2400,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs;
    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 trname = new ObjectWirelesscontrollerHotspot20H2qpwanmetric("trname", ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs.builder()
                .downlinkLoad(1)
                .downlinkSpeed(2400)
                .linkAtCapacity("disable")
                .linkStatus("down")
                .loadMeasurementDuration(10)
                .symmetricWanLink("asymmetric")
                .uplinkSpeed(2400)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpwanmetric
        properties:
          downlinkLoad: 1
          downlinkSpeed: 2400
          linkAtCapacity: disable
          linkStatus: down
          loadMeasurementDuration: 10
          symmetricWanLink: asymmetric
          uplinkSpeed: 2400
    

    Create ObjectWirelesscontrollerHotspot20H2qpwanmetric Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerHotspot20H2qpwanmetric(name: string, args?: ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerHotspot20H2qpwanmetric(resource_name: str,
                                                       args: Optional[ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs] = None,
                                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerHotspot20H2qpwanmetric(resource_name: str,
                                                       opts: Optional[ResourceOptions] = None,
                                                       adom: Optional[str] = None,
                                                       downlink_load: Optional[float] = None,
                                                       downlink_speed: Optional[float] = None,
                                                       link_at_capacity: Optional[str] = None,
                                                       link_status: Optional[str] = None,
                                                       load_measurement_duration: Optional[float] = None,
                                                       name: Optional[str] = None,
                                                       object_wirelesscontroller_hotspot20_h2qpwanmetric_id: Optional[str] = None,
                                                       scopetype: Optional[str] = None,
                                                       symmetric_wan_link: Optional[str] = None,
                                                       uplink_load: Optional[float] = None,
                                                       uplink_speed: Optional[float] = None)
    func NewObjectWirelesscontrollerHotspot20H2qpwanmetric(ctx *Context, name string, args *ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpwanmetric, error)
    public ObjectWirelesscontrollerHotspot20H2qpwanmetric(string name, ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerHotspot20H2qpwanmetric(String name, ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs args)
    public ObjectWirelesscontrollerHotspot20H2qpwanmetric(String name, ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpwanmetric
    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 ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs
    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 ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs
    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 ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs
    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 objectWirelesscontrollerHotspot20H2qpwanmetricResource = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric("objectWirelesscontrollerHotspot20H2qpwanmetricResource", new()
    {
        Adom = "string",
        DownlinkLoad = 0,
        DownlinkSpeed = 0,
        LinkAtCapacity = "string",
        LinkStatus = "string",
        LoadMeasurementDuration = 0,
        Name = "string",
        ObjectWirelesscontrollerHotspot20H2qpwanmetricId = "string",
        Scopetype = "string",
        SymmetricWanLink = "string",
        UplinkLoad = 0,
        UplinkSpeed = 0,
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpwanmetric(ctx, "objectWirelesscontrollerHotspot20H2qpwanmetricResource", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs{
    Adom: pulumi.String("string"),
    DownlinkLoad: pulumi.Float64(0),
    DownlinkSpeed: pulumi.Float64(0),
    LinkAtCapacity: pulumi.String("string"),
    LinkStatus: pulumi.String("string"),
    LoadMeasurementDuration: pulumi.Float64(0),
    Name: pulumi.String("string"),
    ObjectWirelesscontrollerHotspot20H2qpwanmetricId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SymmetricWanLink: pulumi.String("string"),
    UplinkLoad: pulumi.Float64(0),
    UplinkSpeed: pulumi.Float64(0),
    })
    
    var objectWirelesscontrollerHotspot20H2qpwanmetricResource = new ObjectWirelesscontrollerHotspot20H2qpwanmetric("objectWirelesscontrollerHotspot20H2qpwanmetricResource", ObjectWirelesscontrollerHotspot20H2qpwanmetricArgs.builder()
        .adom("string")
        .downlinkLoad(0)
        .downlinkSpeed(0)
        .linkAtCapacity("string")
        .linkStatus("string")
        .loadMeasurementDuration(0)
        .name("string")
        .objectWirelesscontrollerHotspot20H2qpwanmetricId("string")
        .scopetype("string")
        .symmetricWanLink("string")
        .uplinkLoad(0)
        .uplinkSpeed(0)
        .build());
    
    object_wirelesscontroller_hotspot20_h2qpwanmetric_resource = fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric("objectWirelesscontrollerHotspot20H2qpwanmetricResource",
        adom="string",
        downlink_load=0,
        downlink_speed=0,
        link_at_capacity="string",
        link_status="string",
        load_measurement_duration=0,
        name="string",
        object_wirelesscontroller_hotspot20_h2qpwanmetric_id="string",
        scopetype="string",
        symmetric_wan_link="string",
        uplink_load=0,
        uplink_speed=0)
    
    const objectWirelesscontrollerHotspot20H2qpwanmetricResource = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpwanmetric("objectWirelesscontrollerHotspot20H2qpwanmetricResource", {
        adom: "string",
        downlinkLoad: 0,
        downlinkSpeed: 0,
        linkAtCapacity: "string",
        linkStatus: "string",
        loadMeasurementDuration: 0,
        name: "string",
        objectWirelesscontrollerHotspot20H2qpwanmetricId: "string",
        scopetype: "string",
        symmetricWanLink: "string",
        uplinkLoad: 0,
        uplinkSpeed: 0,
    });
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpwanmetric
    properties:
        adom: string
        downlinkLoad: 0
        downlinkSpeed: 0
        linkAtCapacity: string
        linkStatus: string
        loadMeasurementDuration: 0
        name: string
        objectWirelesscontrollerHotspot20H2qpwanmetricId: string
        scopetype: string
        symmetricWanLink: string
        uplinkLoad: 0
        uplinkSpeed: 0
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DownlinkLoad double
    Downlink load.
    DownlinkSpeed double
    Downlink speed (in kilobits/s).
    LinkAtCapacity string
    Link at capacity. Valid values: disable, enable.
    LinkStatus string
    Link status. Valid values: down, up, in-test.
    LoadMeasurementDuration double
    Load measurement duration (in tenths of a second).
    Name string
    WAN metric name.
    ObjectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    SymmetricWanLink string
    WAN link symmetry. Valid values: asymmetric, symmetric.
    UplinkLoad double
    Uplink load.
    UplinkSpeed double
    Uplink speed (in kilobits/s).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DownlinkLoad float64
    Downlink load.
    DownlinkSpeed float64
    Downlink speed (in kilobits/s).
    LinkAtCapacity string
    Link at capacity. Valid values: disable, enable.
    LinkStatus string
    Link status. Valid values: down, up, in-test.
    LoadMeasurementDuration float64
    Load measurement duration (in tenths of a second).
    Name string
    WAN metric name.
    ObjectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    SymmetricWanLink string
    WAN link symmetry. Valid values: asymmetric, symmetric.
    UplinkLoad float64
    Uplink load.
    UplinkSpeed float64
    Uplink speed (in kilobits/s).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlinkLoad Double
    Downlink load.
    downlinkSpeed Double
    Downlink speed (in kilobits/s).
    linkAtCapacity String
    Link at capacity. Valid values: disable, enable.
    linkStatus String
    Link status. Valid values: down, up, in-test.
    loadMeasurementDuration Double
    Load measurement duration (in tenths of a second).
    name String
    WAN metric name.
    objectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    symmetricWanLink String
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplinkLoad Double
    Uplink load.
    uplinkSpeed Double
    Uplink speed (in kilobits/s).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlinkLoad number
    Downlink load.
    downlinkSpeed number
    Downlink speed (in kilobits/s).
    linkAtCapacity string
    Link at capacity. Valid values: disable, enable.
    linkStatus string
    Link status. Valid values: down, up, in-test.
    loadMeasurementDuration number
    Load measurement duration (in tenths of a second).
    name string
    WAN metric name.
    objectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    symmetricWanLink string
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplinkLoad number
    Uplink load.
    uplinkSpeed number
    Uplink speed (in kilobits/s).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlink_load float
    Downlink load.
    downlink_speed float
    Downlink speed (in kilobits/s).
    link_at_capacity str
    Link at capacity. Valid values: disable, enable.
    link_status str
    Link status. Valid values: down, up, in-test.
    load_measurement_duration float
    Load measurement duration (in tenths of a second).
    name str
    WAN metric name.
    object_wirelesscontroller_hotspot20_h2qpwanmetric_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.
    symmetric_wan_link str
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplink_load float
    Uplink load.
    uplink_speed float
    Uplink speed (in kilobits/s).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlinkLoad Number
    Downlink load.
    downlinkSpeed Number
    Downlink speed (in kilobits/s).
    linkAtCapacity String
    Link at capacity. Valid values: disable, enable.
    linkStatus String
    Link status. Valid values: down, up, in-test.
    loadMeasurementDuration Number
    Load measurement duration (in tenths of a second).
    name String
    WAN metric name.
    objectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    symmetricWanLink String
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplinkLoad Number
    Uplink load.
    uplinkSpeed Number
    Uplink speed (in kilobits/s).

    Outputs

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

    Get an existing ObjectWirelesscontrollerHotspot20H2qpwanmetric 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?: ObjectWirelesscontrollerHotspot20H2qpwanmetricState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20H2qpwanmetric
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            downlink_load: Optional[float] = None,
            downlink_speed: Optional[float] = None,
            link_at_capacity: Optional[str] = None,
            link_status: Optional[str] = None,
            load_measurement_duration: Optional[float] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_hotspot20_h2qpwanmetric_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            symmetric_wan_link: Optional[str] = None,
            uplink_load: Optional[float] = None,
            uplink_speed: Optional[float] = None) -> ObjectWirelesscontrollerHotspot20H2qpwanmetric
    func GetObjectWirelesscontrollerHotspot20H2qpwanmetric(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20H2qpwanmetricState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpwanmetric, error)
    public static ObjectWirelesscontrollerHotspot20H2qpwanmetric Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20H2qpwanmetricState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerHotspot20H2qpwanmetric get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20H2qpwanmetricState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpwanmetric    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.
    DownlinkLoad double
    Downlink load.
    DownlinkSpeed double
    Downlink speed (in kilobits/s).
    LinkAtCapacity string
    Link at capacity. Valid values: disable, enable.
    LinkStatus string
    Link status. Valid values: down, up, in-test.
    LoadMeasurementDuration double
    Load measurement duration (in tenths of a second).
    Name string
    WAN metric name.
    ObjectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    SymmetricWanLink string
    WAN link symmetry. Valid values: asymmetric, symmetric.
    UplinkLoad double
    Uplink load.
    UplinkSpeed double
    Uplink speed (in kilobits/s).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DownlinkLoad float64
    Downlink load.
    DownlinkSpeed float64
    Downlink speed (in kilobits/s).
    LinkAtCapacity string
    Link at capacity. Valid values: disable, enable.
    LinkStatus string
    Link status. Valid values: down, up, in-test.
    LoadMeasurementDuration float64
    Load measurement duration (in tenths of a second).
    Name string
    WAN metric name.
    ObjectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    SymmetricWanLink string
    WAN link symmetry. Valid values: asymmetric, symmetric.
    UplinkLoad float64
    Uplink load.
    UplinkSpeed float64
    Uplink speed (in kilobits/s).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlinkLoad Double
    Downlink load.
    downlinkSpeed Double
    Downlink speed (in kilobits/s).
    linkAtCapacity String
    Link at capacity. Valid values: disable, enable.
    linkStatus String
    Link status. Valid values: down, up, in-test.
    loadMeasurementDuration Double
    Load measurement duration (in tenths of a second).
    name String
    WAN metric name.
    objectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    symmetricWanLink String
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplinkLoad Double
    Uplink load.
    uplinkSpeed Double
    Uplink speed (in kilobits/s).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlinkLoad number
    Downlink load.
    downlinkSpeed number
    Downlink speed (in kilobits/s).
    linkAtCapacity string
    Link at capacity. Valid values: disable, enable.
    linkStatus string
    Link status. Valid values: down, up, in-test.
    loadMeasurementDuration number
    Load measurement duration (in tenths of a second).
    name string
    WAN metric name.
    objectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    symmetricWanLink string
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplinkLoad number
    Uplink load.
    uplinkSpeed number
    Uplink speed (in kilobits/s).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlink_load float
    Downlink load.
    downlink_speed float
    Downlink speed (in kilobits/s).
    link_at_capacity str
    Link at capacity. Valid values: disable, enable.
    link_status str
    Link status. Valid values: down, up, in-test.
    load_measurement_duration float
    Load measurement duration (in tenths of a second).
    name str
    WAN metric name.
    object_wirelesscontroller_hotspot20_h2qpwanmetric_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.
    symmetric_wan_link str
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplink_load float
    Uplink load.
    uplink_speed float
    Uplink speed (in kilobits/s).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    downlinkLoad Number
    Downlink load.
    downlinkSpeed Number
    Downlink speed (in kilobits/s).
    linkAtCapacity String
    Link at capacity. Valid values: disable, enable.
    linkStatus String
    Link status. Valid values: down, up, in-test.
    loadMeasurementDuration Number
    Load measurement duration (in tenths of a second).
    name String
    WAN metric name.
    objectWirelesscontrollerHotspot20H2qpwanmetricId 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.
    symmetricWanLink String
    WAN link symmetry. Valid values: asymmetric, symmetric.
    uplinkLoad Number
    Uplink load.
    uplinkSpeed Number
    Uplink speed (in kilobits/s).

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20H2qpwanmetric:ObjectWirelesscontrollerHotspot20H2qpwanmetric 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