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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
isadom
, 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.
- Dynamic
Mappings List<ObjectUser Device Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Master
Device string - Master device (optional).
- Object
User stringDevice Id - an identifier for the resource with format {{alias}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
List<Object
User Device Tagging> - 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
isadom
, 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.
- Dynamic
Mappings []ObjectUser Device Dynamic Mapping Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Master
Device string - Master device (optional).
- Object
User stringDevice Id - an identifier for the resource with format {{alias}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
[]Object
User Device Tagging Args - 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
isadom
, 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.
- dynamic
Mappings List<ObjectUser Device Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- master
Device String - Master device (optional).
- object
User StringDevice Id - an identifier for the resource with format {{alias}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
List<Object
User Device Tagging> - 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
isadom
, 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.
- dynamic
Mappings ObjectUser Device Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - 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.
- master
Device string - Master device (optional).
- object
User stringDevice Id - an identifier for the resource with format {{alias}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Object
User Device Tagging[] - 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
isadom
, 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[ObjectUser Device Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - 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_ strdevice_ id - an identifier for the resource with format {{alias}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Sequence[Object
User Device Tagging Args] - 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
isadom
, 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.
- dynamic
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- master
Device String - Master device (optional).
- object
User StringDevice Id - an identifier for the resource with format {{alias}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
- 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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.
- Dynamic
Mappings List<ObjectUser Device Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Master
Device string - Master device (optional).
- Object
User stringDevice Id - an identifier for the resource with format {{alias}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
List<Object
User Device Tagging> - 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
isadom
, 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.
- Dynamic
Mappings []ObjectUser Device Dynamic Mapping Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Master
Device string - Master device (optional).
- Object
User stringDevice Id - an identifier for the resource with format {{alias}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
[]Object
User Device Tagging Args - 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
isadom
, 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.
- dynamic
Mappings List<ObjectUser Device Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- master
Device String - Master device (optional).
- object
User StringDevice Id - an identifier for the resource with format {{alias}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
List<Object
User Device Tagging> - 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
isadom
, 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.
- dynamic
Mappings ObjectUser Device Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - 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.
- master
Device string - Master device (optional).
- object
User stringDevice Id - an identifier for the resource with format {{alias}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Object
User Device Tagging[] - 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
isadom
, 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[ObjectUser Device Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - 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_ strdevice_ id - an identifier for the resource with format {{alias}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Sequence[Object
User Device Tagging Args] - 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
isadom
, 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.
- dynamic
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- master
Device String - Master device (optional).
- object
User StringDevice Id - an identifier for the resource with format {{alias}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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.
- Hardware
Vendor string - Hardware-Vendor.
- Hardware
Version string - Hardware-Version.
- Mac string
- Device MAC address.
- Master
Device string - Master device (optional).
- Os string
- Os.
- Software
Version string - Software-Version.
- string
- Tags.
- Type string
- Type.
- User string
- User name.
- _
scopes List<ObjectUser Device Dynamic Mapping_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.
- Hardware
Vendor string - Hardware-Vendor.
- Hardware
Version string - Hardware-Version.
- Mac string
- Device MAC address.
- Master
Device string - Master device (optional).
- Os string
- Os.
- Software
Version string - Software-Version.
- string
- Tags.
- Type string
- Type.
- User string
- User name.
- _
scopes []ObjectUser Device Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
scopes List<ObjectUser Device Dynamic Mapping_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.
- hardware
Vendor String - Hardware-Vendor.
- hardware
Version String - Hardware-Version.
- mac String
- Device MAC address.
- master
Device String - Master device (optional).
- os String
- Os.
- software
Version String - Software-Version.
- String
- Tags.
- type String
- Type.
- user String
- User name.
- _
scopes ObjectUser Device Dynamic Mapping_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.
- hardware
Vendor string - Hardware-Vendor.
- hardware
Version string - Hardware-Version.
- mac string
- Device MAC address.
- master
Device string - Master device (optional).
- os string
- Os.
- software
Version string - Software-Version.
- string
- Tags.
- type string
- Type.
- user string
- User name.
- _
scopes Sequence[ObjectUser Device Dynamic Mapping_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.
- 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.
- hardware
Vendor String - Hardware-Vendor.
- hardware
Version String - Hardware-Version.
- mac String
- Device MAC address.
- master
Device String - Master device (optional).
- os String
- Os.
- software
Version String - Software-Version.
- String
- Tags.
- type String
- Type.
- user String
- User name.
ObjectUserDeviceDynamicMapping_Scope, ObjectUserDeviceDynamicMapping_ScopeArgs
ObjectUserDeviceTagging, ObjectUserDeviceTaggingArgs
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}}
$ 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.