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

fortimanager.SystemAdminUserAdom

Explore with Pulumi AI

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

    Admin domain.

    This resource is a sub resource for variable adom of resource fortimanager.SystemAdminUser. 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 trnameSystemAdminUser = new fortimanager.SystemAdminUser("trnameSystemAdminUser", {userid: "tfuser22"});
    const trnameSystemAdminUserAdom = new fortimanager.SystemAdminUserAdom("trnameSystemAdminUserAdom", {
        user: trnameSystemAdminUser.userid,
        adomName: "terr-adom",
    }, {
        dependsOn: [trnameSystemAdminUser],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_system_admin_user = fortimanager.SystemAdminUser("trnameSystemAdminUser", userid="tfuser22")
    trname_system_admin_user_adom = fortimanager.SystemAdminUserAdom("trnameSystemAdminUserAdom",
        user=trname_system_admin_user.userid,
        adom_name="terr-adom",
        opts = pulumi.ResourceOptions(depends_on=[trname_system_admin_user]))
    
    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 {
    		trnameSystemAdminUser, err := fortimanager.NewSystemAdminUser(ctx, "trnameSystemAdminUser", &fortimanager.SystemAdminUserArgs{
    			Userid: pulumi.String("tfuser22"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewSystemAdminUserAdom(ctx, "trnameSystemAdminUserAdom", &fortimanager.SystemAdminUserAdomArgs{
    			User:     trnameSystemAdminUser.Userid,
    			AdomName: pulumi.String("terr-adom"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameSystemAdminUser,
    		}))
    		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 trnameSystemAdminUser = new Fortimanager.SystemAdminUser("trnameSystemAdminUser", new()
        {
            Userid = "tfuser22",
        });
    
        var trnameSystemAdminUserAdom = new Fortimanager.SystemAdminUserAdom("trnameSystemAdminUserAdom", new()
        {
            User = trnameSystemAdminUser.Userid,
            AdomName = "terr-adom",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameSystemAdminUser,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemAdminUser;
    import com.pulumi.fortimanager.SystemAdminUserArgs;
    import com.pulumi.fortimanager.SystemAdminUserAdom;
    import com.pulumi.fortimanager.SystemAdminUserAdomArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trnameSystemAdminUser = new SystemAdminUser("trnameSystemAdminUser", SystemAdminUserArgs.builder()
                .userid("tfuser22")
                .build());
    
            var trnameSystemAdminUserAdom = new SystemAdminUserAdom("trnameSystemAdminUserAdom", SystemAdminUserAdomArgs.builder()
                .user(trnameSystemAdminUser.userid())
                .adomName("terr-adom")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameSystemAdminUser)
                    .build());
    
        }
    }
    
    resources:
      trnameSystemAdminUserAdom:
        type: fortimanager:SystemAdminUserAdom
        properties:
          user: ${trnameSystemAdminUser.userid}
          adomName: terr-adom
        options:
          dependsOn:
            - ${trnameSystemAdminUser}
      trnameSystemAdminUser:
        type: fortimanager:SystemAdminUser
        properties:
          userid: tfuser22
    

    Create SystemAdminUserAdom Resource

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

    Constructor syntax

    new SystemAdminUserAdom(name: string, args: SystemAdminUserAdomArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAdminUserAdom(resource_name: str,
                            args: SystemAdminUserAdomArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAdminUserAdom(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            user: Optional[str] = None,
                            adom_name: Optional[str] = None,
                            system_admin_user_adom_id: Optional[str] = None)
    func NewSystemAdminUserAdom(ctx *Context, name string, args SystemAdminUserAdomArgs, opts ...ResourceOption) (*SystemAdminUserAdom, error)
    public SystemAdminUserAdom(string name, SystemAdminUserAdomArgs args, CustomResourceOptions? opts = null)
    public SystemAdminUserAdom(String name, SystemAdminUserAdomArgs args)
    public SystemAdminUserAdom(String name, SystemAdminUserAdomArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemAdminUserAdom
    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 SystemAdminUserAdomArgs
    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 SystemAdminUserAdomArgs
    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 SystemAdminUserAdomArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAdminUserAdomArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAdminUserAdomArgs
    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 systemAdminUserAdomResource = new Fortimanager.SystemAdminUserAdom("systemAdminUserAdomResource", new()
    {
        User = "string",
        AdomName = "string",
        SystemAdminUserAdomId = "string",
    });
    
    example, err := fortimanager.NewSystemAdminUserAdom(ctx, "systemAdminUserAdomResource", &fortimanager.SystemAdminUserAdomArgs{
    User: pulumi.String("string"),
    AdomName: pulumi.String("string"),
    SystemAdminUserAdomId: pulumi.String("string"),
    })
    
    var systemAdminUserAdomResource = new SystemAdminUserAdom("systemAdminUserAdomResource", SystemAdminUserAdomArgs.builder()
        .user("string")
        .adomName("string")
        .systemAdminUserAdomId("string")
        .build());
    
    system_admin_user_adom_resource = fortimanager.SystemAdminUserAdom("systemAdminUserAdomResource",
        user="string",
        adom_name="string",
        system_admin_user_adom_id="string")
    
    const systemAdminUserAdomResource = new fortimanager.SystemAdminUserAdom("systemAdminUserAdomResource", {
        user: "string",
        adomName: "string",
        systemAdminUserAdomId: "string",
    });
    
    type: fortimanager:SystemAdminUserAdom
    properties:
        adomName: string
        systemAdminUserAdomId: string
        user: string
    

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

    User string
    User.
    AdomName string
    Admin domain names.
    SystemAdminUserAdomId string
    an identifier for the resource with format {{adom_name}}.
    User string
    User.
    AdomName string
    Admin domain names.
    SystemAdminUserAdomId string
    an identifier for the resource with format {{adom_name}}.
    user String
    User.
    adomName String
    Admin domain names.
    systemAdminUserAdomId String
    an identifier for the resource with format {{adom_name}}.
    user string
    User.
    adomName string
    Admin domain names.
    systemAdminUserAdomId string
    an identifier for the resource with format {{adom_name}}.
    user str
    User.
    adom_name str
    Admin domain names.
    system_admin_user_adom_id str
    an identifier for the resource with format {{adom_name}}.
    user String
    User.
    adomName String
    Admin domain names.
    systemAdminUserAdomId String
    an identifier for the resource with format {{adom_name}}.

    Outputs

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

    Get an existing SystemAdminUserAdom 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?: SystemAdminUserAdomState, opts?: CustomResourceOptions): SystemAdminUserAdom
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom_name: Optional[str] = None,
            system_admin_user_adom_id: Optional[str] = None,
            user: Optional[str] = None) -> SystemAdminUserAdom
    func GetSystemAdminUserAdom(ctx *Context, name string, id IDInput, state *SystemAdminUserAdomState, opts ...ResourceOption) (*SystemAdminUserAdom, error)
    public static SystemAdminUserAdom Get(string name, Input<string> id, SystemAdminUserAdomState? state, CustomResourceOptions? opts = null)
    public static SystemAdminUserAdom get(String name, Output<String> id, SystemAdminUserAdomState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemAdminUserAdom    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:
    AdomName string
    Admin domain names.
    SystemAdminUserAdomId string
    an identifier for the resource with format {{adom_name}}.
    User string
    User.
    AdomName string
    Admin domain names.
    SystemAdminUserAdomId string
    an identifier for the resource with format {{adom_name}}.
    User string
    User.
    adomName String
    Admin domain names.
    systemAdminUserAdomId String
    an identifier for the resource with format {{adom_name}}.
    user String
    User.
    adomName string
    Admin domain names.
    systemAdminUserAdomId string
    an identifier for the resource with format {{adom_name}}.
    user string
    User.
    adom_name str
    Admin domain names.
    system_admin_user_adom_id str
    an identifier for the resource with format {{adom_name}}.
    user str
    User.
    adomName String
    Admin domain names.
    systemAdminUserAdomId String
    an identifier for the resource with format {{adom_name}}.
    user String
    User.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemAdminUserAdom:SystemAdminUserAdom labelname {{adom_name}}
    

    $ 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