fortimanager.ObjectSystemNpuNpqueuesIpservice
Explore with Pulumi AI
Configure a NP7 QoS IP Service.
This resource is a sub resource for variable
ip_service
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.ObjectSystemNpuNpqueuesIpservice("trname", {
dport: 23,
sport: 23,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuNpqueuesIpservice("trname",
dport=23,
sport=23)
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.NewObjectSystemNpuNpqueuesIpservice(ctx, "trname", &fortimanager.ObjectSystemNpuNpqueuesIpserviceArgs{
Dport: pulumi.Float64(23),
Sport: pulumi.Float64(23),
})
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.ObjectSystemNpuNpqueuesIpservice("trname", new()
{
Dport = 23,
Sport = 23,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuNpqueuesIpservice;
import com.pulumi.fortimanager.ObjectSystemNpuNpqueuesIpserviceArgs;
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 ObjectSystemNpuNpqueuesIpservice("trname", ObjectSystemNpuNpqueuesIpserviceArgs.builder()
.dport(23)
.sport(23)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuNpqueuesIpservice
properties:
dport: 23
sport: 23
Create ObjectSystemNpuNpqueuesIpservice Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuNpqueuesIpservice(name: string, args?: ObjectSystemNpuNpqueuesIpserviceArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuNpqueuesIpservice(resource_name: str,
args: Optional[ObjectSystemNpuNpqueuesIpserviceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuNpqueuesIpservice(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
dport: Optional[float] = None,
name: Optional[str] = None,
object_system_npu_npqueues_ipservice_id: Optional[str] = None,
protocol: Optional[float] = None,
queue: Optional[float] = None,
scopetype: Optional[str] = None,
sport: Optional[float] = None,
weight: Optional[float] = None)
func NewObjectSystemNpuNpqueuesIpservice(ctx *Context, name string, args *ObjectSystemNpuNpqueuesIpserviceArgs, opts ...ResourceOption) (*ObjectSystemNpuNpqueuesIpservice, error)
public ObjectSystemNpuNpqueuesIpservice(string name, ObjectSystemNpuNpqueuesIpserviceArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuNpqueuesIpservice(String name, ObjectSystemNpuNpqueuesIpserviceArgs args)
public ObjectSystemNpuNpqueuesIpservice(String name, ObjectSystemNpuNpqueuesIpserviceArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuNpqueuesIpservice
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 ObjectSystemNpuNpqueuesIpserviceArgs
- 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 ObjectSystemNpuNpqueuesIpserviceArgs
- 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 ObjectSystemNpuNpqueuesIpserviceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuNpqueuesIpserviceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuNpqueuesIpserviceArgs
- 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 objectSystemNpuNpqueuesIpserviceResource = new Fortimanager.ObjectSystemNpuNpqueuesIpservice("objectSystemNpuNpqueuesIpserviceResource", new()
{
Adom = "string",
Dport = 0,
Name = "string",
ObjectSystemNpuNpqueuesIpserviceId = "string",
Protocol = 0,
Queue = 0,
Scopetype = "string",
Sport = 0,
Weight = 0,
});
example, err := fortimanager.NewObjectSystemNpuNpqueuesIpservice(ctx, "objectSystemNpuNpqueuesIpserviceResource", &fortimanager.ObjectSystemNpuNpqueuesIpserviceArgs{
Adom: pulumi.String("string"),
Dport: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectSystemNpuNpqueuesIpserviceId: pulumi.String("string"),
Protocol: pulumi.Float64(0),
Queue: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Sport: pulumi.Float64(0),
Weight: pulumi.Float64(0),
})
var objectSystemNpuNpqueuesIpserviceResource = new ObjectSystemNpuNpqueuesIpservice("objectSystemNpuNpqueuesIpserviceResource", ObjectSystemNpuNpqueuesIpserviceArgs.builder()
.adom("string")
.dport(0)
.name("string")
.objectSystemNpuNpqueuesIpserviceId("string")
.protocol(0)
.queue(0)
.scopetype("string")
.sport(0)
.weight(0)
.build());
object_system_npu_npqueues_ipservice_resource = fortimanager.ObjectSystemNpuNpqueuesIpservice("objectSystemNpuNpqueuesIpserviceResource",
adom="string",
dport=0,
name="string",
object_system_npu_npqueues_ipservice_id="string",
protocol=0,
queue=0,
scopetype="string",
sport=0,
weight=0)
const objectSystemNpuNpqueuesIpserviceResource = new fortimanager.ObjectSystemNpuNpqueuesIpservice("objectSystemNpuNpqueuesIpserviceResource", {
adom: "string",
dport: 0,
name: "string",
objectSystemNpuNpqueuesIpserviceId: "string",
protocol: 0,
queue: 0,
scopetype: "string",
sport: 0,
weight: 0,
});
type: fortimanager:ObjectSystemNpuNpqueuesIpservice
properties:
adom: string
dport: 0
name: string
objectSystemNpuNpqueuesIpserviceId: string
protocol: 0
queue: 0
scopetype: string
sport: 0
weight: 0
ObjectSystemNpuNpqueuesIpservice 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 ObjectSystemNpuNpqueuesIpservice 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. - Dport double
- Destination Port.
- Name string
- IP Service Name.
- Object
System stringNpu Npqueues Ipservice 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
. - Sport double
- Source Port.
- 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. - Dport float64
- Destination Port.
- Name string
- IP Service Name.
- Object
System stringNpu Npqueues Ipservice 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
. - Sport float64
- Source Port.
- 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. - dport Double
- Destination Port.
- name String
- IP Service Name.
- object
System StringNpu Npqueues Ipservice 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
. - sport Double
- Source Port.
- 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. - dport number
- Destination Port.
- name string
- IP Service Name.
- object
System stringNpu Npqueues Ipservice 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
. - sport number
- Source Port.
- 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. - dport float
- Destination Port.
- name str
- IP Service Name.
- object_
system_ strnpu_ npqueues_ ipservice_ 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
. - sport float
- Source Port.
- 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. - dport Number
- Destination Port.
- name String
- IP Service Name.
- object
System StringNpu Npqueues Ipservice 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
. - sport Number
- Source Port.
- weight Number
- Class Weight.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemNpuNpqueuesIpservice 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 ObjectSystemNpuNpqueuesIpservice Resource
Get an existing ObjectSystemNpuNpqueuesIpservice 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?: ObjectSystemNpuNpqueuesIpserviceState, opts?: CustomResourceOptions): ObjectSystemNpuNpqueuesIpservice
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
dport: Optional[float] = None,
name: Optional[str] = None,
object_system_npu_npqueues_ipservice_id: Optional[str] = None,
protocol: Optional[float] = None,
queue: Optional[float] = None,
scopetype: Optional[str] = None,
sport: Optional[float] = None,
weight: Optional[float] = None) -> ObjectSystemNpuNpqueuesIpservice
func GetObjectSystemNpuNpqueuesIpservice(ctx *Context, name string, id IDInput, state *ObjectSystemNpuNpqueuesIpserviceState, opts ...ResourceOption) (*ObjectSystemNpuNpqueuesIpservice, error)
public static ObjectSystemNpuNpqueuesIpservice Get(string name, Input<string> id, ObjectSystemNpuNpqueuesIpserviceState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuNpqueuesIpservice get(String name, Output<String> id, ObjectSystemNpuNpqueuesIpserviceState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuNpqueuesIpservice 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. - Dport double
- Destination Port.
- Name string
- IP Service Name.
- Object
System stringNpu Npqueues Ipservice 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
. - Sport double
- Source Port.
- 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. - Dport float64
- Destination Port.
- Name string
- IP Service Name.
- Object
System stringNpu Npqueues Ipservice 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
. - Sport float64
- Source Port.
- 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. - dport Double
- Destination Port.
- name String
- IP Service Name.
- object
System StringNpu Npqueues Ipservice 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
. - sport Double
- Source Port.
- 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. - dport number
- Destination Port.
- name string
- IP Service Name.
- object
System stringNpu Npqueues Ipservice 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
. - sport number
- Source Port.
- 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. - dport float
- Destination Port.
- name str
- IP Service Name.
- object_
system_ strnpu_ npqueues_ ipservice_ 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
. - sport float
- Source Port.
- 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. - dport Number
- Destination Port.
- name String
- IP Service Name.
- object
System StringNpu Npqueues Ipservice 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
. - sport Number
- Source Port.
- weight Number
- Class Weight.
Import
ObjectSystem NpuNpQueuesIpService can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuNpqueuesIpservice:ObjectSystemNpuNpqueuesIpservice 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.