fortimanager.ObjectFirewallProfilegroup
Explore with Pulumi AI
Configure profile groups.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallProfilegroup("trname", {
    applicationList: "default",
    avProfile: "default",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallProfilegroup("trname",
    application_list="default",
    av_profile="default")
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.NewObjectFirewallProfilegroup(ctx, "trname", &fortimanager.ObjectFirewallProfilegroupArgs{
			ApplicationList: pulumi.String("default"),
			AvProfile:       pulumi.String("default"),
		})
		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.ObjectFirewallProfilegroup("trname", new()
    {
        ApplicationList = "default",
        AvProfile = "default",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallProfilegroup;
import com.pulumi.fortimanager.ObjectFirewallProfilegroupArgs;
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 ObjectFirewallProfilegroup("trname", ObjectFirewallProfilegroupArgs.builder()
            .applicationList("default")
            .avProfile("default")
            .build());
    }
}
resources:
  trname:
    type: fortimanager:ObjectFirewallProfilegroup
    properties:
      applicationList: default
      avProfile: default
Create ObjectFirewallProfilegroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallProfilegroup(name: string, args?: ObjectFirewallProfilegroupArgs, opts?: CustomResourceOptions);@overload
def ObjectFirewallProfilegroup(resource_name: str,
                               args: Optional[ObjectFirewallProfilegroupArgs] = None,
                               opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallProfilegroup(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               adom: Optional[str] = None,
                               application_list: Optional[str] = None,
                               av_profile: Optional[str] = None,
                               casb_profile: Optional[str] = None,
                               cifs_profile: Optional[str] = None,
                               diameter_filter_profile: Optional[str] = None,
                               dlp_profile: Optional[str] = None,
                               dlp_sensor: Optional[str] = None,
                               dnsfilter_profile: Optional[str] = None,
                               emailfilter_profile: Optional[str] = None,
                               file_filter_profile: Optional[str] = None,
                               icap_profile: Optional[str] = None,
                               ips_sensor: Optional[str] = None,
                               ips_voip_filter: Optional[str] = None,
                               mms_profile: Optional[str] = None,
                               name: Optional[str] = None,
                               object_firewall_profilegroup_id: Optional[str] = None,
                               profile_protocol_options: Optional[str] = None,
                               scopetype: Optional[str] = None,
                               sctp_filter_profile: Optional[str] = None,
                               spamfilter_profile: Optional[str] = None,
                               ssh_filter_profile: Optional[str] = None,
                               ssl_ssh_profile: Optional[str] = None,
                               videofilter_profile: Optional[str] = None,
                               virtual_patch_profile: Optional[str] = None,
                               voip_profile: Optional[str] = None,
                               waf_profile: Optional[str] = None,
                               webfilter_profile: Optional[str] = None)func NewObjectFirewallProfilegroup(ctx *Context, name string, args *ObjectFirewallProfilegroupArgs, opts ...ResourceOption) (*ObjectFirewallProfilegroup, error)public ObjectFirewallProfilegroup(string name, ObjectFirewallProfilegroupArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallProfilegroup(String name, ObjectFirewallProfilegroupArgs args)
public ObjectFirewallProfilegroup(String name, ObjectFirewallProfilegroupArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallProfilegroup
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 ObjectFirewallProfilegroupArgs
- 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 ObjectFirewallProfilegroupArgs
- 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 ObjectFirewallProfilegroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallProfilegroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallProfilegroupArgs
- 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 objectFirewallProfilegroupResource = new Fortimanager.ObjectFirewallProfilegroup("objectFirewallProfilegroupResource", new()
{
    Adom = "string",
    ApplicationList = "string",
    AvProfile = "string",
    CasbProfile = "string",
    CifsProfile = "string",
    DiameterFilterProfile = "string",
    DlpProfile = "string",
    DlpSensor = "string",
    DnsfilterProfile = "string",
    EmailfilterProfile = "string",
    FileFilterProfile = "string",
    IcapProfile = "string",
    IpsSensor = "string",
    IpsVoipFilter = "string",
    MmsProfile = "string",
    Name = "string",
    ObjectFirewallProfilegroupId = "string",
    ProfileProtocolOptions = "string",
    Scopetype = "string",
    SctpFilterProfile = "string",
    SpamfilterProfile = "string",
    SshFilterProfile = "string",
    SslSshProfile = "string",
    VideofilterProfile = "string",
    VirtualPatchProfile = "string",
    VoipProfile = "string",
    WafProfile = "string",
    WebfilterProfile = "string",
});
example, err := fortimanager.NewObjectFirewallProfilegroup(ctx, "objectFirewallProfilegroupResource", &fortimanager.ObjectFirewallProfilegroupArgs{
Adom: pulumi.String("string"),
ApplicationList: pulumi.String("string"),
AvProfile: pulumi.String("string"),
CasbProfile: pulumi.String("string"),
CifsProfile: pulumi.String("string"),
DiameterFilterProfile: pulumi.String("string"),
DlpProfile: pulumi.String("string"),
DlpSensor: pulumi.String("string"),
DnsfilterProfile: pulumi.String("string"),
EmailfilterProfile: pulumi.String("string"),
FileFilterProfile: pulumi.String("string"),
IcapProfile: pulumi.String("string"),
IpsSensor: pulumi.String("string"),
IpsVoipFilter: pulumi.String("string"),
MmsProfile: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectFirewallProfilegroupId: pulumi.String("string"),
ProfileProtocolOptions: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SctpFilterProfile: pulumi.String("string"),
SpamfilterProfile: pulumi.String("string"),
SshFilterProfile: pulumi.String("string"),
SslSshProfile: pulumi.String("string"),
VideofilterProfile: pulumi.String("string"),
VirtualPatchProfile: pulumi.String("string"),
VoipProfile: pulumi.String("string"),
WafProfile: pulumi.String("string"),
WebfilterProfile: pulumi.String("string"),
})
var objectFirewallProfilegroupResource = new ObjectFirewallProfilegroup("objectFirewallProfilegroupResource", ObjectFirewallProfilegroupArgs.builder()
    .adom("string")
    .applicationList("string")
    .avProfile("string")
    .casbProfile("string")
    .cifsProfile("string")
    .diameterFilterProfile("string")
    .dlpProfile("string")
    .dlpSensor("string")
    .dnsfilterProfile("string")
    .emailfilterProfile("string")
    .fileFilterProfile("string")
    .icapProfile("string")
    .ipsSensor("string")
    .ipsVoipFilter("string")
    .mmsProfile("string")
    .name("string")
    .objectFirewallProfilegroupId("string")
    .profileProtocolOptions("string")
    .scopetype("string")
    .sctpFilterProfile("string")
    .spamfilterProfile("string")
    .sshFilterProfile("string")
    .sslSshProfile("string")
    .videofilterProfile("string")
    .virtualPatchProfile("string")
    .voipProfile("string")
    .wafProfile("string")
    .webfilterProfile("string")
    .build());
object_firewall_profilegroup_resource = fortimanager.ObjectFirewallProfilegroup("objectFirewallProfilegroupResource",
    adom="string",
    application_list="string",
    av_profile="string",
    casb_profile="string",
    cifs_profile="string",
    diameter_filter_profile="string",
    dlp_profile="string",
    dlp_sensor="string",
    dnsfilter_profile="string",
    emailfilter_profile="string",
    file_filter_profile="string",
    icap_profile="string",
    ips_sensor="string",
    ips_voip_filter="string",
    mms_profile="string",
    name="string",
    object_firewall_profilegroup_id="string",
    profile_protocol_options="string",
    scopetype="string",
    sctp_filter_profile="string",
    spamfilter_profile="string",
    ssh_filter_profile="string",
    ssl_ssh_profile="string",
    videofilter_profile="string",
    virtual_patch_profile="string",
    voip_profile="string",
    waf_profile="string",
    webfilter_profile="string")
const objectFirewallProfilegroupResource = new fortimanager.ObjectFirewallProfilegroup("objectFirewallProfilegroupResource", {
    adom: "string",
    applicationList: "string",
    avProfile: "string",
    casbProfile: "string",
    cifsProfile: "string",
    diameterFilterProfile: "string",
    dlpProfile: "string",
    dlpSensor: "string",
    dnsfilterProfile: "string",
    emailfilterProfile: "string",
    fileFilterProfile: "string",
    icapProfile: "string",
    ipsSensor: "string",
    ipsVoipFilter: "string",
    mmsProfile: "string",
    name: "string",
    objectFirewallProfilegroupId: "string",
    profileProtocolOptions: "string",
    scopetype: "string",
    sctpFilterProfile: "string",
    spamfilterProfile: "string",
    sshFilterProfile: "string",
    sslSshProfile: "string",
    videofilterProfile: "string",
    virtualPatchProfile: "string",
    voipProfile: "string",
    wafProfile: "string",
    webfilterProfile: "string",
});
type: fortimanager:ObjectFirewallProfilegroup
properties:
    adom: string
    applicationList: string
    avProfile: string
    casbProfile: string
    cifsProfile: string
    diameterFilterProfile: string
    dlpProfile: string
    dlpSensor: string
    dnsfilterProfile: string
    emailfilterProfile: string
    fileFilterProfile: string
    icapProfile: string
    ipsSensor: string
    ipsVoipFilter: string
    mmsProfile: string
    name: string
    objectFirewallProfilegroupId: string
    profileProtocolOptions: string
    scopetype: string
    sctpFilterProfile: string
    spamfilterProfile: string
    sshFilterProfile: string
    sslSshProfile: string
    videofilterProfile: string
    virtualPatchProfile: string
    voipProfile: string
    wafProfile: string
    webfilterProfile: string
ObjectFirewallProfilegroup 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 ObjectFirewallProfilegroup resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- ApplicationList string
- Name of an existing Application list.
- AvProfile string
- Name of an existing Antivirus profile.
- CasbProfile string
- Name of an existing CASB profile.
- CifsProfile string
- Name of an existing CIFS profile.
- DiameterFilter stringProfile 
- Name of an existing Diameter filter profile.
- DlpProfile string
- Name of an existing DLP profile.
- DlpSensor string
- Name of an existing DLP sensor.
- DnsfilterProfile string
- Name of an existing DNS filter profile.
- EmailfilterProfile string
- Name of an existing email filter profile.
- FileFilter stringProfile 
- Name of an existing file-filter profile.
- IcapProfile string
- Name of an existing ICAP profile.
- IpsSensor string
- Name of an existing IPS sensor.
- IpsVoip stringFilter 
- Name of an existing VoIP (ips) profile.
- MmsProfile string
- Name of an existing MMS profile.
- Name string
- Profile group name.
- ObjectFirewall stringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- ProfileProtocol stringOptions 
- Name of an existing Protocol options profile.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SctpFilter stringProfile 
- Name of an existing SCTP filter profile.
- SpamfilterProfile string
- Name of an existing Spam filter profile.
- SshFilter stringProfile 
- Name of an existing SSH filter profile.
- SslSsh stringProfile 
- Name of an existing SSL SSH profile.
- VideofilterProfile string
- Name of an existing VideoFilter profile.
- VirtualPatch stringProfile 
- Name of an existing virtual-patch profile.
- VoipProfile string
- Name of an existing VoIP profile.
- WafProfile string
- Name of an existing Web application firewall profile.
- WebfilterProfile string
- Name of an existing Web filter profile.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- ApplicationList string
- Name of an existing Application list.
- AvProfile string
- Name of an existing Antivirus profile.
- CasbProfile string
- Name of an existing CASB profile.
- CifsProfile string
- Name of an existing CIFS profile.
- DiameterFilter stringProfile 
- Name of an existing Diameter filter profile.
- DlpProfile string
- Name of an existing DLP profile.
- DlpSensor string
- Name of an existing DLP sensor.
- DnsfilterProfile string
- Name of an existing DNS filter profile.
- EmailfilterProfile string
- Name of an existing email filter profile.
- FileFilter stringProfile 
- Name of an existing file-filter profile.
- IcapProfile string
- Name of an existing ICAP profile.
- IpsSensor string
- Name of an existing IPS sensor.
- IpsVoip stringFilter 
- Name of an existing VoIP (ips) profile.
- MmsProfile string
- Name of an existing MMS profile.
- Name string
- Profile group name.
- ObjectFirewall stringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- ProfileProtocol stringOptions 
- Name of an existing Protocol options profile.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SctpFilter stringProfile 
- Name of an existing SCTP filter profile.
- SpamfilterProfile string
- Name of an existing Spam filter profile.
- SshFilter stringProfile 
- Name of an existing SSH filter profile.
- SslSsh stringProfile 
- Name of an existing SSL SSH profile.
- VideofilterProfile string
- Name of an existing VideoFilter profile.
- VirtualPatch stringProfile 
- Name of an existing virtual-patch profile.
- VoipProfile string
- Name of an existing VoIP profile.
- WafProfile string
- Name of an existing Web application firewall profile.
- WebfilterProfile string
- Name of an existing Web filter profile.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- applicationList String
- Name of an existing Application list.
- avProfile String
- Name of an existing Antivirus profile.
- casbProfile String
- Name of an existing CASB profile.
- cifsProfile String
- Name of an existing CIFS profile.
- diameterFilter StringProfile 
- Name of an existing Diameter filter profile.
- dlpProfile String
- Name of an existing DLP profile.
- dlpSensor String
- Name of an existing DLP sensor.
- dnsfilterProfile String
- Name of an existing DNS filter profile.
- emailfilterProfile String
- Name of an existing email filter profile.
- fileFilter StringProfile 
- Name of an existing file-filter profile.
- icapProfile String
- Name of an existing ICAP profile.
- ipsSensor String
- Name of an existing IPS sensor.
- ipsVoip StringFilter 
- Name of an existing VoIP (ips) profile.
- mmsProfile String
- Name of an existing MMS profile.
- name String
- Profile group name.
- objectFirewall StringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- profileProtocol StringOptions 
- Name of an existing Protocol options profile.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctpFilter StringProfile 
- Name of an existing SCTP filter profile.
- spamfilterProfile String
- Name of an existing Spam filter profile.
- sshFilter StringProfile 
- Name of an existing SSH filter profile.
- sslSsh StringProfile 
- Name of an existing SSL SSH profile.
- videofilterProfile String
- Name of an existing VideoFilter profile.
- virtualPatch StringProfile 
- Name of an existing virtual-patch profile.
- voipProfile String
- Name of an existing VoIP profile.
- wafProfile String
- Name of an existing Web application firewall profile.
- webfilterProfile String
- Name of an existing Web filter profile.
- adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- applicationList string
- Name of an existing Application list.
- avProfile string
- Name of an existing Antivirus profile.
- casbProfile string
- Name of an existing CASB profile.
- cifsProfile string
- Name of an existing CIFS profile.
- diameterFilter stringProfile 
- Name of an existing Diameter filter profile.
- dlpProfile string
- Name of an existing DLP profile.
- dlpSensor string
- Name of an existing DLP sensor.
- dnsfilterProfile string
- Name of an existing DNS filter profile.
- emailfilterProfile string
- Name of an existing email filter profile.
- fileFilter stringProfile 
- Name of an existing file-filter profile.
- icapProfile string
- Name of an existing ICAP profile.
- ipsSensor string
- Name of an existing IPS sensor.
- ipsVoip stringFilter 
- Name of an existing VoIP (ips) profile.
- mmsProfile string
- Name of an existing MMS profile.
- name string
- Profile group name.
- objectFirewall stringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- profileProtocol stringOptions 
- Name of an existing Protocol options profile.
- scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctpFilter stringProfile 
- Name of an existing SCTP filter profile.
- spamfilterProfile string
- Name of an existing Spam filter profile.
- sshFilter stringProfile 
- Name of an existing SSH filter profile.
- sslSsh stringProfile 
- Name of an existing SSL SSH profile.
- videofilterProfile string
- Name of an existing VideoFilter profile.
- virtualPatch stringProfile 
- Name of an existing virtual-patch profile.
- voipProfile string
- Name of an existing VoIP profile.
- wafProfile string
- Name of an existing Web application firewall profile.
- webfilterProfile string
- Name of an existing Web filter profile.
- adom str
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- application_list str
- Name of an existing Application list.
- av_profile str
- Name of an existing Antivirus profile.
- casb_profile str
- Name of an existing CASB profile.
- cifs_profile str
- Name of an existing CIFS profile.
- diameter_filter_ strprofile 
- Name of an existing Diameter filter profile.
- dlp_profile str
- Name of an existing DLP profile.
- dlp_sensor str
- Name of an existing DLP sensor.
- dnsfilter_profile str
- Name of an existing DNS filter profile.
- emailfilter_profile str
- Name of an existing email filter profile.
- file_filter_ strprofile 
- Name of an existing file-filter profile.
- icap_profile str
- Name of an existing ICAP profile.
- ips_sensor str
- Name of an existing IPS sensor.
- ips_voip_ strfilter 
- Name of an existing VoIP (ips) profile.
- mms_profile str
- Name of an existing MMS profile.
- name str
- Profile group name.
- object_firewall_ strprofilegroup_ id 
- an identifier for the resource with format {{name}}.
- profile_protocol_ stroptions 
- Name of an existing Protocol options profile.
- scopetype str
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctp_filter_ strprofile 
- Name of an existing SCTP filter profile.
- spamfilter_profile str
- Name of an existing Spam filter profile.
- ssh_filter_ strprofile 
- Name of an existing SSH filter profile.
- ssl_ssh_ strprofile 
- Name of an existing SSL SSH profile.
- videofilter_profile str
- Name of an existing VideoFilter profile.
- virtual_patch_ strprofile 
- Name of an existing virtual-patch profile.
- voip_profile str
- Name of an existing VoIP profile.
- waf_profile str
- Name of an existing Web application firewall profile.
- webfilter_profile str
- Name of an existing Web filter profile.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- applicationList String
- Name of an existing Application list.
- avProfile String
- Name of an existing Antivirus profile.
- casbProfile String
- Name of an existing CASB profile.
- cifsProfile String
- Name of an existing CIFS profile.
- diameterFilter StringProfile 
- Name of an existing Diameter filter profile.
- dlpProfile String
- Name of an existing DLP profile.
- dlpSensor String
- Name of an existing DLP sensor.
- dnsfilterProfile String
- Name of an existing DNS filter profile.
- emailfilterProfile String
- Name of an existing email filter profile.
- fileFilter StringProfile 
- Name of an existing file-filter profile.
- icapProfile String
- Name of an existing ICAP profile.
- ipsSensor String
- Name of an existing IPS sensor.
- ipsVoip StringFilter 
- Name of an existing VoIP (ips) profile.
- mmsProfile String
- Name of an existing MMS profile.
- name String
- Profile group name.
- objectFirewall StringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- profileProtocol StringOptions 
- Name of an existing Protocol options profile.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctpFilter StringProfile 
- Name of an existing SCTP filter profile.
- spamfilterProfile String
- Name of an existing Spam filter profile.
- sshFilter StringProfile 
- Name of an existing SSH filter profile.
- sslSsh StringProfile 
- Name of an existing SSL SSH profile.
- videofilterProfile String
- Name of an existing VideoFilter profile.
- virtualPatch StringProfile 
- Name of an existing virtual-patch profile.
- voipProfile String
- Name of an existing VoIP profile.
- wafProfile String
- Name of an existing Web application firewall profile.
- webfilterProfile String
- Name of an existing Web filter profile.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallProfilegroup 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 ObjectFirewallProfilegroup Resource
Get an existing ObjectFirewallProfilegroup 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?: ObjectFirewallProfilegroupState, opts?: CustomResourceOptions): ObjectFirewallProfilegroup@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        application_list: Optional[str] = None,
        av_profile: Optional[str] = None,
        casb_profile: Optional[str] = None,
        cifs_profile: Optional[str] = None,
        diameter_filter_profile: Optional[str] = None,
        dlp_profile: Optional[str] = None,
        dlp_sensor: Optional[str] = None,
        dnsfilter_profile: Optional[str] = None,
        emailfilter_profile: Optional[str] = None,
        file_filter_profile: Optional[str] = None,
        icap_profile: Optional[str] = None,
        ips_sensor: Optional[str] = None,
        ips_voip_filter: Optional[str] = None,
        mms_profile: Optional[str] = None,
        name: Optional[str] = None,
        object_firewall_profilegroup_id: Optional[str] = None,
        profile_protocol_options: Optional[str] = None,
        scopetype: Optional[str] = None,
        sctp_filter_profile: Optional[str] = None,
        spamfilter_profile: Optional[str] = None,
        ssh_filter_profile: Optional[str] = None,
        ssl_ssh_profile: Optional[str] = None,
        videofilter_profile: Optional[str] = None,
        virtual_patch_profile: Optional[str] = None,
        voip_profile: Optional[str] = None,
        waf_profile: Optional[str] = None,
        webfilter_profile: Optional[str] = None) -> ObjectFirewallProfilegroupfunc GetObjectFirewallProfilegroup(ctx *Context, name string, id IDInput, state *ObjectFirewallProfilegroupState, opts ...ResourceOption) (*ObjectFirewallProfilegroup, error)public static ObjectFirewallProfilegroup Get(string name, Input<string> id, ObjectFirewallProfilegroupState? state, CustomResourceOptions? opts = null)public static ObjectFirewallProfilegroup get(String name, Output<String> id, ObjectFirewallProfilegroupState state, CustomResourceOptions options)resources:  _:    type: fortimanager:ObjectFirewallProfilegroup    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 scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- ApplicationList string
- Name of an existing Application list.
- AvProfile string
- Name of an existing Antivirus profile.
- CasbProfile string
- Name of an existing CASB profile.
- CifsProfile string
- Name of an existing CIFS profile.
- DiameterFilter stringProfile 
- Name of an existing Diameter filter profile.
- DlpProfile string
- Name of an existing DLP profile.
- DlpSensor string
- Name of an existing DLP sensor.
- DnsfilterProfile string
- Name of an existing DNS filter profile.
- EmailfilterProfile string
- Name of an existing email filter profile.
- FileFilter stringProfile 
- Name of an existing file-filter profile.
- IcapProfile string
- Name of an existing ICAP profile.
- IpsSensor string
- Name of an existing IPS sensor.
- IpsVoip stringFilter 
- Name of an existing VoIP (ips) profile.
- MmsProfile string
- Name of an existing MMS profile.
- Name string
- Profile group name.
- ObjectFirewall stringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- ProfileProtocol stringOptions 
- Name of an existing Protocol options profile.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SctpFilter stringProfile 
- Name of an existing SCTP filter profile.
- SpamfilterProfile string
- Name of an existing Spam filter profile.
- SshFilter stringProfile 
- Name of an existing SSH filter profile.
- SslSsh stringProfile 
- Name of an existing SSL SSH profile.
- VideofilterProfile string
- Name of an existing VideoFilter profile.
- VirtualPatch stringProfile 
- Name of an existing virtual-patch profile.
- VoipProfile string
- Name of an existing VoIP profile.
- WafProfile string
- Name of an existing Web application firewall profile.
- WebfilterProfile string
- Name of an existing Web filter profile.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- ApplicationList string
- Name of an existing Application list.
- AvProfile string
- Name of an existing Antivirus profile.
- CasbProfile string
- Name of an existing CASB profile.
- CifsProfile string
- Name of an existing CIFS profile.
- DiameterFilter stringProfile 
- Name of an existing Diameter filter profile.
- DlpProfile string
- Name of an existing DLP profile.
- DlpSensor string
- Name of an existing DLP sensor.
- DnsfilterProfile string
- Name of an existing DNS filter profile.
- EmailfilterProfile string
- Name of an existing email filter profile.
- FileFilter stringProfile 
- Name of an existing file-filter profile.
- IcapProfile string
- Name of an existing ICAP profile.
- IpsSensor string
- Name of an existing IPS sensor.
- IpsVoip stringFilter 
- Name of an existing VoIP (ips) profile.
- MmsProfile string
- Name of an existing MMS profile.
- Name string
- Profile group name.
- ObjectFirewall stringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- ProfileProtocol stringOptions 
- Name of an existing Protocol options profile.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SctpFilter stringProfile 
- Name of an existing SCTP filter profile.
- SpamfilterProfile string
- Name of an existing Spam filter profile.
- SshFilter stringProfile 
- Name of an existing SSH filter profile.
- SslSsh stringProfile 
- Name of an existing SSL SSH profile.
- VideofilterProfile string
- Name of an existing VideoFilter profile.
- VirtualPatch stringProfile 
- Name of an existing virtual-patch profile.
- VoipProfile string
- Name of an existing VoIP profile.
- WafProfile string
- Name of an existing Web application firewall profile.
- WebfilterProfile string
- Name of an existing Web filter profile.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- applicationList String
- Name of an existing Application list.
- avProfile String
- Name of an existing Antivirus profile.
- casbProfile String
- Name of an existing CASB profile.
- cifsProfile String
- Name of an existing CIFS profile.
- diameterFilter StringProfile 
- Name of an existing Diameter filter profile.
- dlpProfile String
- Name of an existing DLP profile.
- dlpSensor String
- Name of an existing DLP sensor.
- dnsfilterProfile String
- Name of an existing DNS filter profile.
- emailfilterProfile String
- Name of an existing email filter profile.
- fileFilter StringProfile 
- Name of an existing file-filter profile.
- icapProfile String
- Name of an existing ICAP profile.
- ipsSensor String
- Name of an existing IPS sensor.
- ipsVoip StringFilter 
- Name of an existing VoIP (ips) profile.
- mmsProfile String
- Name of an existing MMS profile.
- name String
- Profile group name.
- objectFirewall StringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- profileProtocol StringOptions 
- Name of an existing Protocol options profile.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctpFilter StringProfile 
- Name of an existing SCTP filter profile.
- spamfilterProfile String
- Name of an existing Spam filter profile.
- sshFilter StringProfile 
- Name of an existing SSH filter profile.
- sslSsh StringProfile 
- Name of an existing SSL SSH profile.
- videofilterProfile String
- Name of an existing VideoFilter profile.
- virtualPatch StringProfile 
- Name of an existing virtual-patch profile.
- voipProfile String
- Name of an existing VoIP profile.
- wafProfile String
- Name of an existing Web application firewall profile.
- webfilterProfile String
- Name of an existing Web filter profile.
- adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- applicationList string
- Name of an existing Application list.
- avProfile string
- Name of an existing Antivirus profile.
- casbProfile string
- Name of an existing CASB profile.
- cifsProfile string
- Name of an existing CIFS profile.
- diameterFilter stringProfile 
- Name of an existing Diameter filter profile.
- dlpProfile string
- Name of an existing DLP profile.
- dlpSensor string
- Name of an existing DLP sensor.
- dnsfilterProfile string
- Name of an existing DNS filter profile.
- emailfilterProfile string
- Name of an existing email filter profile.
- fileFilter stringProfile 
- Name of an existing file-filter profile.
- icapProfile string
- Name of an existing ICAP profile.
- ipsSensor string
- Name of an existing IPS sensor.
- ipsVoip stringFilter 
- Name of an existing VoIP (ips) profile.
- mmsProfile string
- Name of an existing MMS profile.
- name string
- Profile group name.
- objectFirewall stringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- profileProtocol stringOptions 
- Name of an existing Protocol options profile.
- scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctpFilter stringProfile 
- Name of an existing SCTP filter profile.
- spamfilterProfile string
- Name of an existing Spam filter profile.
- sshFilter stringProfile 
- Name of an existing SSH filter profile.
- sslSsh stringProfile 
- Name of an existing SSL SSH profile.
- videofilterProfile string
- Name of an existing VideoFilter profile.
- virtualPatch stringProfile 
- Name of an existing virtual-patch profile.
- voipProfile string
- Name of an existing VoIP profile.
- wafProfile string
- Name of an existing Web application firewall profile.
- webfilterProfile string
- Name of an existing Web filter profile.
- adom str
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- application_list str
- Name of an existing Application list.
- av_profile str
- Name of an existing Antivirus profile.
- casb_profile str
- Name of an existing CASB profile.
- cifs_profile str
- Name of an existing CIFS profile.
- diameter_filter_ strprofile 
- Name of an existing Diameter filter profile.
- dlp_profile str
- Name of an existing DLP profile.
- dlp_sensor str
- Name of an existing DLP sensor.
- dnsfilter_profile str
- Name of an existing DNS filter profile.
- emailfilter_profile str
- Name of an existing email filter profile.
- file_filter_ strprofile 
- Name of an existing file-filter profile.
- icap_profile str
- Name of an existing ICAP profile.
- ips_sensor str
- Name of an existing IPS sensor.
- ips_voip_ strfilter 
- Name of an existing VoIP (ips) profile.
- mms_profile str
- Name of an existing MMS profile.
- name str
- Profile group name.
- object_firewall_ strprofilegroup_ id 
- an identifier for the resource with format {{name}}.
- profile_protocol_ stroptions 
- Name of an existing Protocol options profile.
- scopetype str
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctp_filter_ strprofile 
- Name of an existing SCTP filter profile.
- spamfilter_profile str
- Name of an existing Spam filter profile.
- ssh_filter_ strprofile 
- Name of an existing SSH filter profile.
- ssl_ssh_ strprofile 
- Name of an existing SSL SSH profile.
- videofilter_profile str
- Name of an existing VideoFilter profile.
- virtual_patch_ strprofile 
- Name of an existing virtual-patch profile.
- voip_profile str
- Name of an existing VoIP profile.
- waf_profile str
- Name of an existing Web application firewall profile.
- webfilter_profile str
- Name of an existing Web filter profile.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- applicationList String
- Name of an existing Application list.
- avProfile String
- Name of an existing Antivirus profile.
- casbProfile String
- Name of an existing CASB profile.
- cifsProfile String
- Name of an existing CIFS profile.
- diameterFilter StringProfile 
- Name of an existing Diameter filter profile.
- dlpProfile String
- Name of an existing DLP profile.
- dlpSensor String
- Name of an existing DLP sensor.
- dnsfilterProfile String
- Name of an existing DNS filter profile.
- emailfilterProfile String
- Name of an existing email filter profile.
- fileFilter StringProfile 
- Name of an existing file-filter profile.
- icapProfile String
- Name of an existing ICAP profile.
- ipsSensor String
- Name of an existing IPS sensor.
- ipsVoip StringFilter 
- Name of an existing VoIP (ips) profile.
- mmsProfile String
- Name of an existing MMS profile.
- name String
- Profile group name.
- objectFirewall StringProfilegroup Id 
- an identifier for the resource with format {{name}}.
- profileProtocol StringOptions 
- Name of an existing Protocol options profile.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sctpFilter StringProfile 
- Name of an existing SCTP filter profile.
- spamfilterProfile String
- Name of an existing Spam filter profile.
- sshFilter StringProfile 
- Name of an existing SSH filter profile.
- sslSsh StringProfile 
- Name of an existing SSL SSH profile.
- videofilterProfile String
- Name of an existing VideoFilter profile.
- virtualPatch StringProfile 
- Name of an existing virtual-patch profile.
- voipProfile String
- Name of an existing VoIP profile.
- wafProfile String
- Name of an existing Web application firewall profile.
- webfilterProfile String
- Name of an existing Web filter profile.
Import
ObjectFirewall ProfileGroup can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallProfilegroup:ObjectFirewallProfilegroup 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 fortimanagerTerraform Provider.