fortimanager.ObjectSystemNpuSsehascan
Explore with Pulumi AI
Configure driver HA scan for SSE.
This resource is a sub resource for variable
sse_ha_scan
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.ObjectSystemNpuSsehascan("trname", {
gap: 7000,
maxSessionCnt: 100,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuSsehascan("trname",
gap=7000,
max_session_cnt=100)
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.NewObjectSystemNpuSsehascan(ctx, "trname", &fortimanager.ObjectSystemNpuSsehascanArgs{
Gap: pulumi.Float64(7000),
MaxSessionCnt: pulumi.Float64(100),
})
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.ObjectSystemNpuSsehascan("trname", new()
{
Gap = 7000,
MaxSessionCnt = 100,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuSsehascan;
import com.pulumi.fortimanager.ObjectSystemNpuSsehascanArgs;
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 ObjectSystemNpuSsehascan("trname", ObjectSystemNpuSsehascanArgs.builder()
.gap(7000)
.maxSessionCnt(100)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuSsehascan
properties:
gap: 7000
maxSessionCnt: 100
Create ObjectSystemNpuSsehascan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuSsehascan(name: string, args?: ObjectSystemNpuSsehascanArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuSsehascan(resource_name: str,
args: Optional[ObjectSystemNpuSsehascanArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuSsehascan(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
gap: Optional[float] = None,
max_session_cnt: Optional[float] = None,
min_duration: Optional[float] = None,
object_system_npu_ssehascan_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectSystemNpuSsehascan(ctx *Context, name string, args *ObjectSystemNpuSsehascanArgs, opts ...ResourceOption) (*ObjectSystemNpuSsehascan, error)
public ObjectSystemNpuSsehascan(string name, ObjectSystemNpuSsehascanArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuSsehascan(String name, ObjectSystemNpuSsehascanArgs args)
public ObjectSystemNpuSsehascan(String name, ObjectSystemNpuSsehascanArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuSsehascan
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 ObjectSystemNpuSsehascanArgs
- 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 ObjectSystemNpuSsehascanArgs
- 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 ObjectSystemNpuSsehascanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuSsehascanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuSsehascanArgs
- 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 objectSystemNpuSsehascanResource = new Fortimanager.ObjectSystemNpuSsehascan("objectSystemNpuSsehascanResource", new()
{
Adom = "string",
Gap = 0,
MaxSessionCnt = 0,
MinDuration = 0,
ObjectSystemNpuSsehascanId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectSystemNpuSsehascan(ctx, "objectSystemNpuSsehascanResource", &fortimanager.ObjectSystemNpuSsehascanArgs{
Adom: pulumi.String("string"),
Gap: pulumi.Float64(0),
MaxSessionCnt: pulumi.Float64(0),
MinDuration: pulumi.Float64(0),
ObjectSystemNpuSsehascanId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectSystemNpuSsehascanResource = new ObjectSystemNpuSsehascan("objectSystemNpuSsehascanResource", ObjectSystemNpuSsehascanArgs.builder()
.adom("string")
.gap(0)
.maxSessionCnt(0)
.minDuration(0)
.objectSystemNpuSsehascanId("string")
.scopetype("string")
.build());
object_system_npu_ssehascan_resource = fortimanager.ObjectSystemNpuSsehascan("objectSystemNpuSsehascanResource",
adom="string",
gap=0,
max_session_cnt=0,
min_duration=0,
object_system_npu_ssehascan_id="string",
scopetype="string")
const objectSystemNpuSsehascanResource = new fortimanager.ObjectSystemNpuSsehascan("objectSystemNpuSsehascanResource", {
adom: "string",
gap: 0,
maxSessionCnt: 0,
minDuration: 0,
objectSystemNpuSsehascanId: "string",
scopetype: "string",
});
type: fortimanager:ObjectSystemNpuSsehascan
properties:
adom: string
gap: 0
maxSessionCnt: 0
minDuration: 0
objectSystemNpuSsehascanId: string
scopetype: string
ObjectSystemNpuSsehascan 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 ObjectSystemNpuSsehascan 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. - Gap double
- Scanning message gap(0~32767, default 6000)
- Max
Session doubleCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- Min
Duration double - Scanning filter for minimum duration of the session. (0~3600, default 0)
- Object
System stringNpu Ssehascan 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. - Gap float64
- Scanning message gap(0~32767, default 6000)
- Max
Session float64Cnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- Min
Duration float64 - Scanning filter for minimum duration of the session. (0~3600, default 0)
- Object
System stringNpu Ssehascan 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. - gap Double
- Scanning message gap(0~32767, default 6000)
- max
Session DoubleCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min
Duration Double - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object
System StringNpu Ssehascan 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. - gap number
- Scanning message gap(0~32767, default 6000)
- max
Session numberCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min
Duration number - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object
System stringNpu Ssehascan 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. - gap float
- Scanning message gap(0~32767, default 6000)
- max_
session_ floatcnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min_
duration float - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object_
system_ strnpu_ ssehascan_ 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. - gap Number
- Scanning message gap(0~32767, default 6000)
- max
Session NumberCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min
Duration Number - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object
System StringNpu Ssehascan 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 ObjectSystemNpuSsehascan 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 ObjectSystemNpuSsehascan Resource
Get an existing ObjectSystemNpuSsehascan 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?: ObjectSystemNpuSsehascanState, opts?: CustomResourceOptions): ObjectSystemNpuSsehascan
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
gap: Optional[float] = None,
max_session_cnt: Optional[float] = None,
min_duration: Optional[float] = None,
object_system_npu_ssehascan_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectSystemNpuSsehascan
func GetObjectSystemNpuSsehascan(ctx *Context, name string, id IDInput, state *ObjectSystemNpuSsehascanState, opts ...ResourceOption) (*ObjectSystemNpuSsehascan, error)
public static ObjectSystemNpuSsehascan Get(string name, Input<string> id, ObjectSystemNpuSsehascanState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuSsehascan get(String name, Output<String> id, ObjectSystemNpuSsehascanState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuSsehascan 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. - Gap double
- Scanning message gap(0~32767, default 6000)
- Max
Session doubleCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- Min
Duration double - Scanning filter for minimum duration of the session. (0~3600, default 0)
- Object
System stringNpu Ssehascan 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. - Gap float64
- Scanning message gap(0~32767, default 6000)
- Max
Session float64Cnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- Min
Duration float64 - Scanning filter for minimum duration of the session. (0~3600, default 0)
- Object
System stringNpu Ssehascan 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. - gap Double
- Scanning message gap(0~32767, default 6000)
- max
Session DoubleCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min
Duration Double - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object
System StringNpu Ssehascan 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. - gap number
- Scanning message gap(0~32767, default 6000)
- max
Session numberCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min
Duration number - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object
System stringNpu Ssehascan 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. - gap float
- Scanning message gap(0~32767, default 6000)
- max_
session_ floatcnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min_
duration float - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object_
system_ strnpu_ ssehascan_ 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. - gap Number
- Scanning message gap(0~32767, default 6000)
- max
Session NumberCnt - If the session count(in millions) is larger than this, HA scan will be skipped. (0~0xffff, default 0xffff)
- min
Duration Number - Scanning filter for minimum duration of the session. (0~3600, default 0)
- object
System StringNpu Ssehascan 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 NpuSseHaScan can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuSsehascan:ObjectSystemNpuSsehascan labelname ObjectSystemNpuSseHaScan
$ 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.