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

fortimanager.ObjectLogNpuserverServerinfo

Explore with Pulumi AI

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

    configure server info.

    This resource is a sub resource for variable server_info of resource fortimanager.ObjectLogNpuserver. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectLogNpuserverServerinfo("trname", {
        destPort: 60,
        fosid: 1,
        ipFamily: "v4",
        ipv4Server: "34.5.6.9",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectLogNpuserverServerinfo("trname",
        dest_port=60,
        fosid=1,
        ip_family="v4",
        ipv4_server="34.5.6.9")
    
    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.NewObjectLogNpuserverServerinfo(ctx, "trname", &fortimanager.ObjectLogNpuserverServerinfoArgs{
    			DestPort:   pulumi.Float64(60),
    			Fosid:      pulumi.Float64(1),
    			IpFamily:   pulumi.String("v4"),
    			Ipv4Server: pulumi.String("34.5.6.9"),
    		})
    		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.ObjectLogNpuserverServerinfo("trname", new()
        {
            DestPort = 60,
            Fosid = 1,
            IpFamily = "v4",
            Ipv4Server = "34.5.6.9",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectLogNpuserverServerinfo;
    import com.pulumi.fortimanager.ObjectLogNpuserverServerinfoArgs;
    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 ObjectLogNpuserverServerinfo("trname", ObjectLogNpuserverServerinfoArgs.builder()
                .destPort(60)
                .fosid(1)
                .ipFamily("v4")
                .ipv4Server("34.5.6.9")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectLogNpuserverServerinfo
        properties:
          destPort: 60
          fosid: 1
          ipFamily: v4
          ipv4Server: 34.5.6.9
    

    Create ObjectLogNpuserverServerinfo Resource

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

    Constructor syntax

    new ObjectLogNpuserverServerinfo(name: string, args?: ObjectLogNpuserverServerinfoArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectLogNpuserverServerinfo(resource_name: str,
                                     args: Optional[ObjectLogNpuserverServerinfoArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectLogNpuserverServerinfo(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     adom: Optional[str] = None,
                                     dest_port: Optional[float] = None,
                                     fosid: Optional[float] = None,
                                     ip_family: Optional[str] = None,
                                     ipv4_server: Optional[str] = None,
                                     ipv6_server: Optional[str] = None,
                                     log_transport: Optional[str] = None,
                                     object_log_npuserver_serverinfo_id: Optional[str] = None,
                                     scopetype: Optional[str] = None,
                                     source_port: Optional[float] = None,
                                     template_tx_timeout: Optional[float] = None,
                                     vdom: Optional[str] = None)
    func NewObjectLogNpuserverServerinfo(ctx *Context, name string, args *ObjectLogNpuserverServerinfoArgs, opts ...ResourceOption) (*ObjectLogNpuserverServerinfo, error)
    public ObjectLogNpuserverServerinfo(string name, ObjectLogNpuserverServerinfoArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectLogNpuserverServerinfo(String name, ObjectLogNpuserverServerinfoArgs args)
    public ObjectLogNpuserverServerinfo(String name, ObjectLogNpuserverServerinfoArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectLogNpuserverServerinfo
    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 ObjectLogNpuserverServerinfoArgs
    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 ObjectLogNpuserverServerinfoArgs
    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 ObjectLogNpuserverServerinfoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectLogNpuserverServerinfoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectLogNpuserverServerinfoArgs
    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 objectLogNpuserverServerinfoResource = new Fortimanager.ObjectLogNpuserverServerinfo("objectLogNpuserverServerinfoResource", new()
    {
        Adom = "string",
        DestPort = 0,
        Fosid = 0,
        IpFamily = "string",
        Ipv4Server = "string",
        Ipv6Server = "string",
        LogTransport = "string",
        ObjectLogNpuserverServerinfoId = "string",
        Scopetype = "string",
        SourcePort = 0,
        TemplateTxTimeout = 0,
        Vdom = "string",
    });
    
    example, err := fortimanager.NewObjectLogNpuserverServerinfo(ctx, "objectLogNpuserverServerinfoResource", &fortimanager.ObjectLogNpuserverServerinfoArgs{
    Adom: pulumi.String("string"),
    DestPort: pulumi.Float64(0),
    Fosid: pulumi.Float64(0),
    IpFamily: pulumi.String("string"),
    Ipv4Server: pulumi.String("string"),
    Ipv6Server: pulumi.String("string"),
    LogTransport: pulumi.String("string"),
    ObjectLogNpuserverServerinfoId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SourcePort: pulumi.Float64(0),
    TemplateTxTimeout: pulumi.Float64(0),
    Vdom: pulumi.String("string"),
    })
    
    var objectLogNpuserverServerinfoResource = new ObjectLogNpuserverServerinfo("objectLogNpuserverServerinfoResource", ObjectLogNpuserverServerinfoArgs.builder()
        .adom("string")
        .destPort(0)
        .fosid(0)
        .ipFamily("string")
        .ipv4Server("string")
        .ipv6Server("string")
        .logTransport("string")
        .objectLogNpuserverServerinfoId("string")
        .scopetype("string")
        .sourcePort(0)
        .templateTxTimeout(0)
        .vdom("string")
        .build());
    
    object_log_npuserver_serverinfo_resource = fortimanager.ObjectLogNpuserverServerinfo("objectLogNpuserverServerinfoResource",
        adom="string",
        dest_port=0,
        fosid=0,
        ip_family="string",
        ipv4_server="string",
        ipv6_server="string",
        log_transport="string",
        object_log_npuserver_serverinfo_id="string",
        scopetype="string",
        source_port=0,
        template_tx_timeout=0,
        vdom="string")
    
    const objectLogNpuserverServerinfoResource = new fortimanager.ObjectLogNpuserverServerinfo("objectLogNpuserverServerinfoResource", {
        adom: "string",
        destPort: 0,
        fosid: 0,
        ipFamily: "string",
        ipv4Server: "string",
        ipv6Server: "string",
        logTransport: "string",
        objectLogNpuserverServerinfoId: "string",
        scopetype: "string",
        sourcePort: 0,
        templateTxTimeout: 0,
        vdom: "string",
    });
    
    type: fortimanager:ObjectLogNpuserverServerinfo
    properties:
        adom: string
        destPort: 0
        fosid: 0
        ipFamily: string
        ipv4Server: string
        ipv6Server: string
        logTransport: string
        objectLogNpuserverServerinfoId: string
        scopetype: string
        sourcePort: 0
        templateTxTimeout: 0
        vdom: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DestPort double
    set the dest port for the log packet
    Fosid double
    server id.
    IpFamily string
    set the version the IP address Valid values: v4, v6.
    Ipv4Server string
    set the IPv4 address for the log server
    Ipv6Server string
    set the IPv6 address for the log server
    LogTransport string
    set transport protocol Valid values: udp, tcp.
    ObjectLogNpuserverServerinfoId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SourcePort double
    set the source port for the log packet
    TemplateTxTimeout double
    set the template tx timeout
    Vdom string
    Interface connected to the log server is in this virtual domain (VDOM).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DestPort float64
    set the dest port for the log packet
    Fosid float64
    server id.
    IpFamily string
    set the version the IP address Valid values: v4, v6.
    Ipv4Server string
    set the IPv4 address for the log server
    Ipv6Server string
    set the IPv6 address for the log server
    LogTransport string
    set transport protocol Valid values: udp, tcp.
    ObjectLogNpuserverServerinfoId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SourcePort float64
    set the source port for the log packet
    TemplateTxTimeout float64
    set the template tx timeout
    Vdom string
    Interface connected to the log server is in this virtual domain (VDOM).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    destPort Double
    set the dest port for the log packet
    fosid Double
    server id.
    ipFamily String
    set the version the IP address Valid values: v4, v6.
    ipv4Server String
    set the IPv4 address for the log server
    ipv6Server String
    set the IPv6 address for the log server
    logTransport String
    set transport protocol Valid values: udp, tcp.
    objectLogNpuserverServerinfoId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sourcePort Double
    set the source port for the log packet
    templateTxTimeout Double
    set the template tx timeout
    vdom String
    Interface connected to the log server is in this virtual domain (VDOM).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    destPort number
    set the dest port for the log packet
    fosid number
    server id.
    ipFamily string
    set the version the IP address Valid values: v4, v6.
    ipv4Server string
    set the IPv4 address for the log server
    ipv6Server string
    set the IPv6 address for the log server
    logTransport string
    set transport protocol Valid values: udp, tcp.
    objectLogNpuserverServerinfoId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sourcePort number
    set the source port for the log packet
    templateTxTimeout number
    set the template tx timeout
    vdom string
    Interface connected to the log server is in this virtual domain (VDOM).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dest_port float
    set the dest port for the log packet
    fosid float
    server id.
    ip_family str
    set the version the IP address Valid values: v4, v6.
    ipv4_server str
    set the IPv4 address for the log server
    ipv6_server str
    set the IPv6 address for the log server
    log_transport str
    set transport protocol Valid values: udp, tcp.
    object_log_npuserver_serverinfo_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source_port float
    set the source port for the log packet
    template_tx_timeout float
    set the template tx timeout
    vdom str
    Interface connected to the log server is in this virtual domain (VDOM).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    destPort Number
    set the dest port for the log packet
    fosid Number
    server id.
    ipFamily String
    set the version the IP address Valid values: v4, v6.
    ipv4Server String
    set the IPv4 address for the log server
    ipv6Server String
    set the IPv6 address for the log server
    logTransport String
    set transport protocol Valid values: udp, tcp.
    objectLogNpuserverServerinfoId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sourcePort Number
    set the source port for the log packet
    templateTxTimeout Number
    set the template tx timeout
    vdom String
    Interface connected to the log server is in this virtual domain (VDOM).

    Outputs

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

    Get an existing ObjectLogNpuserverServerinfo 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?: ObjectLogNpuserverServerinfoState, opts?: CustomResourceOptions): ObjectLogNpuserverServerinfo
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dest_port: Optional[float] = None,
            fosid: Optional[float] = None,
            ip_family: Optional[str] = None,
            ipv4_server: Optional[str] = None,
            ipv6_server: Optional[str] = None,
            log_transport: Optional[str] = None,
            object_log_npuserver_serverinfo_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            source_port: Optional[float] = None,
            template_tx_timeout: Optional[float] = None,
            vdom: Optional[str] = None) -> ObjectLogNpuserverServerinfo
    func GetObjectLogNpuserverServerinfo(ctx *Context, name string, id IDInput, state *ObjectLogNpuserverServerinfoState, opts ...ResourceOption) (*ObjectLogNpuserverServerinfo, error)
    public static ObjectLogNpuserverServerinfo Get(string name, Input<string> id, ObjectLogNpuserverServerinfoState? state, CustomResourceOptions? opts = null)
    public static ObjectLogNpuserverServerinfo get(String name, Output<String> id, ObjectLogNpuserverServerinfoState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectLogNpuserverServerinfo    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.
    DestPort double
    set the dest port for the log packet
    Fosid double
    server id.
    IpFamily string
    set the version the IP address Valid values: v4, v6.
    Ipv4Server string
    set the IPv4 address for the log server
    Ipv6Server string
    set the IPv6 address for the log server
    LogTransport string
    set transport protocol Valid values: udp, tcp.
    ObjectLogNpuserverServerinfoId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SourcePort double
    set the source port for the log packet
    TemplateTxTimeout double
    set the template tx timeout
    Vdom string
    Interface connected to the log server is in this virtual domain (VDOM).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DestPort float64
    set the dest port for the log packet
    Fosid float64
    server id.
    IpFamily string
    set the version the IP address Valid values: v4, v6.
    Ipv4Server string
    set the IPv4 address for the log server
    Ipv6Server string
    set the IPv6 address for the log server
    LogTransport string
    set transport protocol Valid values: udp, tcp.
    ObjectLogNpuserverServerinfoId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SourcePort float64
    set the source port for the log packet
    TemplateTxTimeout float64
    set the template tx timeout
    Vdom string
    Interface connected to the log server is in this virtual domain (VDOM).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    destPort Double
    set the dest port for the log packet
    fosid Double
    server id.
    ipFamily String
    set the version the IP address Valid values: v4, v6.
    ipv4Server String
    set the IPv4 address for the log server
    ipv6Server String
    set the IPv6 address for the log server
    logTransport String
    set transport protocol Valid values: udp, tcp.
    objectLogNpuserverServerinfoId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sourcePort Double
    set the source port for the log packet
    templateTxTimeout Double
    set the template tx timeout
    vdom String
    Interface connected to the log server is in this virtual domain (VDOM).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    destPort number
    set the dest port for the log packet
    fosid number
    server id.
    ipFamily string
    set the version the IP address Valid values: v4, v6.
    ipv4Server string
    set the IPv4 address for the log server
    ipv6Server string
    set the IPv6 address for the log server
    logTransport string
    set transport protocol Valid values: udp, tcp.
    objectLogNpuserverServerinfoId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sourcePort number
    set the source port for the log packet
    templateTxTimeout number
    set the template tx timeout
    vdom string
    Interface connected to the log server is in this virtual domain (VDOM).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dest_port float
    set the dest port for the log packet
    fosid float
    server id.
    ip_family str
    set the version the IP address Valid values: v4, v6.
    ipv4_server str
    set the IPv4 address for the log server
    ipv6_server str
    set the IPv6 address for the log server
    log_transport str
    set transport protocol Valid values: udp, tcp.
    object_log_npuserver_serverinfo_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source_port float
    set the source port for the log packet
    template_tx_timeout float
    set the template tx timeout
    vdom str
    Interface connected to the log server is in this virtual domain (VDOM).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    destPort Number
    set the dest port for the log packet
    fosid Number
    server id.
    ipFamily String
    set the version the IP address Valid values: v4, v6.
    ipv4Server String
    set the IPv4 address for the log server
    ipv6Server String
    set the IPv6 address for the log server
    logTransport String
    set transport protocol Valid values: udp, tcp.
    objectLogNpuserverServerinfoId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sourcePort Number
    set the source port for the log packet
    templateTxTimeout Number
    set the template tx timeout
    vdom String
    Interface connected to the log server is in this virtual domain (VDOM).

    Import

    ObjectLog NpuServerServerInfo can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectLogNpuserverServerinfo:ObjectLogNpuserverServerinfo 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev