1. Packages
  2. Packages
  3. Fortimanager Provider
  4. API Docs
  5. ObjectDynamicLogNpuserverServergroupDynamicMapping
Viewing docs for fortimanager 1.17.0
published on Monday, May 4, 2026 by fortinetdev
Viewing docs for fortimanager 1.17.0
published on Monday, May 4, 2026 by fortinetdev

    ObjectDynamic LogNpuServerServerGroupDynamicMapping

    This resource is a sub resource for variable dynamic_mapping of resource fortimanager.ObjectDynamicLogNpuserverServergroup. Conflict and overwrite may occur if use both of them.

    Create ObjectDynamicLogNpuserverServergroupDynamicMapping Resource

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

    Constructor syntax

    new ObjectDynamicLogNpuserverServergroupDynamicMapping(name: string, args: ObjectDynamicLogNpuserverServergroupDynamicMappingArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectDynamicLogNpuserverServergroupDynamicMapping(resource_name: str,
                                                           args: ObjectDynamicLogNpuserverServergroupDynamicMappingInitArgs,
                                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectDynamicLogNpuserverServergroupDynamicMapping(resource_name: str,
                                                           opts: Optional[ResourceOptions] = None,
                                                           server_group: Optional[str] = None,
                                                           _scopes: Optional[Sequence[ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs]] = None,
                                                           adom: Optional[str] = None,
                                                           dynamic_sort_subtable: Optional[str] = None,
                                                           group_name: Optional[str] = None,
                                                           object_dynamic_log_npuserver_servergroup_dynamic_mapping_id: Optional[str] = None,
                                                           scopetype: Optional[str] = None,
                                                           update_if_exist: Optional[bool] = None)
    func NewObjectDynamicLogNpuserverServergroupDynamicMapping(ctx *Context, name string, args ObjectDynamicLogNpuserverServergroupDynamicMappingArgs, opts ...ResourceOption) (*ObjectDynamicLogNpuserverServergroupDynamicMapping, error)
    public ObjectDynamicLogNpuserverServergroupDynamicMapping(string name, ObjectDynamicLogNpuserverServergroupDynamicMappingArgs args, CustomResourceOptions? opts = null)
    public ObjectDynamicLogNpuserverServergroupDynamicMapping(String name, ObjectDynamicLogNpuserverServergroupDynamicMappingArgs args)
    public ObjectDynamicLogNpuserverServergroupDynamicMapping(String name, ObjectDynamicLogNpuserverServergroupDynamicMappingArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectDynamicLogNpuserverServergroupDynamicMapping
    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 ObjectDynamicLogNpuserverServergroupDynamicMappingArgs
    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 ObjectDynamicLogNpuserverServergroupDynamicMappingInitArgs
    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 ObjectDynamicLogNpuserverServergroupDynamicMappingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectDynamicLogNpuserverServergroupDynamicMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectDynamicLogNpuserverServergroupDynamicMappingArgs
    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 objectDynamicLogNpuserverServergroupDynamicMappingResource = new Fortimanager.ObjectDynamicLogNpuserverServergroupDynamicMapping("objectDynamicLogNpuserverServergroupDynamicMappingResource", new()
    {
        ServerGroup = "string",
        _scopes = new[]
        {
            new Fortimanager.Inputs.ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        Adom = "string",
        DynamicSortSubtable = "string",
        GroupName = "string",
        ObjectDynamicLogNpuserverServergroupDynamicMappingId = "string",
        Scopetype = "string",
        UpdateIfExist = false,
    });
    
    example, err := fortimanager.NewObjectDynamicLogNpuserverServergroupDynamicMapping(ctx, "objectDynamicLogNpuserverServergroupDynamicMappingResource", &fortimanager.ObjectDynamicLogNpuserverServergroupDynamicMappingArgs{
    	ServerGroup: pulumi.String("string"),
    	_scopes: fortimanager.ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArray{
    		&fortimanager.ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs{
    			Name: pulumi.String("string"),
    			Vdom: pulumi.String("string"),
    		},
    	},
    	Adom:                pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	GroupName:           pulumi.String("string"),
    	ObjectDynamicLogNpuserverServergroupDynamicMappingId: pulumi.String("string"),
    	Scopetype:     pulumi.String("string"),
    	UpdateIfExist: pulumi.Bool(false),
    })
    
    var objectDynamicLogNpuserverServergroupDynamicMappingResource = new ObjectDynamicLogNpuserverServergroupDynamicMapping("objectDynamicLogNpuserverServergroupDynamicMappingResource", ObjectDynamicLogNpuserverServergroupDynamicMappingArgs.builder()
        .serverGroup("string")
        ._scopes(ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .adom("string")
        .dynamicSortSubtable("string")
        .groupName("string")
        .objectDynamicLogNpuserverServergroupDynamicMappingId("string")
        .scopetype("string")
        .updateIfExist(false)
        .build());
    
    object_dynamic_log_npuserver_servergroup_dynamic_mapping_resource = fortimanager.ObjectDynamicLogNpuserverServergroupDynamicMapping("objectDynamicLogNpuserverServergroupDynamicMappingResource",
        server_group="string",
        _scopes=[{
            "name": "string",
            "vdom": "string",
        }],
        adom="string",
        dynamic_sort_subtable="string",
        group_name="string",
        object_dynamic_log_npuserver_servergroup_dynamic_mapping_id="string",
        scopetype="string",
        update_if_exist=False)
    
    const objectDynamicLogNpuserverServergroupDynamicMappingResource = new fortimanager.ObjectDynamicLogNpuserverServergroupDynamicMapping("objectDynamicLogNpuserverServergroupDynamicMappingResource", {
        serverGroup: "string",
        _scopes: [{
            name: "string",
            vdom: "string",
        }],
        adom: "string",
        dynamicSortSubtable: "string",
        groupName: "string",
        objectDynamicLogNpuserverServergroupDynamicMappingId: "string",
        scopetype: "string",
        updateIfExist: false,
    });
    
    type: fortimanager:ObjectDynamicLogNpuserverServergroupDynamicMapping
    properties:
        _scopes:
            - name: string
              vdom: string
        adom: string
        dynamicSortSubtable: string
        groupName: string
        objectDynamicLogNpuserverServergroupDynamicMappingId: string
        scopetype: string
        serverGroup: string
        updateIfExist: false
    

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

    ServerGroup string
    Server Group.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupName string
    Group-Name.
    ObjectDynamicLogNpuserverServergroupDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    UpdateIfExist bool
    _scopes List<ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    ServerGroup string
    Server Group.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupName string
    Group-Name.
    ObjectDynamicLogNpuserverServergroupDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    UpdateIfExist bool
    _scopes []ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    serverGroup String
    Server Group.
    _scopes List<ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupName String
    Group-Name.
    objectDynamicLogNpuserverServergroupDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    updateIfExist Boolean
    serverGroup string
    Server Group.
    _scopes ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupName string
    Group-Name.
    objectDynamicLogNpuserverServergroupDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    updateIfExist boolean
    server_group str
    Server Group.
    _scopes Sequence[ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    group_name str
    Group-Name.
    object_dynamic_log_npuserver_servergroup_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    update_if_exist bool
    serverGroup String
    Server Group.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupName String
    Group-Name.
    objectDynamicLogNpuserverServergroupDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    updateIfExist Boolean

    Outputs

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

    Get an existing ObjectDynamicLogNpuserverServergroupDynamicMapping 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?: ObjectDynamicLogNpuserverServergroupDynamicMappingState, opts?: CustomResourceOptions): ObjectDynamicLogNpuserverServergroupDynamicMapping
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _scopes: Optional[Sequence[ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs]] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            group_name: Optional[str] = None,
            object_dynamic_log_npuserver_servergroup_dynamic_mapping_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            server_group: Optional[str] = None,
            update_if_exist: Optional[bool] = None) -> ObjectDynamicLogNpuserverServergroupDynamicMapping
    func GetObjectDynamicLogNpuserverServergroupDynamicMapping(ctx *Context, name string, id IDInput, state *ObjectDynamicLogNpuserverServergroupDynamicMappingState, opts ...ResourceOption) (*ObjectDynamicLogNpuserverServergroupDynamicMapping, error)
    public static ObjectDynamicLogNpuserverServergroupDynamicMapping Get(string name, Input<string> id, ObjectDynamicLogNpuserverServergroupDynamicMappingState? state, CustomResourceOptions? opts = null)
    public static ObjectDynamicLogNpuserverServergroupDynamicMapping get(String name, Output<String> id, ObjectDynamicLogNpuserverServergroupDynamicMappingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectDynamicLogNpuserverServergroupDynamicMapping    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupName string
    Group-Name.
    ObjectDynamicLogNpuserverServergroupDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    ServerGroup string
    Server Group.
    UpdateIfExist bool
    _scopes List<ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupName string
    Group-Name.
    ObjectDynamicLogNpuserverServergroupDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    ServerGroup string
    Server Group.
    UpdateIfExist bool
    _scopes []ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    _scopes List<ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupName String
    Group-Name.
    objectDynamicLogNpuserverServergroupDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    serverGroup String
    Server Group.
    updateIfExist Boolean
    _scopes ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupName string
    Group-Name.
    objectDynamicLogNpuserverServergroupDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    serverGroup string
    Server Group.
    updateIfExist boolean
    _scopes Sequence[ObjectDynamicLogNpuserverServergroupDynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    group_name str
    Group-Name.
    object_dynamic_log_npuserver_servergroup_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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_group str
    Server Group.
    update_if_exist bool
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupName String
    Group-Name.
    objectDynamicLogNpuserverServergroupDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    serverGroup String
    Server Group.
    updateIfExist Boolean

    Supporting Types

    ObjectDynamicLogNpuserverServergroupDynamicMapping_Scope, ObjectDynamicLogNpuserverServergroupDynamicMapping_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.

    Import

    ObjectDynamic LogNpuServerServerGroupDynamicMapping can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectDynamicLogNpuserverServergroupDynamicMapping:ObjectDynamicLogNpuserverServergroupDynamicMapping labelname {{_scope.name}}.{{_scope.vdom}}
    

    $ 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.17.0
    published on Monday, May 4, 2026 by fortinetdev
      Try Pulumi Cloud free. Your team will thank you.