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

fortimanager.ObjectSystemNpuNpqueuesEthernettype

Explore with Pulumi AI

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

    Configure a NP7 QoS Ethernet Type.

    This resource is a sub resource for variable ethernet_type of resource fortimanager.ObjectSystemNpuNpqueues. 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 trname = new fortimanager.ObjectSystemNpuNpqueuesEthernettype("trname", {
        queue: 6,
        weight: 12,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectSystemNpuNpqueuesEthernettype("trname",
        queue=6,
        weight=12)
    
    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.NewObjectSystemNpuNpqueuesEthernettype(ctx, "trname", &fortimanager.ObjectSystemNpuNpqueuesEthernettypeArgs{
    			Queue:  pulumi.Float64(6),
    			Weight: pulumi.Float64(12),
    		})
    		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.ObjectSystemNpuNpqueuesEthernettype("trname", new()
        {
            Queue = 6,
            Weight = 12,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectSystemNpuNpqueuesEthernettype;
    import com.pulumi.fortimanager.ObjectSystemNpuNpqueuesEthernettypeArgs;
    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 ObjectSystemNpuNpqueuesEthernettype("trname", ObjectSystemNpuNpqueuesEthernettypeArgs.builder()
                .queue(6)
                .weight(12)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectSystemNpuNpqueuesEthernettype
        properties:
          queue: 6
          weight: 12
    

    Create ObjectSystemNpuNpqueuesEthernettype Resource

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

    Constructor syntax

    new ObjectSystemNpuNpqueuesEthernettype(name: string, args?: ObjectSystemNpuNpqueuesEthernettypeArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectSystemNpuNpqueuesEthernettype(resource_name: str,
                                            args: Optional[ObjectSystemNpuNpqueuesEthernettypeArgs] = None,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectSystemNpuNpqueuesEthernettype(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            adom: Optional[str] = None,
                                            name: Optional[str] = None,
                                            object_system_npu_npqueues_ethernettype_id: Optional[str] = None,
                                            queue: Optional[float] = None,
                                            scopetype: Optional[str] = None,
                                            type: Optional[float] = None,
                                            weight: Optional[float] = None)
    func NewObjectSystemNpuNpqueuesEthernettype(ctx *Context, name string, args *ObjectSystemNpuNpqueuesEthernettypeArgs, opts ...ResourceOption) (*ObjectSystemNpuNpqueuesEthernettype, error)
    public ObjectSystemNpuNpqueuesEthernettype(string name, ObjectSystemNpuNpqueuesEthernettypeArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectSystemNpuNpqueuesEthernettype(String name, ObjectSystemNpuNpqueuesEthernettypeArgs args)
    public ObjectSystemNpuNpqueuesEthernettype(String name, ObjectSystemNpuNpqueuesEthernettypeArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectSystemNpuNpqueuesEthernettype
    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 ObjectSystemNpuNpqueuesEthernettypeArgs
    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 ObjectSystemNpuNpqueuesEthernettypeArgs
    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 ObjectSystemNpuNpqueuesEthernettypeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectSystemNpuNpqueuesEthernettypeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectSystemNpuNpqueuesEthernettypeArgs
    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 objectSystemNpuNpqueuesEthernettypeResource = new Fortimanager.ObjectSystemNpuNpqueuesEthernettype("objectSystemNpuNpqueuesEthernettypeResource", new()
    {
        Adom = "string",
        Name = "string",
        ObjectSystemNpuNpqueuesEthernettypeId = "string",
        Queue = 0,
        Scopetype = "string",
        Type = 0,
        Weight = 0,
    });
    
    example, err := fortimanager.NewObjectSystemNpuNpqueuesEthernettype(ctx, "objectSystemNpuNpqueuesEthernettypeResource", &fortimanager.ObjectSystemNpuNpqueuesEthernettypeArgs{
    Adom: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectSystemNpuNpqueuesEthernettypeId: pulumi.String("string"),
    Queue: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Type: pulumi.Float64(0),
    Weight: pulumi.Float64(0),
    })
    
    var objectSystemNpuNpqueuesEthernettypeResource = new ObjectSystemNpuNpqueuesEthernettype("objectSystemNpuNpqueuesEthernettypeResource", ObjectSystemNpuNpqueuesEthernettypeArgs.builder()
        .adom("string")
        .name("string")
        .objectSystemNpuNpqueuesEthernettypeId("string")
        .queue(0)
        .scopetype("string")
        .type(0)
        .weight(0)
        .build());
    
    object_system_npu_npqueues_ethernettype_resource = fortimanager.ObjectSystemNpuNpqueuesEthernettype("objectSystemNpuNpqueuesEthernettypeResource",
        adom="string",
        name="string",
        object_system_npu_npqueues_ethernettype_id="string",
        queue=0,
        scopetype="string",
        type=0,
        weight=0)
    
    const objectSystemNpuNpqueuesEthernettypeResource = new fortimanager.ObjectSystemNpuNpqueuesEthernettype("objectSystemNpuNpqueuesEthernettypeResource", {
        adom: "string",
        name: "string",
        objectSystemNpuNpqueuesEthernettypeId: "string",
        queue: 0,
        scopetype: "string",
        type: 0,
        weight: 0,
    });
    
    type: fortimanager:ObjectSystemNpuNpqueuesEthernettype
    properties:
        adom: string
        name: string
        objectSystemNpuNpqueuesEthernettypeId: string
        queue: 0
        scopetype: string
        type: 0
        weight: 0
    

    ObjectSystemNpuNpqueuesEthernettype 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 ObjectSystemNpuNpqueuesEthernettype 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.
    Name string
    Ethernet Type Name.
    ObjectSystemNpuNpqueuesEthernettypeId string
    an identifier for the resource with format {{name}}.
    Queue double
    Queue Number.
    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 double
    Ethernet Type.
    Weight double
    Class Weight.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Ethernet Type Name.
    ObjectSystemNpuNpqueuesEthernettypeId string
    an identifier for the resource with format {{name}}.
    Queue float64
    Queue Number.
    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 float64
    Ethernet Type.
    Weight float64
    Class Weight.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Ethernet Type Name.
    objectSystemNpuNpqueuesEthernettypeId String
    an identifier for the resource with format {{name}}.
    queue Double
    Queue Number.
    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 Double
    Ethernet Type.
    weight Double
    Class Weight.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name string
    Ethernet Type Name.
    objectSystemNpuNpqueuesEthernettypeId string
    an identifier for the resource with format {{name}}.
    queue number
    Queue Number.
    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 number
    Ethernet Type.
    weight number
    Class Weight.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name str
    Ethernet Type Name.
    object_system_npu_npqueues_ethernettype_id str
    an identifier for the resource with format {{name}}.
    queue float
    Queue Number.
    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 float
    Ethernet Type.
    weight float
    Class Weight.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Ethernet Type Name.
    objectSystemNpuNpqueuesEthernettypeId String
    an identifier for the resource with format {{name}}.
    queue Number
    Queue Number.
    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 Number
    Ethernet Type.
    weight Number
    Class Weight.

    Outputs

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

    Get an existing ObjectSystemNpuNpqueuesEthernettype 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?: ObjectSystemNpuNpqueuesEthernettypeState, opts?: CustomResourceOptions): ObjectSystemNpuNpqueuesEthernettype
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            name: Optional[str] = None,
            object_system_npu_npqueues_ethernettype_id: Optional[str] = None,
            queue: Optional[float] = None,
            scopetype: Optional[str] = None,
            type: Optional[float] = None,
            weight: Optional[float] = None) -> ObjectSystemNpuNpqueuesEthernettype
    func GetObjectSystemNpuNpqueuesEthernettype(ctx *Context, name string, id IDInput, state *ObjectSystemNpuNpqueuesEthernettypeState, opts ...ResourceOption) (*ObjectSystemNpuNpqueuesEthernettype, error)
    public static ObjectSystemNpuNpqueuesEthernettype Get(string name, Input<string> id, ObjectSystemNpuNpqueuesEthernettypeState? state, CustomResourceOptions? opts = null)
    public static ObjectSystemNpuNpqueuesEthernettype get(String name, Output<String> id, ObjectSystemNpuNpqueuesEthernettypeState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectSystemNpuNpqueuesEthernettype    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.
    Name string
    Ethernet Type Name.
    ObjectSystemNpuNpqueuesEthernettypeId string
    an identifier for the resource with format {{name}}.
    Queue double
    Queue Number.
    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 double
    Ethernet Type.
    Weight double
    Class Weight.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Ethernet Type Name.
    ObjectSystemNpuNpqueuesEthernettypeId string
    an identifier for the resource with format {{name}}.
    Queue float64
    Queue Number.
    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 float64
    Ethernet Type.
    Weight float64
    Class Weight.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Ethernet Type Name.
    objectSystemNpuNpqueuesEthernettypeId String
    an identifier for the resource with format {{name}}.
    queue Double
    Queue Number.
    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 Double
    Ethernet Type.
    weight Double
    Class Weight.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name string
    Ethernet Type Name.
    objectSystemNpuNpqueuesEthernettypeId string
    an identifier for the resource with format {{name}}.
    queue number
    Queue Number.
    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 number
    Ethernet Type.
    weight number
    Class Weight.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name str
    Ethernet Type Name.
    object_system_npu_npqueues_ethernettype_id str
    an identifier for the resource with format {{name}}.
    queue float
    Queue Number.
    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 float
    Ethernet Type.
    weight float
    Class Weight.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Ethernet Type Name.
    objectSystemNpuNpqueuesEthernettypeId String
    an identifier for the resource with format {{name}}.
    queue Number
    Queue Number.
    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 Number
    Ethernet Type.
    weight Number
    Class Weight.

    Import

    ObjectSystem NpuNpQueuesEthernetType can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectSystemNpuNpqueuesEthernettype:ObjectSystemNpuNpqueuesEthernettype 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