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

fortimanager.ObjectUserDevice

Explore with Pulumi AI

Configure devices.

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

  • dynamic_mapping: fortimanager_object_user_device_dynamic_mapping
  • tagging: fortimanager_object_user_device_tagging

Create ObjectUserDevice Resource

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

Constructor syntax

new ObjectUserDevice(name: string, args?: ObjectUserDeviceArgs, opts?: CustomResourceOptions);
@overload
def ObjectUserDevice(resource_name: str,
                     args: Optional[ObjectUserDeviceArgs] = None,
                     opts: Optional[ResourceOptions] = None)

@overload
def ObjectUserDevice(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     adom: Optional[str] = None,
                     alias: Optional[str] = None,
                     avatar: Optional[str] = None,
                     category: Optional[str] = None,
                     comment: Optional[str] = None,
                     dynamic_mappings: Optional[Sequence[ObjectUserDeviceDynamicMappingArgs]] = None,
                     dynamic_sort_subtable: Optional[str] = None,
                     mac: Optional[str] = None,
                     master_device: Optional[str] = None,
                     object_user_device_id: Optional[str] = None,
                     scopetype: Optional[str] = None,
                     taggings: Optional[Sequence[ObjectUserDeviceTaggingArgs]] = None,
                     type: Optional[str] = None,
                     user: Optional[str] = None)
