1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystempDeviceProfileFortianalyzer
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.SystempDeviceProfileFortianalyzer

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Systemp DeviceProfileFortianalyzer

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystempDeviceProfileFortianalyzer("trname", {
        devprof: "default",
        target: "others",
        targetIp: "10.160.88.186",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystempDeviceProfileFortianalyzer("trname",
        devprof="default",
        target="others",
        target_ip="10.160.88.186")
    
    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.NewSystempDeviceProfileFortianalyzer(ctx, "trname", &fortimanager.SystempDeviceProfileFortianalyzerArgs{
    			Devprof:  pulumi.String("default"),
    			Target:   pulumi.String("others"),
    			TargetIp: pulumi.String("10.160.88.186"),
    		})
    		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.SystempDeviceProfileFortianalyzer("trname", new()
        {
            Devprof = "default",
            Target = "others",
            TargetIp = "10.160.88.186",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystempDeviceProfileFortianalyzer;
    import com.pulumi.fortimanager.SystempDeviceProfileFortianalyzerArgs;
    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 SystempDeviceProfileFortianalyzer("trname", SystempDeviceProfileFortianalyzerArgs.builder()
                .devprof("default")
                .target("others")
                .targetIp("10.160.88.186")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystempDeviceProfileFortianalyzer
        properties:
          devprof: default
          target: others
          targetIp: 10.160.88.186
    

    Create SystempDeviceProfileFortianalyzer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SystempDeviceProfileFortianalyzer(name: string, args: SystempDeviceProfileFortianalyzerArgs, opts?: CustomResourceOptions);
    @overload
    def SystempDeviceProfileFortianalyzer(resource_name: str,
                                          args: SystempDeviceProfileFortianalyzerArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystempDeviceProfileFortianalyzer(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          devprof: Optional[str] = None,
                                          adom: Optional[str] = None,
                                          managed_sn: Optional[str] = None,
                                          scopetype: Optional[str] = None,
                                          systemp_device_profile_fortianalyzer_id: Optional[str] = None,
                                          target: Optional[str] = None,
                                          target_ip: Optional[str] = None,
                                          target_sns: Optional[Sequence[str]] = None)
    func NewSystempDeviceProfileFortianalyzer(ctx *Context, name string, args SystempDeviceProfileFortianalyzerArgs, opts ...ResourceOption) (*SystempDeviceProfileFortianalyzer, error)
    public SystempDeviceProfileFortianalyzer(string name, SystempDeviceProfileFortianalyzerArgs args, CustomResourceOptions? opts = null)
    public SystempDeviceProfileFortianalyzer(String name, SystempDeviceProfileFortianalyzerArgs args)
    public SystempDeviceProfileFortianalyzer(String name, SystempDeviceProfileFortianalyzerArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystempDeviceProfileFortianalyzer
    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 SystempDeviceProfileFortianalyzerArgs
    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 SystempDeviceProfileFortianalyzerArgs
    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 SystempDeviceProfileFortianalyzerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystempDeviceProfileFortianalyzerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystempDeviceProfileFortianalyzerArgs
    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 systempDeviceProfileFortianalyzerResource = new Fortimanager.SystempDeviceProfileFortianalyzer("systempDeviceProfileFortianalyzerResource", new()
    {
        Devprof = "string",
        Adom = "string",
        ManagedSn = "string",
        Scopetype = "string",
        SystempDeviceProfileFortianalyzerId = "string",
        Target = "string",
        TargetIp = "string",
        TargetSns = new[]
        {
            "string",
        },
    });
    
    example, err := fortimanager.NewSystempDeviceProfileFortianalyzer(ctx, "systempDeviceProfileFortianalyzerResource", &fortimanager.SystempDeviceProfileFortianalyzerArgs{
    Devprof: pulumi.String("string"),
    Adom: pulumi.String("string"),
    ManagedSn: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SystempDeviceProfileFortianalyzerId: pulumi.String("string"),
    Target: pulumi.String("string"),
    TargetIp: pulumi.String("string"),
    TargetSns: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var systempDeviceProfileFortianalyzerResource = new SystempDeviceProfileFortianalyzer("systempDeviceProfileFortianalyzerResource", SystempDeviceProfileFortianalyzerArgs.builder()
        .devprof("string")
        .adom("string")
        .managedSn("string")
        .scopetype("string")
        .systempDeviceProfileFortianalyzerId("string")
        .target("string")
        .targetIp("string")
        .targetSns("string")
        .build());
    
    systemp_device_profile_fortianalyzer_resource = fortimanager.SystempDeviceProfileFortianalyzer("systempDeviceProfileFortianalyzerResource",
        devprof="string",
        adom="string",
        managed_sn="string",
        scopetype="string",
        systemp_device_profile_fortianalyzer_id="string",
        target="string",
        target_ip="string",
        target_sns=["string"])
    
    const systempDeviceProfileFortianalyzerResource = new fortimanager.SystempDeviceProfileFortianalyzer("systempDeviceProfileFortianalyzerResource", {
        devprof: "string",
        adom: "string",
        managedSn: "string",
        scopetype: "string",
        systempDeviceProfileFortianalyzerId: "string",
        target: "string",
        targetIp: "string",
        targetSns: ["string"],
    });
    
    type: fortimanager:SystempDeviceProfileFortianalyzer
    properties:
        adom: string
        devprof: string
        managedSn: string
        scopetype: string
        systempDeviceProfileFortianalyzerId: string
        target: string
        targetIp: string
        targetSns:
            - string
    

    SystempDeviceProfileFortianalyzer 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 SystempDeviceProfileFortianalyzer resource accepts the following input properties:

    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ManagedSn string
    Managed-Sn.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortianalyzerId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, this-fmg, managed, others.
    TargetIp string
    Target-Ip.
    TargetSns List<string>
    Target-Sn.
    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ManagedSn string
    Managed-Sn.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortianalyzerId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, this-fmg, managed, others.
    TargetIp string
    Target-Ip.
    TargetSns []string
    Target-Sn.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    managedSn String
    Managed-Sn.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortianalyzerId String
    an identifier for the resource.
    target String
    Target. Valid values: none, this-fmg, managed, others.
    targetIp String
    Target-Ip.
    targetSns List<String>
    Target-Sn.
    devprof string
    Devprof.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    managedSn string
    Managed-Sn.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortianalyzerId string
    an identifier for the resource.
    target string
    Target. Valid values: none, this-fmg, managed, others.
    targetIp string
    Target-Ip.
    targetSns string[]
    Target-Sn.
    devprof str
    Devprof.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    managed_sn str
    Managed-Sn.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systemp_device_profile_fortianalyzer_id str
    an identifier for the resource.
    target str
    Target. Valid values: none, this-fmg, managed, others.
    target_ip str
    Target-Ip.
    target_sns Sequence[str]
    Target-Sn.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    managedSn String
    Managed-Sn.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortianalyzerId String
    an identifier for the resource.
    target String
    Target. Valid values: none, this-fmg, managed, others.
    targetIp String
    Target-Ip.
    targetSns List<String>
    Target-Sn.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SystempDeviceProfileFortianalyzer 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 SystempDeviceProfileFortianalyzer Resource

    Get an existing SystempDeviceProfileFortianalyzer 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?: SystempDeviceProfileFortianalyzerState, opts?: CustomResourceOptions): SystempDeviceProfileFortianalyzer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            devprof: Optional[str] = None,
            managed_sn: Optional[str] = None,
            scopetype: Optional[str] = None,
            systemp_device_profile_fortianalyzer_id: Optional[str] = None,
            target: Optional[str] = None,
            target_ip: Optional[str] = None,
            target_sns: Optional[Sequence[str]] = None) -> SystempDeviceProfileFortianalyzer
    func GetSystempDeviceProfileFortianalyzer(ctx *Context, name string, id IDInput, state *SystempDeviceProfileFortianalyzerState, opts ...ResourceOption) (*SystempDeviceProfileFortianalyzer, error)
    public static SystempDeviceProfileFortianalyzer Get(string name, Input<string> id, SystempDeviceProfileFortianalyzerState? state, CustomResourceOptions? opts = null)
    public static SystempDeviceProfileFortianalyzer get(String name, Output<String> id, SystempDeviceProfileFortianalyzerState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystempDeviceProfileFortianalyzer    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Devprof string
    Devprof.
    ManagedSn string
    Managed-Sn.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortianalyzerId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, this-fmg, managed, others.
    TargetIp string
    Target-Ip.
    TargetSns List<string>
    Target-Sn.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Devprof string
    Devprof.
    ManagedSn string
    Managed-Sn.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortianalyzerId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, this-fmg, managed, others.
    TargetIp string
    Target-Ip.
    TargetSns []string
    Target-Sn.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    devprof String
    Devprof.
    managedSn String
    Managed-Sn.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortianalyzerId String
    an identifier for the resource.
    target String
    Target. Valid values: none, this-fmg, managed, others.
    targetIp String
    Target-Ip.
    targetSns List<String>
    Target-Sn.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    devprof string
    Devprof.
    managedSn string
    Managed-Sn.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortianalyzerId string
    an identifier for the resource.
    target string
    Target. Valid values: none, this-fmg, managed, others.
    targetIp string
    Target-Ip.
    targetSns string[]
    Target-Sn.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    devprof str
    Devprof.
    managed_sn str
    Managed-Sn.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systemp_device_profile_fortianalyzer_id str
    an identifier for the resource.
    target str
    Target. Valid values: none, this-fmg, managed, others.
    target_ip str
    Target-Ip.
    target_sns Sequence[str]
    Target-Sn.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    devprof String
    Devprof.
    managedSn String
    Managed-Sn.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortianalyzerId String
    an identifier for the resource.
    target String
    Target. Valid values: none, this-fmg, managed, others.
    targetIp String
    Target-Ip.
    targetSns List<String>
    Target-Sn.

    Import

    Systemp DeviceProfileFortianalyzer can be imported using any of these accepted formats:

    Set import_options = [“devprof=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systempDeviceProfileFortianalyzer:SystempDeviceProfileFortianalyzer labelname SystempDeviceProfileFortianalyzer
    

    $ 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev