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

fortimanager.SystemLogMaildomain

Explore with Pulumi AI

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

    FortiMail domain setting.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemLogMaildomain("trname", {
        domain: "terraform",
        fosid: 1,
        vdom: "terraform",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemLogMaildomain("trname",
        domain="terraform",
        fosid=1,
        vdom="terraform")
    
    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.NewSystemLogMaildomain(ctx, "trname", &fortimanager.SystemLogMaildomainArgs{
    			Domain: pulumi.String("terraform"),
    			Fosid:  pulumi.Float64(1),
    			Vdom:   pulumi.String("terraform"),
    		})
    		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.SystemLogMaildomain("trname", new()
        {
            Domain = "terraform",
            Fosid = 1,
            Vdom = "terraform",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemLogMaildomain;
    import com.pulumi.fortimanager.SystemLogMaildomainArgs;
    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 SystemLogMaildomain("trname", SystemLogMaildomainArgs.builder()
                .domain("terraform")
                .fosid("1")
                .vdom("terraform")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemLogMaildomain
        properties:
          domain: terraform
          fosid: '1'
          vdom: terraform
    

    Create SystemLogMaildomain Resource

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

    Constructor syntax

    new SystemLogMaildomain(name: string, args?: SystemLogMaildomainArgs, opts?: CustomResourceOptions);
    @overload
    def SystemLogMaildomain(resource_name: str,
                            args: Optional[SystemLogMaildomainArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemLogMaildomain(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            devices: Optional[str] = None,
                            domain: Optional[str] = None,
                            fosid: Optional[float] = None,
                            system_log_maildomain_id: Optional[str] = None,
                            vdom: Optional[str] = None)
    func NewSystemLogMaildomain(ctx *Context, name string, args *SystemLogMaildomainArgs, opts ...ResourceOption) (*SystemLogMaildomain, error)
    public SystemLogMaildomain(string name, SystemLogMaildomainArgs? args = null, CustomResourceOptions? opts = null)
    public SystemLogMaildomain(String name, SystemLogMaildomainArgs args)
    public SystemLogMaildomain(String name, SystemLogMaildomainArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemLogMaildomain
    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 SystemLogMaildomainArgs
    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 SystemLogMaildomainArgs
    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 SystemLogMaildomainArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemLogMaildomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemLogMaildomainArgs
    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 systemLogMaildomainResource = new Fortimanager.SystemLogMaildomain("systemLogMaildomainResource", new()
    {
        Devices = "string",
        Domain = "string",
        Fosid = 0,
        SystemLogMaildomainId = "string",
        Vdom = "string",
    });
    
    example, err := fortimanager.NewSystemLogMaildomain(ctx, "systemLogMaildomainResource", &fortimanager.SystemLogMaildomainArgs{
    Devices: pulumi.String("string"),
    Domain: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    SystemLogMaildomainId: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    })
    
    var systemLogMaildomainResource = new SystemLogMaildomain("systemLogMaildomainResource", SystemLogMaildomainArgs.builder()
        .devices("string")
        .domain("string")
        .fosid(0)
        .systemLogMaildomainId("string")
        .vdom("string")
        .build());
    
    system_log_maildomain_resource = fortimanager.SystemLogMaildomain("systemLogMaildomainResource",
        devices="string",
        domain="string",
        fosid=0,
        system_log_maildomain_id="string",
        vdom="string")
    
    const systemLogMaildomainResource = new fortimanager.SystemLogMaildomain("systemLogMaildomainResource", {
        devices: "string",
        domain: "string",
        fosid: 0,
        systemLogMaildomainId: "string",
        vdom: "string",
    });
    
    type: fortimanager:SystemLogMaildomain
    properties:
        devices: string
        domain: string
        fosid: 0
        systemLogMaildomainId: string
        vdom: string
    

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

    Devices string
    Devices for domain to vdom mapping
    Domain string
    FortiMail domain
    Fosid double
    ID of FortiMail domain.
    SystemLogMaildomainId string
    an identifier for the resource with format {{fosid}}.
    Vdom string
    Virtual Domain name mapping to FortiMail domain
    Devices string
    Devices for domain to vdom mapping
    Domain string
    FortiMail domain
    Fosid float64
    ID of FortiMail domain.
    SystemLogMaildomainId string
    an identifier for the resource with format {{fosid}}.
    Vdom string
    Virtual Domain name mapping to FortiMail domain
    devices String
    Devices for domain to vdom mapping
    domain String
    FortiMail domain
    fosid Double
    ID of FortiMail domain.
    systemLogMaildomainId String
    an identifier for the resource with format {{fosid}}.
    vdom String
    Virtual Domain name mapping to FortiMail domain
    devices string
    Devices for domain to vdom mapping
    domain string
    FortiMail domain
    fosid number
    ID of FortiMail domain.
    systemLogMaildomainId string
    an identifier for the resource with format {{fosid}}.
    vdom string
    Virtual Domain name mapping to FortiMail domain
    devices str
    Devices for domain to vdom mapping
    domain str
    FortiMail domain
    fosid float
    ID of FortiMail domain.
    system_log_maildomain_id str
    an identifier for the resource with format {{fosid}}.
    vdom str
    Virtual Domain name mapping to FortiMail domain
    devices String
    Devices for domain to vdom mapping
    domain String
    FortiMail domain
    fosid Number
    ID of FortiMail domain.
    systemLogMaildomainId String
    an identifier for the resource with format {{fosid}}.
    vdom String
    Virtual Domain name mapping to FortiMail domain

    Outputs

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

    Get an existing SystemLogMaildomain 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?: SystemLogMaildomainState, opts?: CustomResourceOptions): SystemLogMaildomain
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            devices: Optional[str] = None,
            domain: Optional[str] = None,
            fosid: Optional[float] = None,
            system_log_maildomain_id: Optional[str] = None,
            vdom: Optional[str] = None) -> SystemLogMaildomain
    func GetSystemLogMaildomain(ctx *Context, name string, id IDInput, state *SystemLogMaildomainState, opts ...ResourceOption) (*SystemLogMaildomain, error)
    public static SystemLogMaildomain Get(string name, Input<string> id, SystemLogMaildomainState? state, CustomResourceOptions? opts = null)
    public static SystemLogMaildomain get(String name, Output<String> id, SystemLogMaildomainState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemLogMaildomain    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:
    Devices string
    Devices for domain to vdom mapping
    Domain string
    FortiMail domain
    Fosid double
    ID of FortiMail domain.
    SystemLogMaildomainId string
    an identifier for the resource with format {{fosid}}.
    Vdom string
    Virtual Domain name mapping to FortiMail domain
    Devices string
    Devices for domain to vdom mapping
    Domain string
    FortiMail domain
    Fosid float64
    ID of FortiMail domain.
    SystemLogMaildomainId string
    an identifier for the resource with format {{fosid}}.
    Vdom string
    Virtual Domain name mapping to FortiMail domain
    devices String
    Devices for domain to vdom mapping
    domain String
    FortiMail domain
    fosid Double
    ID of FortiMail domain.
    systemLogMaildomainId String
    an identifier for the resource with format {{fosid}}.
    vdom String
    Virtual Domain name mapping to FortiMail domain
    devices string
    Devices for domain to vdom mapping
    domain string
    FortiMail domain
    fosid number
    ID of FortiMail domain.
    systemLogMaildomainId string
    an identifier for the resource with format {{fosid}}.
    vdom string
    Virtual Domain name mapping to FortiMail domain
    devices str
    Devices for domain to vdom mapping
    domain str
    FortiMail domain
    fosid float
    ID of FortiMail domain.
    system_log_maildomain_id str
    an identifier for the resource with format {{fosid}}.
    vdom str
    Virtual Domain name mapping to FortiMail domain
    devices String
    Devices for domain to vdom mapping
    domain String
    FortiMail domain
    fosid Number
    ID of FortiMail domain.
    systemLogMaildomainId String
    an identifier for the resource with format {{fosid}}.
    vdom String
    Virtual Domain name mapping to FortiMail domain

    Import

    System LogMailDomain can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemLogMaildomain:SystemLogMaildomain labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    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