fortimanager.ObjectSystemNpuSwehhash
Explore with Pulumi AI
Configure switch enhanced hashing.
This resource is a sub resource for variable
sw_eh_hash
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.ObjectSystemNpuSwehhash("trname", {
computation: "crc16",
sourceIpUpper16: "include",
sourcePort: "exclude",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemNpuSwehhash("trname",
computation="crc16",
source_ip_upper16="include",
source_port="exclude")
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.NewObjectSystemNpuSwehhash(ctx, "trname", &fortimanager.ObjectSystemNpuSwehhashArgs{
Computation: pulumi.String("crc16"),
SourceIpUpper16: pulumi.String("include"),
SourcePort: pulumi.String("exclude"),
})
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.ObjectSystemNpuSwehhash("trname", new()
{
Computation = "crc16",
SourceIpUpper16 = "include",
SourcePort = "exclude",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemNpuSwehhash;
import com.pulumi.fortimanager.ObjectSystemNpuSwehhashArgs;
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 ObjectSystemNpuSwehhash("trname", ObjectSystemNpuSwehhashArgs.builder()
.computation("crc16")
.sourceIpUpper16("include")
.sourcePort("exclude")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemNpuSwehhash
properties:
computation: crc16
sourceIpUpper16: include
sourcePort: exclude
Create ObjectSystemNpuSwehhash Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemNpuSwehhash(name: string, args?: ObjectSystemNpuSwehhashArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemNpuSwehhash(resource_name: str,
args: Optional[ObjectSystemNpuSwehhashArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemNpuSwehhash(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
computation: Optional[str] = None,
destination_ip_lower16: Optional[str] = None,
destination_ip_upper16: Optional[str] = None,
destination_port: Optional[str] = None,
ip_protocol: Optional[str] = None,
netmask_length: Optional[float] = None,
object_system_npu_swehhash_id: Optional[str] = None,
scopetype: Optional[str] = None,
source_ip_lower16: Optional[str] = None,
source_ip_upper16: Optional[str] = None,
source_port: Optional[str] = None)
func NewObjectSystemNpuSwehhash(ctx *Context, name string, args *ObjectSystemNpuSwehhashArgs, opts ...ResourceOption) (*ObjectSystemNpuSwehhash, error)
public ObjectSystemNpuSwehhash(string name, ObjectSystemNpuSwehhashArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemNpuSwehhash(String name, ObjectSystemNpuSwehhashArgs args)
public ObjectSystemNpuSwehhash(String name, ObjectSystemNpuSwehhashArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemNpuSwehhash
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 ObjectSystemNpuSwehhashArgs
- 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 ObjectSystemNpuSwehhashArgs
- 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 ObjectSystemNpuSwehhashArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemNpuSwehhashArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemNpuSwehhashArgs
- 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 objectSystemNpuSwehhashResource = new Fortimanager.ObjectSystemNpuSwehhash("objectSystemNpuSwehhashResource", new()
{
Adom = "string",
Computation = "string",
DestinationIpLower16 = "string",
DestinationIpUpper16 = "string",
DestinationPort = "string",
IpProtocol = "string",
NetmaskLength = 0,
ObjectSystemNpuSwehhashId = "string",
Scopetype = "string",
SourceIpLower16 = "string",
SourceIpUpper16 = "string",
SourcePort = "string",
});
example, err := fortimanager.NewObjectSystemNpuSwehhash(ctx, "objectSystemNpuSwehhashResource", &fortimanager.ObjectSystemNpuSwehhashArgs{
Adom: pulumi.String("string"),
Computation: pulumi.String("string"),
DestinationIpLower16: pulumi.String("string"),
DestinationIpUpper16: pulumi.String("string"),
DestinationPort: pulumi.String("string"),
IpProtocol: pulumi.String("string"),
NetmaskLength: pulumi.Float64(0),
ObjectSystemNpuSwehhashId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SourceIpLower16: pulumi.String("string"),
SourceIpUpper16: pulumi.String("string"),
SourcePort: pulumi.String("string"),
})
var objectSystemNpuSwehhashResource = new ObjectSystemNpuSwehhash("objectSystemNpuSwehhashResource", ObjectSystemNpuSwehhashArgs.builder()
.adom("string")
.computation("string")
.destinationIpLower16("string")
.destinationIpUpper16("string")
.destinationPort("string")
.ipProtocol("string")
.netmaskLength(0)
.objectSystemNpuSwehhashId("string")
.scopetype("string")
.sourceIpLower16("string")
.sourceIpUpper16("string")
.sourcePort("string")
.build());
object_system_npu_swehhash_resource = fortimanager.ObjectSystemNpuSwehhash("objectSystemNpuSwehhashResource",
adom="string",
computation="string",
destination_ip_lower16="string",
destination_ip_upper16="string",
destination_port="string",
ip_protocol="string",
netmask_length=0,
object_system_npu_swehhash_id="string",
scopetype="string",
source_ip_lower16="string",
source_ip_upper16="string",
source_port="string")
const objectSystemNpuSwehhashResource = new fortimanager.ObjectSystemNpuSwehhash("objectSystemNpuSwehhashResource", {
adom: "string",
computation: "string",
destinationIpLower16: "string",
destinationIpUpper16: "string",
destinationPort: "string",
ipProtocol: "string",
netmaskLength: 0,
objectSystemNpuSwehhashId: "string",
scopetype: "string",
sourceIpLower16: "string",
sourceIpUpper16: "string",
sourcePort: "string",
});
type: fortimanager:ObjectSystemNpuSwehhash
properties:
adom: string
computation: string
destinationIpLower16: string
destinationIpUpper16: string
destinationPort: string
ipProtocol: string
netmaskLength: 0
objectSystemNpuSwehhashId: string
scopetype: string
sourceIpLower16: string
sourceIpUpper16: string
sourcePort: string
ObjectSystemNpuSwehhash 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 ObjectSystemNpuSwehhash 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. - Computation string
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - Destination
Ip stringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - Destination
Ip stringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - Destination
Port string - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - Ip
Protocol string - Include/exclude IP protocol. Valid values:
include
,exclude
. - Netmask
Length double - Network mask length.
- Object
System stringNpu Swehhash 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
. - Source
Ip stringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - Source
Ip stringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - Source
Port string - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Computation string
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - Destination
Ip stringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - Destination
Ip stringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - Destination
Port string - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - Ip
Protocol string - Include/exclude IP protocol. Valid values:
include
,exclude
. - Netmask
Length float64 - Network mask length.
- Object
System stringNpu Swehhash 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
. - Source
Ip stringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - Source
Ip stringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - Source
Port string - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation String
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination
Ip StringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination
Ip StringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination
Port String - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip
Protocol String - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask
Length Double - Network mask length.
- object
System StringNpu Swehhash 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
. - source
Ip StringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source
Ip StringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source
Port String - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation string
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination
Ip stringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination
Ip stringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination
Port string - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip
Protocol string - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask
Length number - Network mask length.
- object
System stringNpu Swehhash 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
. - source
Ip stringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source
Ip stringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source
Port string - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation str
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination_
ip_ strlower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination_
ip_ strupper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination_
port str - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip_
protocol str - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask_
length float - Network mask length.
- object_
system_ strnpu_ swehhash_ 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
. - source_
ip_ strlower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source_
ip_ strupper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source_
port str - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation String
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination
Ip StringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination
Ip StringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination
Port String - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip
Protocol String - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask
Length Number - Network mask length.
- object
System StringNpu Swehhash 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
. - source
Ip StringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source
Ip StringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source
Port String - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemNpuSwehhash 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 ObjectSystemNpuSwehhash Resource
Get an existing ObjectSystemNpuSwehhash 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?: ObjectSystemNpuSwehhashState, opts?: CustomResourceOptions): ObjectSystemNpuSwehhash
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
computation: Optional[str] = None,
destination_ip_lower16: Optional[str] = None,
destination_ip_upper16: Optional[str] = None,
destination_port: Optional[str] = None,
ip_protocol: Optional[str] = None,
netmask_length: Optional[float] = None,
object_system_npu_swehhash_id: Optional[str] = None,
scopetype: Optional[str] = None,
source_ip_lower16: Optional[str] = None,
source_ip_upper16: Optional[str] = None,
source_port: Optional[str] = None) -> ObjectSystemNpuSwehhash
func GetObjectSystemNpuSwehhash(ctx *Context, name string, id IDInput, state *ObjectSystemNpuSwehhashState, opts ...ResourceOption) (*ObjectSystemNpuSwehhash, error)
public static ObjectSystemNpuSwehhash Get(string name, Input<string> id, ObjectSystemNpuSwehhashState? state, CustomResourceOptions? opts = null)
public static ObjectSystemNpuSwehhash get(String name, Output<String> id, ObjectSystemNpuSwehhashState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemNpuSwehhash 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. - Computation string
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - Destination
Ip stringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - Destination
Ip stringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - Destination
Port string - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - Ip
Protocol string - Include/exclude IP protocol. Valid values:
include
,exclude
. - Netmask
Length double - Network mask length.
- Object
System stringNpu Swehhash 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
. - Source
Ip stringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - Source
Ip stringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - Source
Port string - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Computation string
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - Destination
Ip stringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - Destination
Ip stringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - Destination
Port string - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - Ip
Protocol string - Include/exclude IP protocol. Valid values:
include
,exclude
. - Netmask
Length float64 - Network mask length.
- Object
System stringNpu Swehhash 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
. - Source
Ip stringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - Source
Ip stringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - Source
Port string - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation String
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination
Ip StringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination
Ip StringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination
Port String - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip
Protocol String - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask
Length Double - Network mask length.
- object
System StringNpu Swehhash 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
. - source
Ip StringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source
Ip StringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source
Port String - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation string
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination
Ip stringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination
Ip stringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination
Port string - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip
Protocol string - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask
Length number - Network mask length.
- object
System stringNpu Swehhash 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
. - source
Ip stringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source
Ip stringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source
Port string - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation str
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination_
ip_ strlower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination_
ip_ strupper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination_
port str - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip_
protocol str - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask_
length float - Network mask length.
- object_
system_ strnpu_ swehhash_ 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
. - source_
ip_ strlower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source_
ip_ strupper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source_
port str - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - computation String
- Set hashing computation. Valid values:
xor16
,xor8
,xor4
,crc16
. - destination
Ip StringLower16 - Include/exclude destination IP address lower 16 bits. Valid values:
include
,exclude
. - destination
Ip StringUpper16 - Include/exclude destination IP address upper 16 bits. Valid values:
include
,exclude
. - destination
Port String - Include/exclude destination port if TCP/UDP. Valid values:
include
,exclude
. - ip
Protocol String - Include/exclude IP protocol. Valid values:
include
,exclude
. - netmask
Length Number - Network mask length.
- object
System StringNpu Swehhash 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
. - source
Ip StringLower16 - Include/exclude source IP address lower 16 bits. Valid values:
include
,exclude
. - source
Ip StringUpper16 - Include/exclude source IP address upper 16 bits. Valid values:
include
,exclude
. - source
Port String - Include/exclude source port if TCP/UDP. Valid values:
include
,exclude
.
Import
ObjectSystem NpuSwEhHash can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemNpuSwehhash:ObjectSystemNpuSwehhash labelname ObjectSystemNpuSwEhHash
$ 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.