fortimanager.ObjectSystemNpuDswdtsprofile
Explore with Pulumi AI
Configure NPU DSW DTS profile.
This resource is a sub resource for variable
dsw_dts_profile
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.ObjectSystemNpuDswdtsprofile("trname", {
action: "drop",
minLimit: 40,
profileId: 2,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuDswdtsprofile("trname",
action="drop",
min_limit=40,
profile_id=2)
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.NewObjectSystemNpuDswdtsprofile(ctx, "trname", &fortimanager.ObjectSystemNpuDswdtsprofileArgs{
Action: pulumi.String("drop"),
MinLimit: pulumi.Float64(40),
ProfileId: pulumi.Float64(2),
})
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.ObjectSystemNpuDswdtsprofile("trname", new()
{
Action = "drop",
MinLimit = 40,
ProfileId = 2,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuDswdtsprofile;
import com.pulumi.fortimanager.ObjectSystemNpuDswdtsprofileArgs;
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 ObjectSystemNpuDswdtsprofile("trname", ObjectSystemNpuDswdtsprofileArgs.builder()
.action("drop")
.minLimit(40)
.profileId(2)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuDswdtsprofile
properties:
action: drop
minLimit: 40
profileId: 2
Create ObjectSystemNpuDswdtsprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuDswdtsprofile(name: string, args?: ObjectSystemNpuDswdtsprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuDswdtsprofile(resource_name: str,
args: Optional[ObjectSystemNpuDswdtsprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuDswdtsprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
min_limit: Optional[float] = None,
object_system_npu_dswdtsprofile_id: Optional[str] = None,
profile_id: Optional[float] = None,
scopetype: Optional[str] = None,
step: Optional[float] = None)
func NewObjectSystemNpuDswdtsprofile(ctx *Context, name string, args *ObjectSystemNpuDswdtsprofileArgs, opts ...ResourceOption) (*ObjectSystemNpuDswdtsprofile, error)
public ObjectSystemNpuDswdtsprofile(string name, ObjectSystemNpuDswdtsprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuDswdtsprofile(String name, ObjectSystemNpuDswdtsprofileArgs args)
public ObjectSystemNpuDswdtsprofile(String name, ObjectSystemNpuDswdtsprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuDswdtsprofile
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 ObjectSystemNpuDswdtsprofileArgs
- 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 ObjectSystemNpuDswdtsprofileArgs
- 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 ObjectSystemNpuDswdtsprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuDswdtsprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuDswdtsprofileArgs
- 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 objectSystemNpuDswdtsprofileResource = new Fortimanager.ObjectSystemNpuDswdtsprofile("objectSystemNpuDswdtsprofileResource", new()
{
Action = "string",
Adom = "string",
MinLimit = 0,
ObjectSystemNpuDswdtsprofileId = "string",
ProfileId = 0,
Scopetype = "string",
Step = 0,
});
example, err := fortimanager.NewObjectSystemNpuDswdtsprofile(ctx, "objectSystemNpuDswdtsprofileResource", &fortimanager.ObjectSystemNpuDswdtsprofileArgs{
Action: pulumi.String("string"),
Adom: pulumi.String("string"),
MinLimit: pulumi.Float64(0),
ObjectSystemNpuDswdtsprofileId: pulumi.String("string"),
ProfileId: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Step: pulumi.Float64(0),
})
var objectSystemNpuDswdtsprofileResource = new ObjectSystemNpuDswdtsprofile("objectSystemNpuDswdtsprofileResource", ObjectSystemNpuDswdtsprofileArgs.builder()
.action("string")
.adom("string")
.minLimit(0)
.objectSystemNpuDswdtsprofileId("string")
.profileId(0)
.scopetype("string")
.step(0)
.build());
object_system_npu_dswdtsprofile_resource = fortimanager.ObjectSystemNpuDswdtsprofile("objectSystemNpuDswdtsprofileResource",
action="string",
adom="string",
min_limit=0,
object_system_npu_dswdtsprofile_id="string",
profile_id=0,
scopetype="string",
step=0)
const objectSystemNpuDswdtsprofileResource = new fortimanager.ObjectSystemNpuDswdtsprofile("objectSystemNpuDswdtsprofileResource", {
action: "string",
adom: "string",
minLimit: 0,
objectSystemNpuDswdtsprofileId: "string",
profileId: 0,
scopetype: "string",
step: 0,
});
type: fortimanager:ObjectSystemNpuDswdtsprofile
properties:
action: string
adom: string
minLimit: 0
objectSystemNpuDswdtsprofileId: string
profileId: 0
scopetype: string
step: 0
ObjectSystemNpuDswdtsprofile 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 ObjectSystemNpuDswdtsprofile resource accepts the following input properties:
- Action string
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Min
Limit double - Set NPU DSW DTS profile min-limt.
- Object
System stringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- Profile
Id double - Set NPU DSW DTS profile profile id.
- 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
. - Step double
- Set NPU DSW DTS profile step.
- Action string
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Min
Limit float64 - Set NPU DSW DTS profile min-limt.
- Object
System stringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- Profile
Id float64 - Set NPU DSW DTS profile profile id.
- 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
. - Step float64
- Set NPU DSW DTS profile step.
- action String
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min
Limit Double - Set NPU DSW DTS profile min-limt.
- object
System StringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- profile
Id Double - Set NPU DSW DTS profile profile id.
- 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
. - step Double
- Set NPU DSW DTS profile step.
- action string
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min
Limit number - Set NPU DSW DTS profile min-limt.
- object
System stringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- profile
Id number - Set NPU DSW DTS profile profile id.
- 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
. - step number
- Set NPU DSW DTS profile step.
- action str
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min_
limit float - Set NPU DSW DTS profile min-limt.
- object_
system_ strnpu_ dswdtsprofile_ id - an identifier for the resource with format {{profile_id}}.
- profile_
id float - Set NPU DSW DTS profile profile id.
- 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
. - step float
- Set NPU DSW DTS profile step.
- action String
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min
Limit Number - Set NPU DSW DTS profile min-limt.
- object
System StringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- profile
Id Number - Set NPU DSW DTS profile profile id.
- 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
. - step Number
- Set NPU DSW DTS profile step.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemNpuDswdtsprofile 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 ObjectSystemNpuDswdtsprofile Resource
Get an existing ObjectSystemNpuDswdtsprofile 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?: ObjectSystemNpuDswdtsprofileState, opts?: CustomResourceOptions): ObjectSystemNpuDswdtsprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
min_limit: Optional[float] = None,
object_system_npu_dswdtsprofile_id: Optional[str] = None,
profile_id: Optional[float] = None,
scopetype: Optional[str] = None,
step: Optional[float] = None) -> ObjectSystemNpuDswdtsprofile
func GetObjectSystemNpuDswdtsprofile(ctx *Context, name string, id IDInput, state *ObjectSystemNpuDswdtsprofileState, opts ...ResourceOption) (*ObjectSystemNpuDswdtsprofile, error)
public static ObjectSystemNpuDswdtsprofile Get(string name, Input<string> id, ObjectSystemNpuDswdtsprofileState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuDswdtsprofile get(String name, Output<String> id, ObjectSystemNpuDswdtsprofileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuDswdtsprofile 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.
- Action string
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Min
Limit double - Set NPU DSW DTS profile min-limt.
- Object
System stringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- Profile
Id double - Set NPU DSW DTS profile profile id.
- 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
. - Step double
- Set NPU DSW DTS profile step.
- Action string
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Min
Limit float64 - Set NPU DSW DTS profile min-limt.
- Object
System stringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- Profile
Id float64 - Set NPU DSW DTS profile profile id.
- 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
. - Step float64
- Set NPU DSW DTS profile step.
- action String
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min
Limit Double - Set NPU DSW DTS profile min-limt.
- object
System StringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- profile
Id Double - Set NPU DSW DTS profile profile id.
- 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
. - step Double
- Set NPU DSW DTS profile step.
- action string
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min
Limit number - Set NPU DSW DTS profile min-limt.
- object
System stringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- profile
Id number - Set NPU DSW DTS profile profile id.
- 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
. - step number
- Set NPU DSW DTS profile step.
- action str
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min_
limit float - Set NPU DSW DTS profile min-limt.
- object_
system_ strnpu_ dswdtsprofile_ id - an identifier for the resource with format {{profile_id}}.
- profile_
id float - Set NPU DSW DTS profile profile id.
- 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
. - step float
- Set NPU DSW DTS profile step.
- action String
- Set NPU DSW DTS profile action. Valid values:
wait
,drop
,drop_tmr_0
,drop_tmr_1
,enque
,enque_0
,enque_1
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - min
Limit Number - Set NPU DSW DTS profile min-limt.
- object
System StringNpu Dswdtsprofile Id - an identifier for the resource with format {{profile_id}}.
- profile
Id Number - Set NPU DSW DTS profile profile id.
- 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
. - step Number
- Set NPU DSW DTS profile step.
Import
ObjectSystem NpuDswDtsProfile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuDswdtsprofile:ObjectSystemNpuDswdtsprofile labelname {{profile_id}}
$ 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.