1. Registry
  2. Packages
  3. Fortimanager Provider
  4. API Docs
  5. ObjectUserGuardicore
Viewing docs for fortimanager 1.18.0
published on Friday, Jul 31, 2026 by fortinetdev
Viewing docs for fortimanager 1.18.0
published on Friday, Jul 31, 2026 by fortinetdev

    ObjectUser Guardicore

    Create ObjectUserGuardicore Resource

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

    Constructor syntax

    new ObjectUserGuardicore(name: string, args?: ObjectUserGuardicoreArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserGuardicore(resource_name: str,
                             args: Optional[ObjectUserGuardicoreArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserGuardicore(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             adom: Optional[str] = None,
                             alias: Optional[str] = None,
                             filters: Optional[Sequence[str]] = None,
                             name: Optional[str] = None,
                             object_user_guardicore_id: Optional[str] = None,
                             page_size: Optional[float] = None,
                             passwords: Optional[Sequence[str]] = None,
                             scheme: Optional[str] = None,
                             scopetype: Optional[str] = None,
                             server: Optional[str] = None,
                             status: Optional[str] = None,
                             upd_interval: Optional[float] = None,
                             update_if_exist: Optional[bool] = None,
                             user: Optional[str] = None)
    func NewObjectUserGuardicore(ctx *Context, name string, args *ObjectUserGuardicoreArgs, opts ...ResourceOption) (*ObjectUserGuardicore, error)
    public ObjectUserGuardicore(string name, ObjectUserGuardicoreArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectUserGuardicore(String name, ObjectUserGuardicoreArgs args)
    public ObjectUserGuardicore(String name, ObjectUserGuardicoreArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserGuardicore
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "fortimanager_object_user_guardicore" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ObjectUserGuardicoreArgs
    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 ObjectUserGuardicoreArgs
    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 ObjectUserGuardicoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserGuardicoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserGuardicoreArgs
    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 objectUserGuardicoreResource = new Fortimanager.ObjectUserGuardicore("objectUserGuardicoreResource", new()
    {
        Adom = "string",
        Alias = "string",
        Filters = new[]
        {
            "string",
        },
        Name = "string",
        ObjectUserGuardicoreId = "string",
        PageSize = 0,
        Passwords = new[]
        {
            "string",
        },
        Scheme = "string",
        Scopetype = "string",
        Server = "string",
        Status = "string",
        UpdInterval = 0,
        UpdateIfExist = false,
        User = "string",
    });
    
    example, err := fortimanager.NewObjectUserGuardicore(ctx, "objectUserGuardicoreResource", &fortimanager.ObjectUserGuardicoreArgs{
    	Adom:  pulumi.String("string"),
    	Alias: pulumi.String("string"),
    	Filters: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:                   pulumi.String("string"),
    	ObjectUserGuardicoreId: pulumi.String("string"),
    	PageSize:               pulumi.Float64(0),
    	Passwords: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Scheme:        pulumi.String("string"),
    	Scopetype:     pulumi.String("string"),
    	Server:        pulumi.String("string"),
    	Status:        pulumi.String("string"),
    	UpdInterval:   pulumi.Float64(0),
    	UpdateIfExist: pulumi.Bool(false),
    	User:          pulumi.String("string"),
    })
    
    resource "fortimanager_object_user_guardicore" "objectUserGuardicoreResource" {
      lifecycle {
        create_before_destroy = true
      }
      adom                      = "string"
      alias                     = "string"
      filters                   = ["string"]
      name                      = "string"
      object_user_guardicore_id = "string"
      page_size                 = 0
      passwords                 = ["string"]
      scheme                    = "string"
      scopetype                 = "string"
      server                    = "string"
      status                    = "string"
      upd_interval              = 0
      update_if_exist           = false
      user                      = "string"
    }
    
    var objectUserGuardicoreResource = new ObjectUserGuardicore("objectUserGuardicoreResource", ObjectUserGuardicoreArgs.builder()
        .adom("string")
        .alias("string")
        .filters("string")
        .name("string")
        .objectUserGuardicoreId("string")
        .pageSize(0.0)
        .passwords("string")
        .scheme("string")
        .scopetype("string")
        .server("string")
        .status("string")
        .updInterval(0.0)
        .updateIfExist(false)
        .user("string")
        .build());
    
    object_user_guardicore_resource = fortimanager.ObjectUserGuardicore("objectUserGuardicoreResource",
        adom="string",
        alias="string",
        filters=["string"],
        name="string",
        object_user_guardicore_id="string",
        page_size=float(0),
        passwords=["string"],
        scheme="string",
        scopetype="string",
        server="string",
        status="string",
        upd_interval=float(0),
        update_if_exist=False,
        user="string")
    
    const objectUserGuardicoreResource = new fortimanager.ObjectUserGuardicore("objectUserGuardicoreResource", {
        adom: "string",
        alias: "string",
        filters: ["string"],
        name: "string",
        objectUserGuardicoreId: "string",
        pageSize: 0,
        passwords: ["string"],
        scheme: "string",
        scopetype: "string",
        server: "string",
        status: "string",
        updInterval: 0,
        updateIfExist: false,
        user: "string",
    });
    
    type: fortimanager:ObjectUserGuardicore
    properties:
        adom: string
        alias: string
        filters:
            - string
        name: string
        objectUserGuardicoreId: string
        pageSize: 0
        passwords:
            - string
        scheme: string
        scopetype: string
        server: string
        status: string
        updInterval: 0
        updateIfExist: false
        user: string
    

    ObjectUserGuardicore 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 ObjectUserGuardicore 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.
    Alias string
    Alias.
    Filters List<string>
    Filters.
    Name string
    Name.
    ObjectUserGuardicoreId string
    an identifier for the resource with format {{name}}.
    PageSize double
    Page_Size.
    Passwords List<string>
    Password.
    Scheme string
    Scheme.
    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.
    UpdateIfExist bool
    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.
    Alias string
    Alias.
    Filters []string
    Filters.
    Name string
    Name.
    ObjectUserGuardicoreId string
    an identifier for the resource with format {{name}}.
    PageSize float64
    Page_Size.
    Passwords []string
    Password.
    Scheme string
    Scheme.
    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.
    UpdateIfExist bool
    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.
    alias string
    Alias.
    filters list(string)
    Filters.
    name string
    Name.
    object_user_guardicore_id string
    an identifier for the resource with format {{name}}.
    page_size number
    Page_Size.
    passwords list(string)
    Password.
    scheme string
    Scheme.
    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.
    upd_interval number
    Upd_Interval.
    update_if_exist bool
    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.
    alias String
    Alias.
    filters List<String>
    Filters.
    name String
    Name.
    objectUserGuardicoreId String
    an identifier for the resource with format {{name}}.
    pageSize Double
    Page_Size.
    passwords List<String>
    Password.
    scheme String
    Scheme.
    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.
    updateIfExist Boolean
    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.
    alias string
    Alias.
    filters string[]
    Filters.
    name string
    Name.
    objectUserGuardicoreId string
    an identifier for the resource with format {{name}}.
    pageSize number
    Page_Size.
    passwords string[]
    Password.
    scheme string
    Scheme.
    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.
    updateIfExist boolean
    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.
    alias str
    Alias.
    filters Sequence[str]
    Filters.
    name str
    Name.
    object_user_guardicore_id str
    an identifier for the resource with format {{name}}.
    page_size float
    Page_Size.
    passwords Sequence[str]
    Password.
    scheme str
    Scheme.
    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.
    update_if_exist bool
    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.
    alias String
    Alias.
    filters List<String>
    Filters.
    name String
    Name.
    objectUserGuardicoreId String
    an identifier for the resource with format {{name}}.
    pageSize Number
    Page_Size.
    passwords List<String>
    Password.
    scheme String
    Scheme.
    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.
    updateIfExist Boolean
    user String
    User.

    Outputs

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

    Get an existing ObjectUserGuardicore 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?: ObjectUserGuardicoreState, opts?: CustomResourceOptions): ObjectUserGuardicore
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            alias: Optional[str] = None,
            filters: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            object_user_guardicore_id: Optional[str] = None,
            page_size: Optional[float] = None,
            passwords: Optional[Sequence[str]] = None,
            scheme: Optional[str] = None,
            scopetype: Optional[str] = None,
            server: Optional[str] = None,
            status: Optional[str] = None,
            upd_interval: Optional[float] = None,
            update_if_exist: Optional[bool] = None,
            user: Optional[str] = None) -> ObjectUserGuardicore
    func GetObjectUserGuardicore(ctx *Context, name string, id IDInput, state *ObjectUserGuardicoreState, opts ...ResourceOption) (*ObjectUserGuardicore, error)
    public static ObjectUserGuardicore Get(string name, Input<string> id, ObjectUserGuardicoreState? state, CustomResourceOptions? opts = null)
    public static ObjectUserGuardicore get(String name, Output<String> id, ObjectUserGuardicoreState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserGuardicore    get:      id: ${id}
    import {
      to = fortimanager_object_user_guardicore.example
      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.
    Alias string
    Alias.
    Filters List<string>
    Filters.
    Name string
    Name.
    ObjectUserGuardicoreId string
    an identifier for the resource with format {{name}}.
    PageSize double
    Page_Size.
    Passwords List<string>
    Password.
    Scheme string
    Scheme.
    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.
    UpdateIfExist bool
    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.
    Alias string
    Alias.
    Filters []string
    Filters.
    Name string
    Name.
    ObjectUserGuardicoreId string
    an identifier for the resource with format {{name}}.
    PageSize float64
    Page_Size.
    Passwords []string
    Password.
    Scheme string
    Scheme.
    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.
    UpdateIfExist bool
    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.
    alias string
    Alias.
    filters list(string)
    Filters.
    name string
    Name.
    object_user_guardicore_id string
    an identifier for the resource with format {{name}}.
    page_size number
    Page_Size.
    passwords list(string)
    Password.
    scheme string
    Scheme.
    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.
    upd_interval number
    Upd_Interval.
    update_if_exist bool
    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.
    alias String
    Alias.
    filters List<String>
    Filters.
    name String
    Name.
    objectUserGuardicoreId String
    an identifier for the resource with format {{name}}.
    pageSize Double
    Page_Size.
    passwords List<String>
    Password.
    scheme String
    Scheme.
    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.
    updateIfExist Boolean
    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.
    alias string
    Alias.
    filters string[]
    Filters.
    name string
    Name.
    objectUserGuardicoreId string
    an identifier for the resource with format {{name}}.
    pageSize number
    Page_Size.
    passwords string[]
    Password.
    scheme string
    Scheme.
    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.
    updateIfExist boolean
    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.
    alias str
    Alias.
    filters Sequence[str]
    Filters.
    name str
    Name.
    object_user_guardicore_id str
    an identifier for the resource with format {{name}}.
    page_size float
    Page_Size.
    passwords Sequence[str]
    Password.
    scheme str
    Scheme.
    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.
    update_if_exist bool
    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.
    alias String
    Alias.
    filters List<String>
    Filters.
    name String
    Name.
    objectUserGuardicoreId String
    an identifier for the resource with format {{name}}.
    pageSize Number
    Page_Size.
    passwords List<String>
    Password.
    scheme String
    Scheme.
    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.
    updateIfExist Boolean
    user String
    User.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectUserGuardicore:ObjectUserGuardicore 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.
    Viewing docs for fortimanager 1.18.0
    published on Friday, Jul 31, 2026 by fortinetdev

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial