fortimanager.ObjectSystemNpuNpqueuesIpprotocol
Explore with Pulumi AI
Configure a NP7 QoS IP Protocol.
This resource is a sub resource for variable
ip_protocol
of resourcefortimanager.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.ObjectSystemNpuNpqueuesIpprotocol("trname", {
queue: 3,
weight: 13,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuNpqueuesIpprotocol("trname",
queue=3,
weight=13)
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.NewObjectSystemNpuNpqueuesIpprotocol(ctx, "trname", &fortimanager.ObjectSystemNpuNpqueuesIpprotocolArgs{
Queue: pulumi.Float64(3),
Weight: pulumi.Float64(13),
})
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.ObjectSystemNpuNpqueuesIpprotocol("trname", new()
{
Queue = 3,
Weight = 13,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuNpqueuesIpprotocol;
import com.pulumi.fortimanager.ObjectSystemNpuNpqueuesIpprotocolArgs;
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 ObjectSystemNpuNpqueuesIpprotocol("trname", ObjectSystemNpuNpqueuesIpprotocolArgs.builder()
.queue(3)
.weight(13)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuNpqueuesIpprotocol
properties:
queue: 3
weight: 13
Create ObjectSystemNpuNpqueuesIpprotocol Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuNpqueuesIpprotocol(name: string, args?: ObjectSystemNpuNpqueuesIpprotocolArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuNpqueuesIpprotocol(resource_name: str,
args: Optional[ObjectSystemNpuNpqueuesIpprotocolArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuNpqueuesIpprotocol(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
name: Optional[str] = None,
object_system_npu_npqueues_ipprotocol_id: Optional[str] = None,
protocol: Optional[float] = None,
queue: Optional[float] = None,
scopetype: Optional[str] = None,
weight: Optional[float] = None)
func NewObjectSystemNpuNpqueuesIpprotocol(ctx *Context, name string, args *ObjectSystemNpuNpqueuesIpprotocolArgs, opts ...ResourceOption) (*ObjectSystemNpuNpqueuesIpprotocol, error)
public ObjectSystemNpuNpqueuesIpprotocol(string name, ObjectSystemNpuNpqueuesIpprotocolArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuNpqueuesIpprotocol(String name, ObjectSystemNpuNpqueuesIpprotocolArgs args)
public ObjectSystemNpuNpqueuesIpprotocol(String name, ObjectSystemNpuNpqueuesIpprotocolArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuNpqueuesIpprotocol
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 ObjectSystemNpuNpqueuesIpprotocolArgs
- 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 ObjectSystemNpuNpqueuesIpprotocolArgs
- 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 ObjectSystemNpuNpqueuesIpprotocolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuNpqueuesIpprotocolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuNpqueuesIpprotocolArgs
- 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 objectSystemNpuNpqueuesIpprotocolResource = new Fortimanager.ObjectSystemNpuNpqueuesIpprotocol("objectSystemNpuNpqueuesIpprotocolResource", new()
{
Adom = "string",
Name = "string",
ObjectSystemNpuNpqueuesIpprotocolId = "string",
Protocol = 0,
Queue = 0,
Scopetype = "string",
Weight = 0,
});
example, err := fortimanager.NewObjectSystemNpuNpqueuesIpprotocol(ctx, "objectSystemNpuNpqueuesIpprotocolResource", &fortimanager.ObjectSystemNpuNpqueuesIpprotocolArgs{
Adom: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectSystemNpuNpqueuesIpprotocolId: pulumi.String("string"),
Protocol: pulumi.Float64(0),
Queue: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Weight: pulumi.Float64(0),
})
var objectSystemNpuNpqueuesIpprotocolResource = new ObjectSystemNpuNpqueuesIpprotocol("objectSystemNpuNpqueuesIpprotocolResource", ObjectSystemNpuNpqueuesIpprotocolArgs.builder()
.adom("string")
.name("string")
.objectSystemNpuNpqueuesIpprotocolId("string")
.protocol(0)
.queue(0)
.scopetype("string")
.weight(0)
.build());
object_system_npu_npqueues_ipprotocol_resource = fortimanager.ObjectSystemNpuNpqueuesIpprotocol("objectSystemNpuNpqueuesIpprotocolResource",
adom="string",
name="string",
object_system_npu_npqueues_ipprotocol_id="string",
protocol=0,
queue=0,
scopetype="string",
weight=0)
const objectSystemNpuNpqueuesIpprotocolResource = new fortimanager.ObjectSystemNpuNpqueuesIpprotocol("objectSystemNpuNpqueuesIpprotocolResource", {
adom: "string",
name: "string",
objectSystemNpuNpqueuesIpprotocolId: "string",
protocol: 0,
queue: 0,
scopetype: "string",
weight: 0,
});
type: fortimanager:ObjectSystemNpuNpqueuesIpprotocol
properties:
adom: string
name: string
objectSystemNpuNpqueuesIpprotocolId: string
protocol: 0
queue: 0
scopetype: string
weight: 0
ObjectSystemNpuNpqueuesIpprotocol 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 ObjectSystemNpuNpqueuesIpprotocol 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. - Name string
- IP Protocol Name.
- Object
System stringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- Protocol double
- IP Protocol.
- Queue double
- Queue Number.
- 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
. - Weight double
- Class Weight.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Name string
- IP Protocol Name.
- Object
System stringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- Protocol float64
- IP Protocol.
- Queue float64
- Queue Number.
- 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
. - Weight float64
- Class Weight.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- IP Protocol Name.
- object
System StringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- protocol Double
- IP Protocol.
- queue Double
- Queue Number.
- 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
. - weight Double
- Class Weight.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name string
- IP Protocol Name.
- object
System stringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- protocol number
- IP Protocol.
- queue number
- Queue Number.
- 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
. - weight number
- Class Weight.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name str
- IP Protocol Name.
- object_
system_ strnpu_ npqueues_ ipprotocol_ id - an identifier for the resource with format {{name}}.
- protocol float
- IP Protocol.
- queue float
- Queue Number.
- 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
. - weight float
- Class Weight.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- IP Protocol Name.
- object
System StringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- protocol Number
- IP Protocol.
- queue Number
- Queue Number.
- 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
. - weight Number
- Class Weight.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemNpuNpqueuesIpprotocol 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 ObjectSystemNpuNpqueuesIpprotocol Resource
Get an existing ObjectSystemNpuNpqueuesIpprotocol 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?: ObjectSystemNpuNpqueuesIpprotocolState, opts?: CustomResourceOptions): ObjectSystemNpuNpqueuesIpprotocol
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
name: Optional[str] = None,
object_system_npu_npqueues_ipprotocol_id: Optional[str] = None,
protocol: Optional[float] = None,
queue: Optional[float] = None,
scopetype: Optional[str] = None,
weight: Optional[float] = None) -> ObjectSystemNpuNpqueuesIpprotocol
func GetObjectSystemNpuNpqueuesIpprotocol(ctx *Context, name string, id IDInput, state *ObjectSystemNpuNpqueuesIpprotocolState, opts ...ResourceOption) (*ObjectSystemNpuNpqueuesIpprotocol, error)
public static ObjectSystemNpuNpqueuesIpprotocol Get(string name, Input<string> id, ObjectSystemNpuNpqueuesIpprotocolState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuNpqueuesIpprotocol get(String name, Output<String> id, ObjectSystemNpuNpqueuesIpprotocolState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuNpqueuesIpprotocol 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. - Name string
- IP Protocol Name.
- Object
System stringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- Protocol double
- IP Protocol.
- Queue double
- Queue Number.
- 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
. - Weight double
- Class Weight.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Name string
- IP Protocol Name.
- Object
System stringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- Protocol float64
- IP Protocol.
- Queue float64
- Queue Number.
- 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
. - Weight float64
- Class Weight.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- IP Protocol Name.
- object
System StringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- protocol Double
- IP Protocol.
- queue Double
- Queue Number.
- 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
. - weight Double
- Class Weight.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name string
- IP Protocol Name.
- object
System stringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- protocol number
- IP Protocol.
- queue number
- Queue Number.
- 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
. - weight number
- Class Weight.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name str
- IP Protocol Name.
- object_
system_ strnpu_ npqueues_ ipprotocol_ id - an identifier for the resource with format {{name}}.
- protocol float
- IP Protocol.
- queue float
- Queue Number.
- 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
. - weight float
- Class Weight.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- IP Protocol Name.
- object
System StringNpu Npqueues Ipprotocol Id - an identifier for the resource with format {{name}}.
- protocol Number
- IP Protocol.
- queue Number
- Queue Number.
- 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
. - weight Number
- Class Weight.
Import
ObjectSystem NpuNpQueuesIpProtocol can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuNpqueuesIpprotocol:ObjectSystemNpuNpqueuesIpprotocol 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.