func NewObjectUserDevice(ctx *Context, name string, args *ObjectUserDeviceArgs, opts ...ResourceOption) (*ObjectUserDevice, error)
public ObjectUserDevice(string name, ObjectUserDeviceArgs? args = null, CustomResourceOptions? opts = null)
public ObjectUserDevice(String name, ObjectUserDeviceArgs args)
public ObjectUserDevice(String name, ObjectUserDeviceArgs args, CustomResourceOptions options)
type: fortimanager:ObjectUserDevice
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ObjectUserDeviceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ObjectUserDeviceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ObjectUserDeviceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ObjectUserDeviceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectUserDeviceArgs
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 objectUserDeviceResource = new Fortimanager.ObjectUserDevice("objectUserDeviceResource", new()
{
    Adom = "string",
    Alias = "string",
    Avatar = "string",
    Category = "string",
    Comment = "string",
    DynamicMappings = new[]
    {
        new Fortimanager.Inputs.ObjectUserDeviceDynamicMappingArgs
        {
            _scopes = new[]
            {
                new Fortimanager.Inputs.ObjectUserDeviceDynamicMapping_ScopeArgs
                {
                    Name = "string",
                    Vdom = "string",
                },
            },
            Avatar = "string",
            Category = "string",
            Comment = "string",
            Family = "string",
            HardwareVendor = "string",
            HardwareVersion = "string",
            Mac = "string",
            MasterDevice = "string",
            Os = "string",
            SoftwareVersion = "string",
            Tags = "string",
            Type = "string",
            User = "string",
        },
    },
    DynamicSortSubtable = "string",
    Mac = "string",
    MasterDevice = "string",
    ObjectUserDeviceId = "string",
    Scopetype = "string",
    Taggings = new[]
    {
        new Fortimanager.Inputs.ObjectUserDeviceTaggingArgs
        {
            Category = "string",
            Name = "string",
            Tags = new[]
            {
                "string",
            },
        },
    },
    Type = "string",
    User = "string",
});
Copy
example, err := fortimanager.NewObjectUserDevice(ctx, "objectUserDeviceResource", &fortimanager.ObjectUserDeviceArgs{
Adom: pulumi.String("string"),
Alias: pulumi.String("string"),
Avatar: pulumi.String("string"),
Category: pulumi.String("string"),
Comment: pulumi.String("string"),
DynamicMappings: .ObjectUserDeviceDynamicMappingArray{
&.ObjectUserDeviceDynamicMappingArgs{
_scopes: .ObjectUserDeviceDynamicMapping_ScopeArray{
&.ObjectUserDeviceDynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
Avatar: pulumi.String("string"),
Category: pulumi.String("string"),
Comment: pulumi.String("string"),
Family: pulumi.String("string"),
HardwareVendor: pulumi.String("string"),
HardwareVersion: pulumi.String("string"),
Mac: pulumi.String("string"),
MasterDevice: pulumi.String("string"),
Os: pulumi.String("string"),
SoftwareVersion: pulumi.String("string"),
Tags: pulumi.String("string"),
Type: pulumi.String("string"),
User: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
Mac: pulumi.String("string"),
MasterDevice: pulumi.String("string"),
ObjectUserDeviceId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Taggings: .ObjectUserDeviceTaggingArray{
&.ObjectUserDeviceTaggingArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Type: pulumi.String("string"),
User: pulumi.String("string"),
})
Copy
var objectUserDeviceResource = new ObjectUserDevice("objectUserDeviceResource", ObjectUserDeviceArgs.builder()
    .adom("string")
    .alias("string")
    .avatar("string")
    .category("string")
    .comment("string")
    .dynamicMappings(ObjectUserDeviceDynamicMappingArgs.builder()
        ._scopes(ObjectUserDeviceDynamicMapping_ScopeArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .avatar("string")
        .category("string")
        .comment("string")
        .family("string")
        .hardwareVendor("string")
        .hardwareVersion("string")
        .mac("string")
        .masterDevice("string")
        .os("string")
        .softwareVersion("string")
        .tags("string")
        .type("string")
        .user("string")
        .build())
    .dynamicSortSubtable("string")
    .mac("string")
    .masterDevice("string")
    .objectUserDeviceId("string")
    .scopetype("string")
    .taggings(ObjectUserDeviceTaggingArgs.builder()
        .category("string")
        .name("string")
        .tags("string")
        .build())
    .type("string")
    .user("string")
    .build());
Copy
object_user_device_resource = fortimanager.ObjectUserDevice("objectUserDeviceResource",
    adom="string",
    alias="string",
    avatar="string",
    category="string",
    comment="string",
    dynamic_mappings=[{
        "_scopes": [{
            "name": "string",
            "vdom": "string",
        }],
        "avatar": "string",
        "category": "string",
        "comment": "string",
        "family": "string",
        "hardware_vendor": "string",
        "hardware_version": "string",
        "mac": "string",
        "master_device": "string",
        "os": "string",
        "software_version": "string",
        "tags": "string",
        "type": "string",
        "user": "string",
    }],
    dynamic_sort_subtable="string",
    mac="string",
    master_device="string",
    object_user_device_id="string",
    scopetype="string",
    taggings=[{
        "category": "string",
        "name": "string",
        "tags": ["string"],
    }],
    type="string",
    user="string")
Copy
const objectUserDeviceResource = new fortimanager.ObjectUserDevice("objectUserDeviceResource", {
    adom: "string",
    alias: "string",
    avatar: "string",
    category: "string",
    comment: "string",
    dynamicMappings: [{
        _scopes: [{
            name: "string",
            vdom: "string",
        }],
        avatar: "string",
        category: "string",
        comment: "string",
        family: "string",
        hardwareVendor: "string",
        hardwareVersion: "string",
        mac: "string",
        masterDevice: "string",
        os: "string",
        softwareVersion: "string",
        tags: "string",
        type: "string",
        user: "string",
    }],
    dynamicSortSubtable: "string",
    mac: "string",
    masterDevice: "string",
    objectUserDeviceId: "string",
    scopetype: "string",
    taggings: [{
        category: "string",
        name: "string",
        tags: ["string"],
    }],
    type: "string",
    user: "string",
});
Copy
type: fortimanager:ObjectUserDevice
properties:
    adom: string
    alias: string
    avatar: string
    category: string
    comment: string
    dynamicMappings:
        - _scopes:
            - name: string
              vdom: string
          avatar: string
          category: string
          comment: string
          family: string
          hardwareVendor: string
          hardwareVersion: string
          mac: string
          masterDevice: string
          os: string
          softwareVersion: string
          tags: string
          type: string
          user: string
    dynamicSortSubtable: string
    mac: string
    masterDevice: string
    objectUserDeviceId: string
    scopetype: string
    taggings:
        - category: string
          name: string
          tags:
            - string
    type: string
    user: string
Copy

ObjectUserDevice 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 ObjectUserDevice 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
Device alias.
Avatar string
Image file for avatar (maximum 4K base64 encoded).
Category string
Family.
Comment string
Comment.
DynamicMappings List<ObjectUserDeviceDynamicMapping>
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
Mac string
Device MAC address.
MasterDevice string
Master device (optional).
ObjectUserDeviceId string
an identifier for the resource with format {{alias}}.
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.
Taggings List<ObjectUserDeviceTagging>
Tagging. The structure of tagging block is documented below.
Type string
Type.
User string
User name.
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
Device alias.
Avatar string
Image file for avatar (maximum 4K base64 encoded).
Category string
Family.
Comment string
Comment.
DynamicMappings []ObjectUserDeviceDynamicMappingArgs
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
Mac string
Device MAC address.
MasterDevice string
Master device (optional).
ObjectUserDeviceId string
an identifier for the resource with format {{alias}}.
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.
Taggings []ObjectUserDeviceTaggingArgs
Tagging. The structure of tagging block is documented below.
Type string
Type.
User string
User name.
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
Device alias.
avatar String
Image file for avatar (maximum 4K base64 encoded).
category String
Family.
comment String
Comment.
dynamicMappings List<ObjectUserDeviceDynamicMapping>
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac String
Device MAC address.
masterDevice String
Master device (optional).
objectUserDeviceId String
an identifier for the resource with format {{alias}}.
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.
taggings List<ObjectUserDeviceTagging>
Tagging. The structure of tagging block is documented below.
type String
Type.
user String
User name.
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
Device alias.
avatar string
Image file for avatar (maximum 4K base64 encoded).
category string
Family.
comment string
Comment.
dynamicMappings ObjectUserDeviceDynamicMapping[]
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac string
Device MAC address.
masterDevice string
Master device (optional).
objectUserDeviceId string
an identifier for the resource with format {{alias}}.
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.
taggings ObjectUserDeviceTagging[]
Tagging. The structure of tagging block is documented below.
type string
Type.
user string
User name.
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
Device alias.
avatar str
Image file for avatar (maximum 4K base64 encoded).
category str
Family.
comment str
Comment.
dynamic_mappings Sequence[ObjectUserDeviceDynamicMappingArgs]
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac str
Device MAC address.
master_device str
Master device (optional).
object_user_device_id str
an identifier for the resource with format {{alias}}.
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.
taggings Sequence[ObjectUserDeviceTaggingArgs]
Tagging. The structure of tagging block is documented below.
type str
Type.
user str
User name.
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
Device alias.
avatar String
Image file for avatar (maximum 4K base64 encoded).
category String
Family.
comment String
Comment.
dynamicMappings List<Property Map>
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac String
Device MAC address.
masterDevice String
Master device (optional).
objectUserDeviceId String
an identifier for the resource with format {{alias}}.
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.
taggings List<Property Map>
Tagging. The structure of tagging block is documented below.
type String
Type.
user String
User name.

Outputs

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

Get an existing ObjectUserDevice 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?: ObjectUserDeviceState, opts?: CustomResourceOptions): ObjectUserDevice
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        alias: Optional[str] = None,
        avatar: Optional[str] = None,
        category: Optional[str] = None,
        comment: Optional[str] = None,
        dynamic_mappings: Optional[Sequence[ObjectUserDeviceDynamicMappingArgs]] = None,
        dynamic_sort_subtable: Optional[str] = None,
        mac: Optional[str] = None,
        master_device: Optional[str] = None,
        object_user_device_id: Optional[str] = None,
        scopetype: Optional[str] = None,
        taggings: Optional[Sequence[ObjectUserDeviceTaggingArgs]] = None,
        type: Optional[str] = None,
        user: Optional[str] = None) -> ObjectUserDevice
func GetObjectUserDevice(ctx *Context, name string, id IDInput, state *ObjectUserDeviceState, opts ...ResourceOption) (*ObjectUserDevice, error)
public static ObjectUserDevice Get(string name, Input<string> id, ObjectUserDeviceState? state, CustomResourceOptions? opts = null)
public static ObjectUserDevice get(String name, Output<String> id, ObjectUserDeviceState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectUserDevice    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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
Device alias.
Avatar string
Image file for avatar (maximum 4K base64 encoded).
Category string
Family.
Comment string
Comment.
DynamicMappings List<ObjectUserDeviceDynamicMapping>
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
Mac string
Device MAC address.
MasterDevice string
Master device (optional).
ObjectUserDeviceId string
an identifier for the resource with format {{alias}}.
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.
Taggings List<ObjectUserDeviceTagging>
Tagging. The structure of tagging block is documented below.
Type string
Type.
User string
User name.
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
Device alias.
Avatar string
Image file for avatar (maximum 4K base64 encoded).
Category string
Family.
Comment string
Comment.
DynamicMappings []ObjectUserDeviceDynamicMappingArgs
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
Mac string
Device MAC address.
MasterDevice string
Master device (optional).
ObjectUserDeviceId string
an identifier for the resource with format {{alias}}.
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.
Taggings []ObjectUserDeviceTaggingArgs
Tagging. The structure of tagging block is documented below.
Type string
Type.
User string
User name.
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
Device alias.
avatar String
Image file for avatar (maximum 4K base64 encoded).
category String
Family.
comment String
Comment.
dynamicMappings List<ObjectUserDeviceDynamicMapping>
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac String
Device MAC address.
masterDevice String
Master device (optional).
objectUserDeviceId String
an identifier for the resource with format {{alias}}.
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.
taggings List<ObjectUserDeviceTagging>
Tagging. The structure of tagging block is documented below.
type String
Type.
user String
User name.
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
Device alias.
avatar string
Image file for avatar (maximum 4K base64 encoded).
category string
Family.
comment string
Comment.
dynamicMappings ObjectUserDeviceDynamicMapping[]
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac string
Device MAC address.
masterDevice string
Master device (optional).
objectUserDeviceId string
an identifier for the resource with format {{alias}}.
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.
taggings ObjectUserDeviceTagging[]
Tagging. The structure of tagging block is documented below.
type string
Type.
user string
User name.
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
Device alias.
avatar str
Image file for avatar (maximum 4K base64 encoded).
category str
Family.
comment str
Comment.
dynamic_mappings Sequence[ObjectUserDeviceDynamicMappingArgs]
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac str
Device MAC address.
master_device str
Master device (optional).
object_user_device_id str
an identifier for the resource with format {{alias}}.
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.
taggings Sequence[ObjectUserDeviceTaggingArgs]
Tagging. The structure of tagging block is documented below.
type str
Type.
user str
User name.
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
Device alias.
avatar String
Image file for avatar (maximum 4K base64 encoded).
category String
Family.
comment String
Comment.
dynamicMappings List<Property Map>
Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
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.
mac String
Device MAC address.
masterDevice String
Master device (optional).
objectUserDeviceId String
an identifier for the resource with format {{alias}}.
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.
taggings List<Property Map>
Tagging. The structure of tagging block is documented below.
type String
Type.
user String
User name.

Supporting Types

ObjectUserDeviceDynamicMapping
, ObjectUserDeviceDynamicMappingArgs

Avatar string
Image file for avatar (maximum 4K base64 encoded).
Category string
Family.
Comment string
Comment.
Family string
Family.
HardwareVendor string
Hardware-Vendor.
HardwareVersion string
Hardware-Version.
Mac string
Device MAC address.
MasterDevice string
Master device (optional).
Os string
Os.
SoftwareVersion string
Software-Version.
Tags string
Tags.
Type string
Type.
User string
User name.
_scopes List<ObjectUserDeviceDynamicMapping_Scope>
_Scope. The structure of _scope block is documented below.
Avatar string
Image file for avatar (maximum 4K base64 encoded).
Category string
Family.
Comment string
Comment.
Family string
Family.
HardwareVendor string
Hardware-Vendor.
HardwareVersion string
Hardware-Version.
Mac string
Device MAC address.
MasterDevice string
Master device (optional).
Os string
Os.
SoftwareVersion string
Software-Version.
Tags string
Tags.
Type string
Type.
User string
User name.
_scopes []ObjectUserDeviceDynamicMapping_Scope
_Scope. The structure of _scope block is documented below.
_scopes List<ObjectUserDeviceDynamicMapping_Scope>
_Scope. The structure of _scope block is documented below.
avatar String
Image file for avatar (maximum 4K base64 encoded).
category String
Family.
comment String
Comment.
family String
Family.
hardwareVendor String
Hardware-Vendor.
hardwareVersion String
Hardware-Version.
mac String
Device MAC address.
masterDevice String
Master device (optional).
os String
Os.
softwareVersion String
Software-Version.
tags String
Tags.
type String
Type.
user String
User name.
_scopes ObjectUserDeviceDynamicMapping_Scope[]
_Scope. The structure of _scope block is documented below.
avatar string
Image file for avatar (maximum 4K base64 encoded).
category string
Family.
comment string
Comment.
family string
Family.
hardwareVendor string
Hardware-Vendor.
hardwareVersion string
Hardware-Version.
mac string
Device MAC address.
masterDevice string
Master device (optional).
os string
Os.
softwareVersion string
Software-Version.
tags string
Tags.
type string
Type.
user string
User name.
_scopes Sequence[ObjectUserDeviceDynamicMapping_Scope]
_Scope. The structure of _scope block is documented below.
avatar str
Image file for avatar (maximum 4K base64 encoded).
category str
Family.
comment str
Comment.
family str
Family.
hardware_vendor str
Hardware-Vendor.
hardware_version str
Hardware-Version.
mac str
Device MAC address.
master_device str
Master device (optional).
os str
Os.
software_version str
Software-Version.
tags str
Tags.
type str
Type.
user str
User name.
_scopes List<Property Map>
_Scope. The structure of _scope block is documented below.
avatar String
Image file for avatar (maximum 4K base64 encoded).
category String
Family.
comment String
Comment.
family String
Family.
hardwareVendor String
Hardware-Vendor.
hardwareVersion String
Hardware-Version.
mac String
Device MAC address.
masterDevice String
Master device (optional).
os String
Os.
softwareVersion String
Software-Version.
tags String
Tags.
type String
Type.
user String
User name.

ObjectUserDeviceDynamicMapping_Scope
, ObjectUserDeviceDynamicMapping_ScopeArgs

Name string
Name.
Vdom string
Vdom.
Name string
Name.
Vdom string
Vdom.
name String
Name.
vdom String
Vdom.
name string
Name.
vdom string
Vdom.
name str
Name.
vdom str
Vdom.
name String
Name.
vdom String
Vdom.

ObjectUserDeviceTagging
, ObjectUserDeviceTaggingArgs

Category string
Tag category.
Name string
Tagging entry name.
Tags List<string>
Tags.
Category string
Tag category.
Name string
Tagging entry name.
Tags []string
Tags.
category String
Tag category.
name String
Tagging entry name.
tags List<String>
Tags.
category string
Tag category.
name string
Tagging entry name.
tags string[]
Tags.
category str
Tag category.
name str
Tagging entry name.
tags Sequence[str]
Tags.
category String
Tag category.
name String
Tagging entry name.
tags List<String>
Tags.

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectUserDevice:ObjectUserDevice labelname {{alias}}
Copy

$ 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.