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

fortimanager.ObjectUserVcenterRule

Explore with Pulumi AI

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

    ObjectUser VcenterRule

    This resource is a sub resource for variable rule of resource fortimanager.ObjectUserVcenter. 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 trnameObjectUserVcenter = new fortimanager.ObjectUserVcenter("trnameObjectUserVcenter", {
        server: "192.168.1.1",
        user: "admin",
    });
    const trnameObjectUserVcenterRule = new fortimanager.ObjectUserVcenterRule("trnameObjectUserVcenterRule", {vcenter: trnameObjectUserVcenter.name}, {
        dependsOn: [trnameObjectUserVcenter],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_user_vcenter = fortimanager.ObjectUserVcenter("trnameObjectUserVcenter",
        server="192.168.1.1",
        user="admin")
    trname_object_user_vcenter_rule = fortimanager.ObjectUserVcenterRule("trnameObjectUserVcenterRule", vcenter=trname_object_user_vcenter.name,
    opts = pulumi.ResourceOptions(depends_on=[trname_object_user_vcenter]))
    
    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 {
    		trnameObjectUserVcenter, err := fortimanager.NewObjectUserVcenter(ctx, "trnameObjectUserVcenter", &fortimanager.ObjectUserVcenterArgs{
    			Server: pulumi.String("192.168.1.1"),
    			User:   pulumi.String("admin"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectUserVcenterRule(ctx, "trnameObjectUserVcenterRule", &fortimanager.ObjectUserVcenterRuleArgs{
    			Vcenter: trnameObjectUserVcenter.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectUserVcenter,
    		}))
    		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 trnameObjectUserVcenter = new Fortimanager.ObjectUserVcenter("trnameObjectUserVcenter", new()
        {
            Server = "192.168.1.1",
            User = "admin",
        });
    
        var trnameObjectUserVcenterRule = new Fortimanager.ObjectUserVcenterRule("trnameObjectUserVcenterRule", new()
        {
            Vcenter = trnameObjectUserVcenter.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectUserVcenter,
            },
        });
    
    });
    
    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 com.pulumi.fortimanager.ObjectUserVcenterRule;
    import com.pulumi.fortimanager.ObjectUserVcenterRuleArgs;
    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 trnameObjectUserVcenter = new ObjectUserVcenter("trnameObjectUserVcenter", ObjectUserVcenterArgs.builder()
                .server("192.168.1.1")
                .user("admin")
                .build());
    
            var trnameObjectUserVcenterRule = new ObjectUserVcenterRule("trnameObjectUserVcenterRule", ObjectUserVcenterRuleArgs.builder()
                .vcenter(trnameObjectUserVcenter.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectUserVcenter)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectUserVcenterRule:
        type: fortimanager:ObjectUserVcenterRule
        properties:
          vcenter: ${trnameObjectUserVcenter.name}
        options:
          dependsOn:
            - ${trnameObjectUserVcenter}
      trnameObjectUserVcenter:
        type: fortimanager:ObjectUserVcenter
        properties:
          server: 192.168.1.1
          user: admin
    

    Create ObjectUserVcenterRule Resource

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

    Constructor syntax

    new ObjectUserVcenterRule(name: string, args: ObjectUserVcenterRuleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserVcenterRule(resource_name: str,
                              args: ObjectUserVcenterRuleInitArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserVcenterRule(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              vcenter: Optional[str] = None,
                              adom: Optional[str] = None,
                              name: Optional[str] = None,
                              object_user_vcenter_rule_id: Optional[str] = None,
                              rule: Optional[str] = None,
                              scopetype: Optional[str] = None)
    func NewObjectUserVcenterRule(ctx *Context, name string, args ObjectUserVcenterRuleArgs, opts ...ResourceOption) (*ObjectUserVcenterRule, error)
    public ObjectUserVcenterRule(string name, ObjectUserVcenterRuleArgs args, CustomResourceOptions? opts = null)
    public ObjectUserVcenterRule(String name, ObjectUserVcenterRuleArgs args)
    public ObjectUserVcenterRule(String name, ObjectUserVcenterRuleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserVcenterRule
    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 ObjectUserVcenterRuleArgs
    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 ObjectUserVcenterRuleInitArgs
    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 ObjectUserVcenterRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserVcenterRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserVcenterRuleArgs
    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 objectUserVcenterRuleResource = new Fortimanager.ObjectUserVcenterRule("objectUserVcenterRuleResource", new()
    {
        Vcenter = "string",
        Adom = "string",
        Name = "string",
        ObjectUserVcenterRuleId = "string",
        Rule = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectUserVcenterRule(ctx, "objectUserVcenterRuleResource", &fortimanager.ObjectUserVcenterRuleArgs{
    Vcenter: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectUserVcenterRuleId: pulumi.String("string"),
    Rule: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectUserVcenterRuleResource = new ObjectUserVcenterRule("objectUserVcenterRuleResource", ObjectUserVcenterRuleArgs.builder()
        .vcenter("string")
        .adom("string")
        .name("string")
        .objectUserVcenterRuleId("string")
        .rule("string")
        .scopetype("string")
        .build());
    
    object_user_vcenter_rule_resource = fortimanager.ObjectUserVcenterRule("objectUserVcenterRuleResource",
        vcenter="string",
        adom="string",
        name="string",
        object_user_vcenter_rule_id="string",
        rule="string",
        scopetype="string")
    
    const objectUserVcenterRuleResource = new fortimanager.ObjectUserVcenterRule("objectUserVcenterRuleResource", {
        vcenter: "string",
        adom: "string",
        name: "string",
        objectUserVcenterRuleId: "string",
        rule: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectUserVcenterRule
    properties:
        adom: string
        name: string
        objectUserVcenterRuleId: string
        rule: string
        scopetype: string
        vcenter: string
    

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

    Vcenter string
    Vcenter.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectUserVcenterRuleId string
    an identifier for the resource with format {{name}}.
    Rule string
    Rule.
    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.
    Vcenter string
    Vcenter.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectUserVcenterRuleId string
    an identifier for the resource with format {{name}}.
    Rule string
    Rule.
    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.
    vcenter String
    Vcenter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectUserVcenterRuleId String
    an identifier for the resource with format {{name}}.
    rule String
    Rule.
    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.
    vcenter string
    Vcenter.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name string
    Name.
    objectUserVcenterRuleId string
    an identifier for the resource with format {{name}}.
    rule string
    Rule.
    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.
    vcenter str
    Vcenter.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name str
    Name.
    object_user_vcenter_rule_id str
    an identifier for the resource with format {{name}}.
    rule str
    Rule.
    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.
    vcenter String
    Vcenter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectUserVcenterRuleId String
    an identifier for the resource with format {{name}}.
    rule String
    Rule.
    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.

    Outputs

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

    Get an existing ObjectUserVcenterRule 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?: ObjectUserVcenterRuleState, opts?: CustomResourceOptions): ObjectUserVcenterRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            name: Optional[str] = None,
            object_user_vcenter_rule_id: Optional[str] = None,
            rule: Optional[str] = None,
            scopetype: Optional[str] = None,
            vcenter: Optional[str] = None) -> ObjectUserVcenterRule
    func GetObjectUserVcenterRule(ctx *Context, name string, id IDInput, state *ObjectUserVcenterRuleState, opts ...ResourceOption) (*ObjectUserVcenterRule, error)
    public static ObjectUserVcenterRule Get(string name, Input<string> id, ObjectUserVcenterRuleState? state, CustomResourceOptions? opts = null)
    public static ObjectUserVcenterRule get(String name, Output<String> id, ObjectUserVcenterRuleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserVcenterRule    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.
    Name string
    Name.
    ObjectUserVcenterRuleId string
    an identifier for the resource with format {{name}}.
    Rule string
    Rule.
    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.
    Vcenter string
    Vcenter.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectUserVcenterRuleId string
    an identifier for the resource with format {{name}}.
    Rule string
    Rule.
    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.
    Vcenter string
    Vcenter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectUserVcenterRuleId String
    an identifier for the resource with format {{name}}.
    rule String
    Rule.
    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.
    vcenter String
    Vcenter.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name string
    Name.
    objectUserVcenterRuleId string
    an identifier for the resource with format {{name}}.
    rule string
    Rule.
    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.
    vcenter string
    Vcenter.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name str
    Name.
    object_user_vcenter_rule_id str
    an identifier for the resource with format {{name}}.
    rule str
    Rule.
    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.
    vcenter str
    Vcenter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectUserVcenterRuleId String
    an identifier for the resource with format {{name}}.
    rule String
    Rule.
    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.
    vcenter String
    Vcenter.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectUserVcenterRule:ObjectUserVcenterRule 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