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

fortimanager.ObjectUserVcenter

Explore with Pulumi AI

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

    ObjectUser Vcenter

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • rule: fortimanager.ObjectUserVcenterRule

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectUserVcenter("trname", {
        passwords: ["fortinet"],
        server: "192.168.1.1",
        status: "disable",
        updInterval: 180,
        user: "admin",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectUserVcenter("trname",
        passwords=["fortinet"],
        server="192.168.1.1",
        status="disable",
        upd_interval=180,
        user="admin")
    
    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.NewObjectUserVcenter(ctx, "trname", &fortimanager.ObjectUserVcenterArgs{
    			Passwords: pulumi.StringArray{
    				pulumi.String("fortinet"),
    			},
    			Server:      pulumi.String("192.168.1.1"),
    			Status:      pulumi.String("disable"),
    			UpdInterval: pulumi.Float64(180),
    			User:        pulumi.String("admin"),
    		})
    		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.ObjectUserVcenter("trname", new()
        {
            Passwords = new[]
            {
                "fortinet",
            },
            Server = "192.168.1.1",
            Status = "disable",
            UpdInterval = 180,
            User = "admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectUserVcenter;
    import com.pulumi.fortimanager.ObjectUserVcenterArgs;
    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 ObjectUserVcenter("trname", ObjectUserVcenterArgs.builder()
                .passwords("fortinet")
                .server("192.168.1.1")
                .status("disable")
                .updInterval(180)
                .user("admin")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectUserVcenter
        properties:
          passwords:
            - fortinet
          server: 192.168.1.1
          status: disable
          updInterval: 180
          user: admin
    

    Create ObjectUserVcenter Resource

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

    Constructor syntax

    new ObjectUserVcenter(name: string, args?: ObjectUserVcenterArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserVcenter(resource_name: str,
                          args: Optional[ObjectUserVcenterArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserVcenter(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          adom: Optional[str] = None,
                          dynamic_sort_subtable: Optional[str] = None,
                          name: Optional[str] = None,
                          object_user_vcenter_id: Optional[str] = None,
                          passwords: Optional[Sequence[str]] = None,
                          rules: Optional[Sequence[ObjectUserVcenterRuleArgs]] = None,
                          scopetype: Optional[str] = None,
                          server: Optional[str] = None,
                          status: Optional[str] = None,
                          upd_interval: Optional[float] = None,
                          user: Optional[str] = None)
    func NewObjectUserVcenter(ctx *Context, name string, args *ObjectUserVcenterArgs, opts ...ResourceOption) (*ObjectUserVcenter, error)
    public ObjectUserVcenter(string name, ObjectUserVcenterArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectUserVcenter(String name, ObjectUserVcenterArgs args)
    public ObjectUserVcenter(String name, ObjectUserVcenterArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserVcenter
    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 ObjectUserVcenterArgs
    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 ObjectUserVcenterArgs
    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 ObjectUserVcenterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserVcenterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserVcenterArgs
    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 objectUserVcenterResource = new Fortimanager.ObjectUserVcenter("objectUserVcenterResource", new()
    {
        Adom = "string",
        DynamicSortSubtable = "string",
        Name = "string",
        ObjectUserVcenterId = "string",
        Passwords = new[]
        {
            "string",
        },
        Rules = new[]
        {
            new Fortimanager.Inputs.ObjectUserVcenterRuleArgs
            {
                Name = "string",
                Rule = "string",
            },
        },
        Scopetype = "string",
        Server = "string",
        Status = "string",
        UpdInterval = 0,
        User = "string",
    });
    
    example, err := fortimanager.NewObjectUserVcenter(ctx, "objectUserVcenterResource", &fortimanager.ObjectUserVcenterArgs{
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectUserVcenterId: pulumi.String("string"),
    Passwords: pulumi.StringArray{
    pulumi.String("string"),
    },
    Rules: .ObjectUserVcenterRuleTypeArray{
    &.ObjectUserVcenterRuleTypeArgs{
    Name: pulumi.String("string"),
    Rule: pulumi.String("string"),
    },
    },
    Scopetype: pulumi.String("string"),
    Server: pulumi.String("string"),
    Status: pulumi.String("string"),
    UpdInterval: pulumi.Float64(0),
    User: pulumi.String("string"),
    })
    
    var objectUserVcenterResource = new ObjectUserVcenter("objectUserVcenterResource", ObjectUserVcenterArgs.builder()
        .adom("string")
        .dynamicSortSubtable("string")
        .name("string")
        .objectUserVcenterId("string")
        .passwords("string")
        .rules(ObjectUserVcenterRuleArgs.builder()
            .name("string")
            .rule("string")
            .build())
        .scopetype("string")
        .server("string")
        .status("string")
        .updInterval(0)
        .user("string")
        .build());
    
    object_user_vcenter_resource = fortimanager.ObjectUserVcenter("objectUserVcenterResource",
        adom="string",
        dynamic_sort_subtable="string",
        name="string",
        object_user_vcenter_id="string",
        passwords=["string"],
        rules=[{
            "name": "string",
            "rule": "string",
        }],
        scopetype="string",
        server="string",
        status="string",
        upd_interval=0,
        user="string")
    
    const objectUserVcenterResource = new fortimanager.ObjectUserVcenter("objectUserVcenterResource", {
        adom: "string",
        dynamicSortSubtable: "string",
        name: "string",
        objectUserVcenterId: "string",
        passwords: ["string"],
        rules: [{
            name: "string",
            rule: "string",
        }],
        scopetype: "string",
        server: "string",
        status: "string",
        updInterval: 0,
        user: "string",
    });
    
    type: fortimanager:ObjectUserVcenter
    properties:
        adom: string
        dynamicSortSubtable: string
        name: string
        objectUserVcenterId: string
        passwords:
            - string
        rules:
            - name: string
              rule: string
        scopetype: string
        server: string
        status: string
        updInterval: 0
        user: string
    

    ObjectUserVcenter 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 ObjectUserVcenter 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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectUserVcenterId string
    an identifier for the resource with format {{name}}.
    Passwords List<string>
    Password.
    Rules List<ObjectUserVcenterRule>
    Rule. The structure of rule block is documented below.
    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.
    Server string
    Server.
    Status string
    Status. Valid values: disable, enable.
    UpdInterval double
    Upd_Interval.
    User string
    User.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectUserVcenterId string
    an identifier for the resource with format {{name}}.
    Passwords []string
    Password.
    Rules []ObjectUserVcenterRuleTypeArgs
    Rule. The structure of rule block is documented below.
    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.
    Server string
    Server.
    Status string
    Status. Valid values: disable, enable.
    UpdInterval float64
    Upd_Interval.
    User string
    User.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectUserVcenterId String
    an identifier for the resource with format {{name}}.
    passwords List<String>
    Password.
    rules List<ObjectUserVcenterRule>
    Rule. The structure of rule block is documented below.
    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.
    server String
    Server.
    status String
    Status. Valid values: disable, enable.
    updInterval Double
    Upd_Interval.
    user String
    User.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name string
    Name.
    objectUserVcenterId string
    an identifier for the resource with format {{name}}.
    passwords string[]
    Password.
    rules ObjectUserVcenterRule[]
    Rule. The structure of rule block is documented below.
    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.
    server string
    Server.
    status string
    Status. Valid values: disable, enable.
    updInterval number
    Upd_Interval.
    user string
    User.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name str
    Name.
    object_user_vcenter_id str
    an identifier for the resource with format {{name}}.
    passwords Sequence[str]
    Password.
    rules Sequence[ObjectUserVcenterRuleArgs]
    Rule. The structure of rule block is documented below.
    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.
    server str
    Server.
    status str
    Status. Valid values: disable, enable.
    upd_interval float
    Upd_Interval.
    user str
    User.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectUserVcenterId String
    an identifier for the resource with format {{name}}.
    passwords List<String>
    Password.
    rules List<Property Map>
    Rule. The structure of rule block is documented below.
    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.
    server String
    Server.
    status String
    Status. Valid values: disable, enable.
    updInterval Number
    Upd_Interval.
    user String
    User.

    Outputs

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

    Get an existing ObjectUserVcenter 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?: ObjectUserVcenterState, opts?: CustomResourceOptions): ObjectUserVcenter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            name: Optional[str] = None,
            object_user_vcenter_id: Optional[str] = None,
            passwords: Optional[Sequence[str]] = None,
            rules: Optional[Sequence[ObjectUserVcenterRuleArgs]] = None,
            scopetype: Optional[str] = None,
            server: Optional[str] = None,
            status: Optional[str] = None,
            upd_interval: Optional[float] = None,
            user: Optional[str] = None) -> ObjectUserVcenter
    func GetObjectUserVcenter(ctx *Context, name string, id IDInput, state *ObjectUserVcenterState, opts ...ResourceOption) (*ObjectUserVcenter, error)
    public static ObjectUserVcenter Get(string name, Input<string> id, ObjectUserVcenterState? state, CustomResourceOptions? opts = null)
    public static ObjectUserVcenter get(String name, Output<String> id, ObjectUserVcenterState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserVcenter    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectUserVcenterId string
    an identifier for the resource with format {{name}}.
    Passwords List<string>
    Password.
    Rules List<ObjectUserVcenterRule>
    Rule. The structure of rule block is documented below.
    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.
    Server string
    Server.
    Status string
    Status. Valid values: disable, enable.
    UpdInterval double
    Upd_Interval.
    User string
    User.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectUserVcenterId string
    an identifier for the resource with format {{name}}.
    Passwords []string
    Password.
    Rules []ObjectUserVcenterRuleTypeArgs
    Rule. The structure of rule block is documented below.
    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.
    Server string
    Server.
    Status string
    Status. Valid values: disable, enable.
    UpdInterval float64
    Upd_Interval.
    User string
    User.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectUserVcenterId String
    an identifier for the resource with format {{name}}.
    passwords List<String>
    Password.
    rules List<ObjectUserVcenterRule>
    Rule. The structure of rule block is documented below.
    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.
    server String
    Server.
    status String
    Status. Valid values: disable, enable.
    updInterval Double
    Upd_Interval.
    user String
    User.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name string
    Name.
    objectUserVcenterId string
    an identifier for the resource with format {{name}}.
    passwords string[]
    Password.
    rules ObjectUserVcenterRule[]
    Rule. The structure of rule block is documented below.
    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.
    server string
    Server.
    status string
    Status. Valid values: disable, enable.
    updInterval number
    Upd_Interval.
    user string
    User.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name str
    Name.
    object_user_vcenter_id str
    an identifier for the resource with format {{name}}.
    passwords Sequence[str]
    Password.
    rules Sequence[ObjectUserVcenterRuleArgs]
    Rule. The structure of rule block is documented below.
    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.
    server str
    Server.
    status str
    Status. Valid values: disable, enable.
    upd_interval float
    Upd_Interval.
    user str
    User.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectUserVcenterId String
    an identifier for the resource with format {{name}}.
    passwords List<String>
    Password.
    rules List<Property Map>
    Rule. The structure of rule block is documented below.
    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.
    server String
    Server.
    status String
    Status. Valid values: disable, enable.
    updInterval Number
    Upd_Interval.
    user String
    User.

    Supporting Types

    ObjectUserVcenterRule, ObjectUserVcenterRuleArgs

    Name string
    Name.
    Rule string
    Rule.
    Name string
    Name.
    Rule string
    Rule.
    name String
    Name.
    rule String
    Rule.
    name string
    Name.
    rule string
    Rule.
    name str
    Name.
    rule str
    Rule.
    name String
    Name.
    rule String
    Rule.

    Import

    ObjectUser Vcenter can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

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