fortimanager.ObjectApplicationListDefaultnetworkservices
Explore with Pulumi AI
Default network service entries.
This resource is a sub resource for variable
default_network_services
of resourcefortimanager.ObjectApplicationList
. 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 trnameObjectApplicationList = new fortimanager.ObjectApplicationList("trnameObjectApplicationList", {});
const trnameObjectApplicationListDefaultnetworkservices = new fortimanager.ObjectApplicationListDefaultnetworkservices("trnameObjectApplicationListDefaultnetworkservices", {
services: ["dns"],
violationAction: "pass",
list: trnameObjectApplicationList.name,
fosid: 1,
}, {
dependsOn: [trnameObjectApplicationList],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_application_list = fortimanager.ObjectApplicationList("trnameObjectApplicationList")
trname_object_application_list_defaultnetworkservices = fortimanager.ObjectApplicationListDefaultnetworkservices("trnameObjectApplicationListDefaultnetworkservices",
services=["dns"],
violation_action="pass",
list=trname_object_application_list.name,
fosid=1,
opts = pulumi.ResourceOptions(depends_on=[trname_object_application_list]))
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 {
trnameObjectApplicationList, err := fortimanager.NewObjectApplicationList(ctx, "trnameObjectApplicationList", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectApplicationListDefaultnetworkservices(ctx, "trnameObjectApplicationListDefaultnetworkservices", &fortimanager.ObjectApplicationListDefaultnetworkservicesArgs{
Services: pulumi.StringArray{
pulumi.String("dns"),
},
ViolationAction: pulumi.String("pass"),
List: trnameObjectApplicationList.Name,
Fosid: pulumi.Float64(1),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectApplicationList,
}))
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 trnameObjectApplicationList = new Fortimanager.ObjectApplicationList("trnameObjectApplicationList");
var trnameObjectApplicationListDefaultnetworkservices = new Fortimanager.ObjectApplicationListDefaultnetworkservices("trnameObjectApplicationListDefaultnetworkservices", new()
{
Services = new[]
{
"dns",
},
ViolationAction = "pass",
List = trnameObjectApplicationList.Name,
Fosid = 1,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectApplicationList,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectApplicationList;
import com.pulumi.fortimanager.ObjectApplicationListDefaultnetworkservices;
import com.pulumi.fortimanager.ObjectApplicationListDefaultnetworkservicesArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectApplicationList = new ObjectApplicationList("trnameObjectApplicationList");
var trnameObjectApplicationListDefaultnetworkservices = new ObjectApplicationListDefaultnetworkservices("trnameObjectApplicationListDefaultnetworkservices", ObjectApplicationListDefaultnetworkservicesArgs.builder()
.services("dns")
.violationAction("pass")
.list(trnameObjectApplicationList.name())
.fosid(1)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectApplicationList)
.build());
}
}
resources:
trnameObjectApplicationListDefaultnetworkservices:
type: fortimanager:ObjectApplicationListDefaultnetworkservices
properties:
services:
- dns
violationAction: pass
list: ${trnameObjectApplicationList.name}
fosid: 1
options:
dependsOn:
- ${trnameObjectApplicationList}
trnameObjectApplicationList:
type: fortimanager:ObjectApplicationList
Create ObjectApplicationListDefaultnetworkservices Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectApplicationListDefaultnetworkservices(name: string, args: ObjectApplicationListDefaultnetworkservicesArgs, opts?: CustomResourceOptions);
@overload
def ObjectApplicationListDefaultnetworkservices(resource_name: str,
args: ObjectApplicationListDefaultnetworkservicesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectApplicationListDefaultnetworkservices(resource_name: str,
opts: Optional[ResourceOptions] = None,
list: Optional[str] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
object_application_list_defaultnetworkservices_id: Optional[str] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
services: Optional[Sequence[str]] = None,
violation_action: Optional[str] = None)
func NewObjectApplicationListDefaultnetworkservices(ctx *Context, name string, args ObjectApplicationListDefaultnetworkservicesArgs, opts ...ResourceOption) (*ObjectApplicationListDefaultnetworkservices, error)
public ObjectApplicationListDefaultnetworkservices(string name, ObjectApplicationListDefaultnetworkservicesArgs args, CustomResourceOptions? opts = null)
public ObjectApplicationListDefaultnetworkservices(String name, ObjectApplicationListDefaultnetworkservicesArgs args)
public ObjectApplicationListDefaultnetworkservices(String name, ObjectApplicationListDefaultnetworkservicesArgs args, CustomResourceOptions options)
type: fortimanager:ObjectApplicationListDefaultnetworkservices
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 ObjectApplicationListDefaultnetworkservicesArgs
- 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 ObjectApplicationListDefaultnetworkservicesArgs
- 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 ObjectApplicationListDefaultnetworkservicesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectApplicationListDefaultnetworkservicesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectApplicationListDefaultnetworkservicesArgs
- 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 objectApplicationListDefaultnetworkservicesResource = new Fortimanager.ObjectApplicationListDefaultnetworkservices("objectApplicationListDefaultnetworkservicesResource", new()
{
List = "string",
Adom = "string",
Fosid = 0,
ObjectApplicationListDefaultnetworkservicesId = "string",
Port = 0,
Scopetype = "string",
Services = new[]
{
"string",
},
ViolationAction = "string",
});
example, err := fortimanager.NewObjectApplicationListDefaultnetworkservices(ctx, "objectApplicationListDefaultnetworkservicesResource", &fortimanager.ObjectApplicationListDefaultnetworkservicesArgs{
List: pulumi.String("string"),
Adom: pulumi.String("string"),
Fosid: pulumi.Float64(0),
ObjectApplicationListDefaultnetworkservicesId: pulumi.String("string"),
Port: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Services: pulumi.StringArray{
pulumi.String("string"),
},
ViolationAction: pulumi.String("string"),
})
var objectApplicationListDefaultnetworkservicesResource = new ObjectApplicationListDefaultnetworkservices("objectApplicationListDefaultnetworkservicesResource", ObjectApplicationListDefaultnetworkservicesArgs.builder()
.list("string")
.adom("string")
.fosid(0)
.objectApplicationListDefaultnetworkservicesId("string")
.port(0)
.scopetype("string")
.services("string")
.violationAction("string")
.build());
object_application_list_defaultnetworkservices_resource = fortimanager.ObjectApplicationListDefaultnetworkservices("objectApplicationListDefaultnetworkservicesResource",
list="string",
adom="string",
fosid=0,
object_application_list_defaultnetworkservices_id="string",
port=0,
scopetype="string",
services=["string"],
violation_action="string")
const objectApplicationListDefaultnetworkservicesResource = new fortimanager.ObjectApplicationListDefaultnetworkservices("objectApplicationListDefaultnetworkservicesResource", {
list: "string",
adom: "string",
fosid: 0,
objectApplicationListDefaultnetworkservicesId: "string",
port: 0,
scopetype: "string",
services: ["string"],
violationAction: "string",
});
type: fortimanager:ObjectApplicationListDefaultnetworkservices
properties:
adom: string
fosid: 0
list: string
objectApplicationListDefaultnetworkservicesId: string
port: 0
scopetype: string
services:
- string
violationAction: string
ObjectApplicationListDefaultnetworkservices 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 ObjectApplicationListDefaultnetworkservices resource accepts the following input properties:
- List string
- List.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- Entry ID.
- Object
Application stringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- Port double
- Port number.
- 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
. - Services List<string>
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - Violation
Action string - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- List string
- List.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- Entry ID.
- Object
Application stringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- Port float64
- Port number.
- 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
. - Services []string
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - Violation
Action string - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- list String
- List.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- Entry ID.
- object
Application StringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- port Double
- Port number.
- 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
. - services List<String>
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation
Action String - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- list string
- List.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- Entry ID.
- object
Application stringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- port number
- Port number.
- 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
. - services string[]
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation
Action string - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- list str
- List.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- Entry ID.
- object_
application_ strlist_ defaultnetworkservices_ id - an identifier for the resource with format {{fosid}}.
- port float
- Port number.
- 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
. - services Sequence[str]
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation_
action str - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- list String
- List.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- Entry ID.
- object
Application StringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- port Number
- Port number.
- 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
. - services List<String>
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation
Action String - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectApplicationListDefaultnetworkservices 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 ObjectApplicationListDefaultnetworkservices Resource
Get an existing ObjectApplicationListDefaultnetworkservices 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?: ObjectApplicationListDefaultnetworkservicesState, opts?: CustomResourceOptions): ObjectApplicationListDefaultnetworkservices
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
list: Optional[str] = None,
object_application_list_defaultnetworkservices_id: Optional[str] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
services: Optional[Sequence[str]] = None,
violation_action: Optional[str] = None) -> ObjectApplicationListDefaultnetworkservices
func GetObjectApplicationListDefaultnetworkservices(ctx *Context, name string, id IDInput, state *ObjectApplicationListDefaultnetworkservicesState, opts ...ResourceOption) (*ObjectApplicationListDefaultnetworkservices, error)
public static ObjectApplicationListDefaultnetworkservices Get(string name, Input<string> id, ObjectApplicationListDefaultnetworkservicesState? state, CustomResourceOptions? opts = null)
public static ObjectApplicationListDefaultnetworkservices get(String name, Output<String> id, ObjectApplicationListDefaultnetworkservicesState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectApplicationListDefaultnetworkservices 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. - Fosid double
- Entry ID.
- List string
- List.
- Object
Application stringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- Port double
- Port number.
- 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
. - Services List<string>
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - Violation
Action string - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- Entry ID.
- List string
- List.
- Object
Application stringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- Port float64
- Port number.
- 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
. - Services []string
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - Violation
Action string - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- Entry ID.
- list String
- List.
- object
Application StringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- port Double
- Port number.
- 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
. - services List<String>
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation
Action String - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- Entry ID.
- list string
- List.
- object
Application stringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- port number
- Port number.
- 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
. - services string[]
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation
Action string - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- Entry ID.
- list str
- List.
- object_
application_ strlist_ defaultnetworkservices_ id - an identifier for the resource with format {{fosid}}.
- port float
- Port number.
- 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
. - services Sequence[str]
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation_
action str - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- Entry ID.
- list String
- List.
- object
Application StringList Defaultnetworkservices Id - an identifier for the resource with format {{fosid}}.
- port Number
- Port number.
- 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
. - services List<String>
- Network protocols. Valid values:
http
,ssh
,telnet
,ftp
,dns
,smtp
,pop3
,imap
,snmp
,nntp
,https
. - violation
Action String - Action for protocols not white listed under selected port. Valid values:
block
,monitor
,pass
.
Import
ObjectApplication ListDefaultNetworkServices can be imported using any of these accepted formats:
Set import_options = [“list=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectApplicationListDefaultnetworkservices:ObjectApplicationListDefaultnetworkservices labelname {{fosid}}
$ 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.