fortimanager.ObjectFirewallInternetservicecustom
Explore with Pulumi AI
Configure custom Internet Services.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
disable_entry
:fortimanager_object_firewall_internetservicecustom_disableentry
entry
:fortimanager.ObjectFirewallInternetservicecustomEntry
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallInternetservicecustom("trname", {comment: "terraform-comment"});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallInternetservicecustom("trname", comment="terraform-comment")
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.NewObjectFirewallInternetservicecustom(ctx, "trname", &fortimanager.ObjectFirewallInternetservicecustomArgs{
Comment: pulumi.String("terraform-comment"),
})
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.ObjectFirewallInternetservicecustom("trname", new()
{
Comment = "terraform-comment",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallInternetservicecustom;
import com.pulumi.fortimanager.ObjectFirewallInternetservicecustomArgs;
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 ObjectFirewallInternetservicecustom("trname", ObjectFirewallInternetservicecustomArgs.builder()
.comment("terraform-comment")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallInternetservicecustom
properties:
comment: terraform-comment
Create ObjectFirewallInternetservicecustom Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallInternetservicecustom(name: string, args?: ObjectFirewallInternetservicecustomArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallInternetservicecustom(resource_name: str,
args: Optional[ObjectFirewallInternetservicecustomArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallInternetservicecustom(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
disable_entries: Optional[Sequence[ObjectFirewallInternetservicecustomDisableEntryArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
entries: Optional[Sequence[ObjectFirewallInternetservicecustomEntryArgs]] = None,
fosid: Optional[float] = None,
master_service_id: Optional[str] = None,
name: Optional[str] = None,
object_firewall_internetservicecustom_id: Optional[str] = None,
reputation: Optional[float] = None,
scopetype: Optional[str] = None)
func NewObjectFirewallInternetservicecustom(ctx *Context, name string, args *ObjectFirewallInternetservicecustomArgs, opts ...ResourceOption) (*ObjectFirewallInternetservicecustom, error)
public ObjectFirewallInternetservicecustom(string name, ObjectFirewallInternetservicecustomArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallInternetservicecustom(String name, ObjectFirewallInternetservicecustomArgs args)
public ObjectFirewallInternetservicecustom(String name, ObjectFirewallInternetservicecustomArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallInternetservicecustom
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 ObjectFirewallInternetservicecustomArgs
- 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 ObjectFirewallInternetservicecustomArgs
- 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 ObjectFirewallInternetservicecustomArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallInternetservicecustomArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallInternetservicecustomArgs
- 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 objectFirewallInternetservicecustomResource = new Fortimanager.ObjectFirewallInternetservicecustom("objectFirewallInternetservicecustomResource", new()
{
Adom = "string",
Comment = "string",
DisableEntries = new[]
{
new Fortimanager.Inputs.ObjectFirewallInternetservicecustomDisableEntryArgs
{
Id = 0,
IpRanges = new[]
{
new Fortimanager.Inputs.ObjectFirewallInternetservicecustomDisableEntryIpRangeArgs
{
EndIp = "string",
Id = 0,
StartIp = "string",
},
},
Ports = new[]
{
0,
},
Protocol = 0,
},
},
DynamicSortSubtable = "string",
Entries = new[]
{
new Fortimanager.Inputs.ObjectFirewallInternetservicecustomEntryArgs
{
AddrMode = "string",
Dst = "string",
Dst6s = new[]
{
"string",
},
Id = 0,
PortRanges = new[]
{
new Fortimanager.Inputs.ObjectFirewallInternetservicecustomEntryPortRangeArgs
{
EndPort = 0,
Id = 0,
StartPort = 0,
},
},
Protocol = 0,
},
},
Fosid = 0,
MasterServiceId = "string",
Name = "string",
ObjectFirewallInternetservicecustomId = "string",
Reputation = 0,
Scopetype = "string",
});
example, err := fortimanager.NewObjectFirewallInternetservicecustom(ctx, "objectFirewallInternetservicecustomResource", &fortimanager.ObjectFirewallInternetservicecustomArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
DisableEntries: .ObjectFirewallInternetservicecustomDisableEntryArray{
&.ObjectFirewallInternetservicecustomDisableEntryArgs{
Id: pulumi.Float64(0),
IpRanges: .ObjectFirewallInternetservicecustomDisableEntryIpRangeArray{
&.ObjectFirewallInternetservicecustomDisableEntryIpRangeArgs{
EndIp: pulumi.String("string"),
Id: pulumi.Float64(0),
StartIp: pulumi.String("string"),
},
},
Ports: pulumi.Float64Array{
pulumi.Float64(0),
},
Protocol: pulumi.Float64(0),
},
},
DynamicSortSubtable: pulumi.String("string"),
Entries: .ObjectFirewallInternetservicecustomEntryTypeArray{
&.ObjectFirewallInternetservicecustomEntryTypeArgs{
AddrMode: pulumi.String("string"),
Dst: pulumi.String("string"),
Dst6s: pulumi.StringArray{
pulumi.String("string"),
},
Id: pulumi.Float64(0),
PortRanges: .ObjectFirewallInternetservicecustomEntryPortRangeTypeArray{
&.ObjectFirewallInternetservicecustomEntryPortRangeTypeArgs{
EndPort: pulumi.Float64(0),
Id: pulumi.Float64(0),
StartPort: pulumi.Float64(0),
},
},
Protocol: pulumi.Float64(0),
},
},
Fosid: pulumi.Float64(0),
MasterServiceId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectFirewallInternetservicecustomId: pulumi.String("string"),
Reputation: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
})
var objectFirewallInternetservicecustomResource = new ObjectFirewallInternetservicecustom("objectFirewallInternetservicecustomResource", ObjectFirewallInternetservicecustomArgs.builder()
.adom("string")
.comment("string")
.disableEntries(ObjectFirewallInternetservicecustomDisableEntryArgs.builder()
.id(0)
.ipRanges(ObjectFirewallInternetservicecustomDisableEntryIpRangeArgs.builder()
.endIp("string")
.id(0)
.startIp("string")
.build())
.ports(0)
.protocol(0)
.build())
.dynamicSortSubtable("string")
.entries(ObjectFirewallInternetservicecustomEntryArgs.builder()
.addrMode("string")
.dst("string")
.dst6s("string")
.id(0)
.portRanges(ObjectFirewallInternetservicecustomEntryPortRangeArgs.builder()
.endPort(0)
.id(0)
.startPort(0)
.build())
.protocol(0)
.build())
.fosid(0)
.masterServiceId("string")
.name("string")
.objectFirewallInternetservicecustomId("string")
.reputation(0)
.scopetype("string")
.build());
object_firewall_internetservicecustom_resource = fortimanager.ObjectFirewallInternetservicecustom("objectFirewallInternetservicecustomResource",
adom="string",
comment="string",
disable_entries=[{
"id": 0,
"ip_ranges": [{
"end_ip": "string",
"id": 0,
"start_ip": "string",
}],
"ports": [0],
"protocol": 0,
}],
dynamic_sort_subtable="string",
entries=[{
"addr_mode": "string",
"dst": "string",
"dst6s": ["string"],
"id": 0,
"port_ranges": [{
"end_port": 0,
"id": 0,
"start_port": 0,
}],
"protocol": 0,
}],
fosid=0,
master_service_id="string",
name="string",
object_firewall_internetservicecustom_id="string",
reputation=0,
scopetype="string")
const objectFirewallInternetservicecustomResource = new fortimanager.ObjectFirewallInternetservicecustom("objectFirewallInternetservicecustomResource", {
adom: "string",
comment: "string",
disableEntries: [{
id: 0,
ipRanges: [{
endIp: "string",
id: 0,
startIp: "string",
}],
ports: [0],
protocol: 0,
}],
dynamicSortSubtable: "string",
entries: [{
addrMode: "string",
dst: "string",
dst6s: ["string"],
id: 0,
portRanges: [{
endPort: 0,
id: 0,
startPort: 0,
}],
protocol: 0,
}],
fosid: 0,
masterServiceId: "string",
name: "string",
objectFirewallInternetservicecustomId: "string",
reputation: 0,
scopetype: "string",
});
type: fortimanager:ObjectFirewallInternetservicecustom
properties:
adom: string
comment: string
disableEntries:
- id: 0
ipRanges:
- endIp: string
id: 0
startIp: string
ports:
- 0
protocol: 0
dynamicSortSubtable: string
entries:
- addrMode: string
dst: string
dst6s:
- string
id: 0
portRanges:
- endPort: 0
id: 0
startPort: 0
protocol: 0
fosid: 0
masterServiceId: string
name: string
objectFirewallInternetservicecustomId: string
reputation: 0
scopetype: string
ObjectFirewallInternetservicecustom 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 ObjectFirewallInternetservicecustom 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. - Comment string
- Comment.
- Disable
Entries List<ObjectFirewall Internetservicecustom Disable Entry> - Disable-Entry. The structure of
disable_entry
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entries
List<Object
Firewall Internetservicecustom Entry> - Entry. The structure of
entry
block is documented below. - Fosid double
- Internet Service ID.
- Master
Service stringId - Internet Service ID in the Internet Service database.
- Name string
- Internet Service name.
- Object
Firewall stringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- Reputation double
- Reputation level of the custom Internet Service.
- 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. - Comment string
- Comment.
- Disable
Entries []ObjectFirewall Internetservicecustom Disable Entry Args - Disable-Entry. The structure of
disable_entry
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entries
[]Object
Firewall Internetservicecustom Entry Type Args - Entry. The structure of
entry
block is documented below. - Fosid float64
- Internet Service ID.
- Master
Service stringId - Internet Service ID in the Internet Service database.
- Name string
- Internet Service name.
- Object
Firewall stringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- Reputation float64
- Reputation level of the custom Internet Service.
- 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. - comment String
- Comment.
- disable
Entries List<ObjectFirewall Internetservicecustom Disable Entry> - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries
List<Object
Firewall Internetservicecustom Entry> - Entry. The structure of
entry
block is documented below. - fosid Double
- Internet Service ID.
- master
Service StringId - Internet Service ID in the Internet Service database.
- name String
- Internet Service name.
- object
Firewall StringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- reputation Double
- Reputation level of the custom Internet Service.
- 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. - comment string
- Comment.
- disable
Entries ObjectFirewall Internetservicecustom Disable Entry[] - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries
Object
Firewall Internetservicecustom Entry[] - Entry. The structure of
entry
block is documented below. - fosid number
- Internet Service ID.
- master
Service stringId - Internet Service ID in the Internet Service database.
- name string
- Internet Service name.
- object
Firewall stringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- reputation number
- Reputation level of the custom Internet Service.
- 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. - comment str
- Comment.
- disable_
entries Sequence[ObjectFirewall Internetservicecustom Disable Entry Args] - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries
Sequence[Object
Firewall Internetservicecustom Entry Args] - Entry. The structure of
entry
block is documented below. - fosid float
- Internet Service ID.
- master_
service_ strid - Internet Service ID in the Internet Service database.
- name str
- Internet Service name.
- object_
firewall_ strinternetservicecustom_ id - an identifier for the resource with format {{name}}.
- reputation float
- Reputation level of the custom Internet Service.
- 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. - comment String
- Comment.
- disable
Entries List<Property Map> - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries List<Property Map>
- Entry. The structure of
entry
block is documented below. - fosid Number
- Internet Service ID.
- master
Service StringId - Internet Service ID in the Internet Service database.
- name String
- Internet Service name.
- object
Firewall StringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- reputation Number
- Reputation level of the custom Internet Service.
- 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 ObjectFirewallInternetservicecustom 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 ObjectFirewallInternetservicecustom Resource
Get an existing ObjectFirewallInternetservicecustom 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?: ObjectFirewallInternetservicecustomState, opts?: CustomResourceOptions): ObjectFirewallInternetservicecustom
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
disable_entries: Optional[Sequence[ObjectFirewallInternetservicecustomDisableEntryArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
entries: Optional[Sequence[ObjectFirewallInternetservicecustomEntryArgs]] = None,
fosid: Optional[float] = None,
master_service_id: Optional[str] = None,
name: Optional[str] = None,
object_firewall_internetservicecustom_id: Optional[str] = None,
reputation: Optional[float] = None,
scopetype: Optional[str] = None) -> ObjectFirewallInternetservicecustom
func GetObjectFirewallInternetservicecustom(ctx *Context, name string, id IDInput, state *ObjectFirewallInternetservicecustomState, opts ...ResourceOption) (*ObjectFirewallInternetservicecustom, error)
public static ObjectFirewallInternetservicecustom Get(string name, Input<string> id, ObjectFirewallInternetservicecustomState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallInternetservicecustom get(String name, Output<String> id, ObjectFirewallInternetservicecustomState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallInternetservicecustom 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. - Comment string
- Comment.
- Disable
Entries List<ObjectFirewall Internetservicecustom Disable Entry> - Disable-Entry. The structure of
disable_entry
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entries
List<Object
Firewall Internetservicecustom Entry> - Entry. The structure of
entry
block is documented below. - Fosid double
- Internet Service ID.
- Master
Service stringId - Internet Service ID in the Internet Service database.
- Name string
- Internet Service name.
- Object
Firewall stringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- Reputation double
- Reputation level of the custom Internet Service.
- 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. - Comment string
- Comment.
- Disable
Entries []ObjectFirewall Internetservicecustom Disable Entry Args - Disable-Entry. The structure of
disable_entry
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entries
[]Object
Firewall Internetservicecustom Entry Type Args - Entry. The structure of
entry
block is documented below. - Fosid float64
- Internet Service ID.
- Master
Service stringId - Internet Service ID in the Internet Service database.
- Name string
- Internet Service name.
- Object
Firewall stringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- Reputation float64
- Reputation level of the custom Internet Service.
- 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. - comment String
- Comment.
- disable
Entries List<ObjectFirewall Internetservicecustom Disable Entry> - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries
List<Object
Firewall Internetservicecustom Entry> - Entry. The structure of
entry
block is documented below. - fosid Double
- Internet Service ID.
- master
Service StringId - Internet Service ID in the Internet Service database.
- name String
- Internet Service name.
- object
Firewall StringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- reputation Double
- Reputation level of the custom Internet Service.
- 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. - comment string
- Comment.
- disable
Entries ObjectFirewall Internetservicecustom Disable Entry[] - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries
Object
Firewall Internetservicecustom Entry[] - Entry. The structure of
entry
block is documented below. - fosid number
- Internet Service ID.
- master
Service stringId - Internet Service ID in the Internet Service database.
- name string
- Internet Service name.
- object
Firewall stringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- reputation number
- Reputation level of the custom Internet Service.
- 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. - comment str
- Comment.
- disable_
entries Sequence[ObjectFirewall Internetservicecustom Disable Entry Args] - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries
Sequence[Object
Firewall Internetservicecustom Entry Args] - Entry. The structure of
entry
block is documented below. - fosid float
- Internet Service ID.
- master_
service_ strid - Internet Service ID in the Internet Service database.
- name str
- Internet Service name.
- object_
firewall_ strinternetservicecustom_ id - an identifier for the resource with format {{name}}.
- reputation float
- Reputation level of the custom Internet Service.
- 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. - comment String
- Comment.
- disable
Entries List<Property Map> - Disable-Entry. The structure of
disable_entry
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entries List<Property Map>
- Entry. The structure of
entry
block is documented below. - fosid Number
- Internet Service ID.
- master
Service StringId - Internet Service ID in the Internet Service database.
- name String
- Internet Service name.
- object
Firewall StringInternetservicecustom Id - an identifier for the resource with format {{name}}.
- reputation Number
- Reputation level of the custom Internet Service.
- 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
.
Supporting Types
ObjectFirewallInternetservicecustomDisableEntry, ObjectFirewallInternetservicecustomDisableEntryArgs
- Id double
- Disable entry ID.
- Ip
Ranges List<ObjectFirewall Internetservicecustom Disable Entry Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - Ports List<double>
- Integer value for the TCP/IP port (0 - 65535).
- Protocol double
- Integer value for the protocol type as defined by IANA (0 - 255).
- Id float64
- Disable entry ID.
- Ip
Ranges []ObjectFirewall Internetservicecustom Disable Entry Ip Range - Ip-Range. The structure of
ip_range
block is documented below. - Ports []float64
- Integer value for the TCP/IP port (0 - 65535).
- Protocol float64
- Integer value for the protocol type as defined by IANA (0 - 255).
- id Double
- Disable entry ID.
- ip
Ranges List<ObjectFirewall Internetservicecustom Disable Entry Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - ports List<Double>
- Integer value for the TCP/IP port (0 - 65535).
- protocol Double
- Integer value for the protocol type as defined by IANA (0 - 255).
- id number
- Disable entry ID.
- ip
Ranges ObjectFirewall Internetservicecustom Disable Entry Ip Range[] - Ip-Range. The structure of
ip_range
block is documented below. - ports number[]
- Integer value for the TCP/IP port (0 - 65535).
- protocol number
- Integer value for the protocol type as defined by IANA (0 - 255).
- id float
- Disable entry ID.
- ip_
ranges Sequence[ObjectFirewall Internetservicecustom Disable Entry Ip Range] - Ip-Range. The structure of
ip_range
block is documented below. - ports Sequence[float]
- Integer value for the TCP/IP port (0 - 65535).
- protocol float
- Integer value for the protocol type as defined by IANA (0 - 255).
- id Number
- Disable entry ID.
- ip
Ranges List<Property Map> - Ip-Range. The structure of
ip_range
block is documented below. - ports List<Number>
- Integer value for the TCP/IP port (0 - 65535).
- protocol Number
- Integer value for the protocol type as defined by IANA (0 - 255).
ObjectFirewallInternetservicecustomDisableEntryIpRange, ObjectFirewallInternetservicecustomDisableEntryIpRangeArgs
ObjectFirewallInternetservicecustomEntry, ObjectFirewallInternetservicecustomEntryArgs
- Addr
Mode string - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - Dst string
- Destination address or address group name.
- Dst6s List<string>
- Destination address6 or address6 group name.
- Id double
- Entry ID(1-255).
- Port
Ranges List<ObjectFirewall Internetservicecustom Entry Port Range> - Port-Range. The structure of
port_range
block is documented below. - Protocol double
- Integer value for the protocol type as defined by IANA (0 - 255).
- Addr
Mode string - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - Dst string
- Destination address or address group name.
- Dst6s []string
- Destination address6 or address6 group name.
- Id float64
- Entry ID(1-255).
- Port
Ranges []ObjectFirewall Internetservicecustom Entry Port Range Type - Port-Range. The structure of
port_range
block is documented below. - Protocol float64
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr
Mode String - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - dst String
- Destination address or address group name.
- dst6s List<String>
- Destination address6 or address6 group name.
- id Double
- Entry ID(1-255).
- port
Ranges List<ObjectFirewall Internetservicecustom Entry Port Range> - Port-Range. The structure of
port_range
block is documented below. - protocol Double
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr
Mode string - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - dst string
- Destination address or address group name.
- dst6s string[]
- Destination address6 or address6 group name.
- id number
- Entry ID(1-255).
- port
Ranges ObjectFirewall Internetservicecustom Entry Port Range[] - Port-Range. The structure of
port_range
block is documented below. - protocol number
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr_
mode str - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - dst str
- Destination address or address group name.
- dst6s Sequence[str]
- Destination address6 or address6 group name.
- id float
- Entry ID(1-255).
- port_
ranges Sequence[ObjectFirewall Internetservicecustom Entry Port Range] - Port-Range. The structure of
port_range
block is documented below. - protocol float
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr
Mode String - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - dst String
- Destination address or address group name.
- dst6s List<String>
- Destination address6 or address6 group name.
- id Number
- Entry ID(1-255).
- port
Ranges List<Property Map> - Port-Range. The structure of
port_range
block is documented below. - protocol Number
- Integer value for the protocol type as defined by IANA (0 - 255).
ObjectFirewallInternetservicecustomEntryPortRange, ObjectFirewallInternetservicecustomEntryPortRangeArgs
- end_
port float - Integer value for ending TCP/UDP/SCTP destination port in range (1 to 65535).
- id float
- Custom entry port range ID.
- start_
port float - Integer value for starting TCP/UDP/SCTP destination port in range (1 to 65535).
Import
ObjectFirewall InternetServiceCustom can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallInternetservicecustom:ObjectFirewallInternetservicecustom 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.