fortimanager.ObjectSystemNpuIsfnpqueues
Explore with Pulumi AI
Configure queues of switch port connected to NP6 XAUI on ingress path.
This resource is a sub resource for variable
isf_np_queues
of resourcefortimanager.ObjectSystemNpu
. 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.ObjectSystemNpuIsfnpqueues("trname", {
cos0: "cos-profile1",
cos1: "cos-profile2",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuIsfnpqueues("trname",
cos0="cos-profile1",
cos1="cos-profile2")
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.NewObjectSystemNpuIsfnpqueues(ctx, "trname", &fortimanager.ObjectSystemNpuIsfnpqueuesArgs{
Cos0: pulumi.String("cos-profile1"),
Cos1: pulumi.String("cos-profile2"),
})
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.ObjectSystemNpuIsfnpqueues("trname", new()
{
Cos0 = "cos-profile1",
Cos1 = "cos-profile2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuIsfnpqueues;
import com.pulumi.fortimanager.ObjectSystemNpuIsfnpqueuesArgs;
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 ObjectSystemNpuIsfnpqueues("trname", ObjectSystemNpuIsfnpqueuesArgs.builder()
.cos0("cos-profile1")
.cos1("cos-profile2")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuIsfnpqueues
properties:
cos0: cos-profile1
cos1: cos-profile2
Create ObjectSystemNpuIsfnpqueues Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuIsfnpqueues(name: string, args?: ObjectSystemNpuIsfnpqueuesArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuIsfnpqueues(resource_name: str,
args: Optional[ObjectSystemNpuIsfnpqueuesArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuIsfnpqueues(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
cos0: Optional[str] = None,
cos1: Optional[str] = None,
cos2: Optional[str] = None,
cos3: Optional[str] = None,
cos4: Optional[str] = None,
cos5: Optional[str] = None,
cos6: Optional[str] = None,
cos7: Optional[str] = None,
object_system_npu_isfnpqueues_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectSystemNpuIsfnpqueues(ctx *Context, name string, args *ObjectSystemNpuIsfnpqueuesArgs, opts ...ResourceOption) (*ObjectSystemNpuIsfnpqueues, error)
public ObjectSystemNpuIsfnpqueues(string name, ObjectSystemNpuIsfnpqueuesArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuIsfnpqueues(String name, ObjectSystemNpuIsfnpqueuesArgs args)
public ObjectSystemNpuIsfnpqueues(String name, ObjectSystemNpuIsfnpqueuesArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuIsfnpqueues
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 ObjectSystemNpuIsfnpqueuesArgs
- 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 ObjectSystemNpuIsfnpqueuesArgs
- 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 ObjectSystemNpuIsfnpqueuesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuIsfnpqueuesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuIsfnpqueuesArgs
- 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 objectSystemNpuIsfnpqueuesResource = new Fortimanager.ObjectSystemNpuIsfnpqueues("objectSystemNpuIsfnpqueuesResource", new()
{
Adom = "string",
Cos0 = "string",
Cos1 = "string",
Cos2 = "string",
Cos3 = "string",
Cos4 = "string",
Cos5 = "string",
Cos6 = "string",
Cos7 = "string",
ObjectSystemNpuIsfnpqueuesId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectSystemNpuIsfnpqueues(ctx, "objectSystemNpuIsfnpqueuesResource", &fortimanager.ObjectSystemNpuIsfnpqueuesArgs{
Adom: pulumi.String("string"),
Cos0: pulumi.String("string"),
Cos1: pulumi.String("string"),
Cos2: pulumi.String("string"),
Cos3: pulumi.String("string"),
Cos4: pulumi.String("string"),
Cos5: pulumi.String("string"),
Cos6: pulumi.String("string"),
Cos7: pulumi.String("string"),
ObjectSystemNpuIsfnpqueuesId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectSystemNpuIsfnpqueuesResource = new ObjectSystemNpuIsfnpqueues("objectSystemNpuIsfnpqueuesResource", ObjectSystemNpuIsfnpqueuesArgs.builder()
.adom("string")
.cos0("string")
.cos1("string")
.cos2("string")
.cos3("string")
.cos4("string")
.cos5("string")
.cos6("string")
.cos7("string")
.objectSystemNpuIsfnpqueuesId("string")
.scopetype("string")
.build());
object_system_npu_isfnpqueues_resource = fortimanager.ObjectSystemNpuIsfnpqueues("objectSystemNpuIsfnpqueuesResource",
adom="string",
cos0="string",
cos1="string",
cos2="string",
cos3="string",
cos4="string",
cos5="string",
cos6="string",
cos7="string",
object_system_npu_isfnpqueues_id="string",
scopetype="string")
const objectSystemNpuIsfnpqueuesResource = new fortimanager.ObjectSystemNpuIsfnpqueues("objectSystemNpuIsfnpqueuesResource", {
adom: "string",
cos0: "string",
cos1: "string",
cos2: "string",
cos3: "string",
cos4: "string",
cos5: "string",
cos6: "string",
cos7: "string",
objectSystemNpuIsfnpqueuesId: "string",
scopetype: "string",
});
type: fortimanager:ObjectSystemNpuIsfnpqueues
properties:
adom: string
cos0: string
cos1: string
cos2: string
cos3: string
cos4: string
cos5: string
cos6: string
cos7: string
objectSystemNpuIsfnpqueuesId: string
scopetype: string
ObjectSystemNpuIsfnpqueues 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 ObjectSystemNpuIsfnpqueues resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Cos0 string
- CoS profile name for CoS 0.
- Cos1 string
- CoS profile name for CoS 1.
- Cos2 string
- CoS profile name for CoS 2.
- Cos3 string
- CoS profile name for CoS 3.
- Cos4 string
- CoS profile name for CoS 4.
- Cos5 string
- CoS profile name for CoS 5.
- Cos6 string
- CoS profile name for CoS 6.
- Cos7 string
- CoS profile name for CoS 7.
- Object
System stringNpu Isfnpqueues Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Cos0 string
- CoS profile name for CoS 0.
- Cos1 string
- CoS profile name for CoS 1.
- Cos2 string
- CoS profile name for CoS 2.
- Cos3 string
- CoS profile name for CoS 3.
- Cos4 string
- CoS profile name for CoS 4.
- Cos5 string
- CoS profile name for CoS 5.
- Cos6 string
- CoS profile name for CoS 6.
- Cos7 string
- CoS profile name for CoS 7.
- Object
System stringNpu Isfnpqueues Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 String
- CoS profile name for CoS 0.
- cos1 String
- CoS profile name for CoS 1.
- cos2 String
- CoS profile name for CoS 2.
- cos3 String
- CoS profile name for CoS 3.
- cos4 String
- CoS profile name for CoS 4.
- cos5 String
- CoS profile name for CoS 5.
- cos6 String
- CoS profile name for CoS 6.
- cos7 String
- CoS profile name for CoS 7.
- object
System StringNpu Isfnpqueues Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 string
- CoS profile name for CoS 0.
- cos1 string
- CoS profile name for CoS 1.
- cos2 string
- CoS profile name for CoS 2.
- cos3 string
- CoS profile name for CoS 3.
- cos4 string
- CoS profile name for CoS 4.
- cos5 string
- CoS profile name for CoS 5.
- cos6 string
- CoS profile name for CoS 6.
- cos7 string
- CoS profile name for CoS 7.
- object
System stringNpu Isfnpqueues Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 str
- CoS profile name for CoS 0.
- cos1 str
- CoS profile name for CoS 1.
- cos2 str
- CoS profile name for CoS 2.
- cos3 str
- CoS profile name for CoS 3.
- cos4 str
- CoS profile name for CoS 4.
- cos5 str
- CoS profile name for CoS 5.
- cos6 str
- CoS profile name for CoS 6.
- cos7 str
- CoS profile name for CoS 7.
- object_
system_ strnpu_ isfnpqueues_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 String
- CoS profile name for CoS 0.
- cos1 String
- CoS profile name for CoS 1.
- cos2 String
- CoS profile name for CoS 2.
- cos3 String
- CoS profile name for CoS 3.
- cos4 String
- CoS profile name for CoS 4.
- cos5 String
- CoS profile name for CoS 5.
- cos6 String
- CoS profile name for CoS 6.
- cos7 String
- CoS profile name for CoS 7.
- object
System StringNpu Isfnpqueues Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemNpuIsfnpqueues 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 ObjectSystemNpuIsfnpqueues Resource
Get an existing ObjectSystemNpuIsfnpqueues 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?: ObjectSystemNpuIsfnpqueuesState, opts?: CustomResourceOptions): ObjectSystemNpuIsfnpqueues
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
cos0: Optional[str] = None,
cos1: Optional[str] = None,
cos2: Optional[str] = None,
cos3: Optional[str] = None,
cos4: Optional[str] = None,
cos5: Optional[str] = None,
cos6: Optional[str] = None,
cos7: Optional[str] = None,
object_system_npu_isfnpqueues_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectSystemNpuIsfnpqueues
func GetObjectSystemNpuIsfnpqueues(ctx *Context, name string, id IDInput, state *ObjectSystemNpuIsfnpqueuesState, opts ...ResourceOption) (*ObjectSystemNpuIsfnpqueues, error)
public static ObjectSystemNpuIsfnpqueues Get(string name, Input<string> id, ObjectSystemNpuIsfnpqueuesState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuIsfnpqueues get(String name, Output<String> id, ObjectSystemNpuIsfnpqueuesState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuIsfnpqueues 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Cos0 string
- CoS profile name for CoS 0.
- Cos1 string
- CoS profile name for CoS 1.
- Cos2 string
- CoS profile name for CoS 2.
- Cos3 string
- CoS profile name for CoS 3.
- Cos4 string
- CoS profile name for CoS 4.
- Cos5 string
- CoS profile name for CoS 5.
- Cos6 string
- CoS profile name for CoS 6.
- Cos7 string
- CoS profile name for CoS 7.
- Object
System stringNpu Isfnpqueues Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Cos0 string
- CoS profile name for CoS 0.
- Cos1 string
- CoS profile name for CoS 1.
- Cos2 string
- CoS profile name for CoS 2.
- Cos3 string
- CoS profile name for CoS 3.
- Cos4 string
- CoS profile name for CoS 4.
- Cos5 string
- CoS profile name for CoS 5.
- Cos6 string
- CoS profile name for CoS 6.
- Cos7 string
- CoS profile name for CoS 7.
- Object
System stringNpu Isfnpqueues Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 String
- CoS profile name for CoS 0.
- cos1 String
- CoS profile name for CoS 1.
- cos2 String
- CoS profile name for CoS 2.
- cos3 String
- CoS profile name for CoS 3.
- cos4 String
- CoS profile name for CoS 4.
- cos5 String
- CoS profile name for CoS 5.
- cos6 String
- CoS profile name for CoS 6.
- cos7 String
- CoS profile name for CoS 7.
- object
System StringNpu Isfnpqueues Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 string
- CoS profile name for CoS 0.
- cos1 string
- CoS profile name for CoS 1.
- cos2 string
- CoS profile name for CoS 2.
- cos3 string
- CoS profile name for CoS 3.
- cos4 string
- CoS profile name for CoS 4.
- cos5 string
- CoS profile name for CoS 5.
- cos6 string
- CoS profile name for CoS 6.
- cos7 string
- CoS profile name for CoS 7.
- object
System stringNpu Isfnpqueues Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 str
- CoS profile name for CoS 0.
- cos1 str
- CoS profile name for CoS 1.
- cos2 str
- CoS profile name for CoS 2.
- cos3 str
- CoS profile name for CoS 3.
- cos4 str
- CoS profile name for CoS 4.
- cos5 str
- CoS profile name for CoS 5.
- cos6 str
- CoS profile name for CoS 6.
- cos7 str
- CoS profile name for CoS 7.
- object_
system_ strnpu_ isfnpqueues_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - cos0 String
- CoS profile name for CoS 0.
- cos1 String
- CoS profile name for CoS 1.
- cos2 String
- CoS profile name for CoS 2.
- cos3 String
- CoS profile name for CoS 3.
- cos4 String
- CoS profile name for CoS 4.
- cos5 String
- CoS profile name for CoS 5.
- cos6 String
- CoS profile name for CoS 6.
- cos7 String
- CoS profile name for CoS 7.
- object
System StringNpu Isfnpqueues Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Import
ObjectSystem NpuIsfNpQueues can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuIsfnpqueues:ObjectSystemNpuIsfnpqueues labelname ObjectSystemNpuIsfNpQueues
$ 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.