fortimanager.ObjectSystemNpuDosoptions
Explore with Pulumi AI
NPU DoS configurations.
This resource is a sub resource for variable
dos_options
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.ObjectSystemNpuDosoptions("trname", {
npuDosMeterMode: "global",
npuDosSynproxyMode: "synack2ack",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuDosoptions("trname",
npu_dos_meter_mode="global",
npu_dos_synproxy_mode="synack2ack")
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.NewObjectSystemNpuDosoptions(ctx, "trname", &fortimanager.ObjectSystemNpuDosoptionsArgs{
NpuDosMeterMode: pulumi.String("global"),
NpuDosSynproxyMode: pulumi.String("synack2ack"),
})
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.ObjectSystemNpuDosoptions("trname", new()
{
NpuDosMeterMode = "global",
NpuDosSynproxyMode = "synack2ack",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuDosoptions;
import com.pulumi.fortimanager.ObjectSystemNpuDosoptionsArgs;
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 ObjectSystemNpuDosoptions("trname", ObjectSystemNpuDosoptionsArgs.builder()
.npuDosMeterMode("global")
.npuDosSynproxyMode("synack2ack")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuDosoptions
properties:
npuDosMeterMode: global
npuDosSynproxyMode: synack2ack
Create ObjectSystemNpuDosoptions Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuDosoptions(name: string, args?: ObjectSystemNpuDosoptionsArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuDosoptions(resource_name: str,
args: Optional[ObjectSystemNpuDosoptionsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuDosoptions(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
npu_dos_meter_mode: Optional[str] = None,
npu_dos_synproxy_mode: Optional[str] = None,
npu_dos_tpe_mode: Optional[str] = None,
object_system_npu_dosoptions_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectSystemNpuDosoptions(ctx *Context, name string, args *ObjectSystemNpuDosoptionsArgs, opts ...ResourceOption) (*ObjectSystemNpuDosoptions, error)
public ObjectSystemNpuDosoptions(string name, ObjectSystemNpuDosoptionsArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuDosoptions(String name, ObjectSystemNpuDosoptionsArgs args)
public ObjectSystemNpuDosoptions(String name, ObjectSystemNpuDosoptionsArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuDosoptions
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 ObjectSystemNpuDosoptionsArgs
- 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 ObjectSystemNpuDosoptionsArgs
- 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 ObjectSystemNpuDosoptionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuDosoptionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuDosoptionsArgs
- 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 objectSystemNpuDosoptionsResource = new Fortimanager.ObjectSystemNpuDosoptions("objectSystemNpuDosoptionsResource", new()
{
Adom = "string",
NpuDosMeterMode = "string",
NpuDosSynproxyMode = "string",
NpuDosTpeMode = "string",
ObjectSystemNpuDosoptionsId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectSystemNpuDosoptions(ctx, "objectSystemNpuDosoptionsResource", &fortimanager.ObjectSystemNpuDosoptionsArgs{
Adom: pulumi.String("string"),
NpuDosMeterMode: pulumi.String("string"),
NpuDosSynproxyMode: pulumi.String("string"),
NpuDosTpeMode: pulumi.String("string"),
ObjectSystemNpuDosoptionsId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectSystemNpuDosoptionsResource = new ObjectSystemNpuDosoptions("objectSystemNpuDosoptionsResource", ObjectSystemNpuDosoptionsArgs.builder()
.adom("string")
.npuDosMeterMode("string")
.npuDosSynproxyMode("string")
.npuDosTpeMode("string")
.objectSystemNpuDosoptionsId("string")
.scopetype("string")
.build());
object_system_npu_dosoptions_resource = fortimanager.ObjectSystemNpuDosoptions("objectSystemNpuDosoptionsResource",
adom="string",
npu_dos_meter_mode="string",
npu_dos_synproxy_mode="string",
npu_dos_tpe_mode="string",
object_system_npu_dosoptions_id="string",
scopetype="string")
const objectSystemNpuDosoptionsResource = new fortimanager.ObjectSystemNpuDosoptions("objectSystemNpuDosoptionsResource", {
adom: "string",
npuDosMeterMode: "string",
npuDosSynproxyMode: "string",
npuDosTpeMode: "string",
objectSystemNpuDosoptionsId: "string",
scopetype: "string",
});
type: fortimanager:ObjectSystemNpuDosoptions
properties:
adom: string
npuDosMeterMode: string
npuDosSynproxyMode: string
npuDosTpeMode: string
objectSystemNpuDosoptionsId: string
scopetype: string
ObjectSystemNpuDosoptions 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 ObjectSystemNpuDosoptions 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. - Npu
Dos stringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - Npu
Dos stringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - Npu
Dos stringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - Object
System stringNpu Dosoptions 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. - Npu
Dos stringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - Npu
Dos stringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - Npu
Dos stringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - Object
System stringNpu Dosoptions 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. - npu
Dos StringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu
Dos StringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu
Dos StringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object
System StringNpu Dosoptions 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. - npu
Dos stringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu
Dos stringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu
Dos stringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object
System stringNpu Dosoptions 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. - npu_
dos_ strmeter_ mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu_
dos_ strsynproxy_ mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu_
dos_ strtpe_ mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object_
system_ strnpu_ dosoptions_ 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. - npu
Dos StringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu
Dos StringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu
Dos StringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object
System StringNpu Dosoptions 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 ObjectSystemNpuDosoptions 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 ObjectSystemNpuDosoptions Resource
Get an existing ObjectSystemNpuDosoptions 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?: ObjectSystemNpuDosoptionsState, opts?: CustomResourceOptions): ObjectSystemNpuDosoptions
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
npu_dos_meter_mode: Optional[str] = None,
npu_dos_synproxy_mode: Optional[str] = None,
npu_dos_tpe_mode: Optional[str] = None,
object_system_npu_dosoptions_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectSystemNpuDosoptions
func GetObjectSystemNpuDosoptions(ctx *Context, name string, id IDInput, state *ObjectSystemNpuDosoptionsState, opts ...ResourceOption) (*ObjectSystemNpuDosoptions, error)
public static ObjectSystemNpuDosoptions Get(string name, Input<string> id, ObjectSystemNpuDosoptionsState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuDosoptions get(String name, Output<String> id, ObjectSystemNpuDosoptionsState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuDosoptions 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. - Npu
Dos stringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - Npu
Dos stringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - Npu
Dos stringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - Object
System stringNpu Dosoptions 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. - Npu
Dos stringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - Npu
Dos stringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - Npu
Dos stringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - Object
System stringNpu Dosoptions 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. - npu
Dos StringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu
Dos StringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu
Dos StringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object
System StringNpu Dosoptions 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. - npu
Dos stringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu
Dos stringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu
Dos stringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object
System stringNpu Dosoptions 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. - npu_
dos_ strmeter_ mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu_
dos_ strsynproxy_ mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu_
dos_ strtpe_ mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object_
system_ strnpu_ dosoptions_ 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. - npu
Dos StringMeter Mode - Set DoS meter npu offloading mode. Valid values:
local
,global
. - npu
Dos StringSynproxy Mode - Set NPU DoS SYNPROXY mode. Valid values:
synack2ack
,pass-synack
. - npu
Dos StringTpe Mode - Enable/Disable inserting DoS meter id to session table. Valid values:
disable
,enable
. - object
System StringNpu Dosoptions 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 NpuDosOptions can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuDosoptions:ObjectSystemNpuDosoptions labelname ObjectSystemNpuDosOptions
$ 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.