fortimanager.ObjectDynamicMulticastInterface
Explore with Pulumi AI
ObjectDynamic MulticastInterface
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
dynamic_mapping
:fortimanager.ObjectDynamicMulticastInterfaceDynamicMapping
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectDynamicMulticastInterface("trname", {
defaultMapping: "disable",
description: "This is a Terraform example",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectDynamicMulticastInterface("trname",
default_mapping="disable",
description="This is a Terraform example")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectDynamicMulticastInterface(ctx, "trname", &fortimanager.ObjectDynamicMulticastInterfaceArgs{
DefaultMapping: pulumi.String("disable"),
Description: pulumi.String("This is a Terraform example"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectDynamicMulticastInterface("trname", new()
{
DefaultMapping = "disable",
Description = "This is a Terraform example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectDynamicMulticastInterface;
import com.pulumi.fortimanager.ObjectDynamicMulticastInterfaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectDynamicMulticastInterface("trname", ObjectDynamicMulticastInterfaceArgs.builder()
.defaultMapping("disable")
.description("This is a Terraform example")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectDynamicMulticastInterface
properties:
defaultMapping: disable
description: This is a Terraform example
Create ObjectDynamicMulticastInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectDynamicMulticastInterface(name: string, args?: ObjectDynamicMulticastInterfaceArgs, opts?: CustomResourceOptions);
@overload
def ObjectDynamicMulticastInterface(resource_name: str,
args: Optional[ObjectDynamicMulticastInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectDynamicMulticastInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
default_mapping: Optional[str] = None,
defmap_intf: Optional[str] = None,
description: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectDynamicMulticastInterfaceDynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_dynamic_multicast_interface_id: Optional[str] = None,
scopetype: Optional[str] = None,
zone_only: Optional[str] = None)
func NewObjectDynamicMulticastInterface(ctx *Context, name string, args *ObjectDynamicMulticastInterfaceArgs, opts ...ResourceOption) (*ObjectDynamicMulticastInterface, error)
public ObjectDynamicMulticastInterface(string name, ObjectDynamicMulticastInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public ObjectDynamicMulticastInterface(String name, ObjectDynamicMulticastInterfaceArgs args)
public ObjectDynamicMulticastInterface(String name, ObjectDynamicMulticastInterfaceArgs args, CustomResourceOptions options)
type: fortimanager:ObjectDynamicMulticastInterface
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 ObjectDynamicMulticastInterfaceArgs
- 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 ObjectDynamicMulticastInterfaceArgs
- 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 ObjectDynamicMulticastInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectDynamicMulticastInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectDynamicMulticastInterfaceArgs
- 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 objectDynamicMulticastInterfaceResource = new Fortimanager.ObjectDynamicMulticastInterface("objectDynamicMulticastInterfaceResource", new()
{
Adom = "string",
DefaultMapping = "string",
DefmapIntf = "string",
Description = "string",
DynamicMappings = new[]
{
new Fortimanager.Inputs.ObjectDynamicMulticastInterfaceDynamicMappingArgs
{
_scopes = new[]
{
new Fortimanager.Inputs.ObjectDynamicMulticastInterfaceDynamicMapping_ScopeArgs
{
Name = "string",
Vdom = "string",
},
},
LocalIntf = "string",
},
},
DynamicSortSubtable = "string",
Name = "string",
ObjectDynamicMulticastInterfaceId = "string",
Scopetype = "string",
ZoneOnly = "string",
});
example, err := fortimanager.NewObjectDynamicMulticastInterface(ctx, "objectDynamicMulticastInterfaceResource", &fortimanager.ObjectDynamicMulticastInterfaceArgs{
Adom: pulumi.String("string"),
DefaultMapping: pulumi.String("string"),
DefmapIntf: pulumi.String("string"),
Description: pulumi.String("string"),
DynamicMappings: .ObjectDynamicMulticastInterfaceDynamicMappingTypeArray{
&.ObjectDynamicMulticastInterfaceDynamicMappingTypeArgs{
_scopes: .ObjectDynamicMulticastInterfaceDynamicMapping_ScopeArray{
&.ObjectDynamicMulticastInterfaceDynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
LocalIntf: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectDynamicMulticastInterfaceId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ZoneOnly: pulumi.String("string"),
})
var objectDynamicMulticastInterfaceResource = new ObjectDynamicMulticastInterface("objectDynamicMulticastInterfaceResource", ObjectDynamicMulticastInterfaceArgs.builder()
.adom("string")
.defaultMapping("string")
.defmapIntf("string")
.description("string")
.dynamicMappings(ObjectDynamicMulticastInterfaceDynamicMappingArgs.builder()
._scopes(ObjectDynamicMulticastInterfaceDynamicMapping_ScopeArgs.builder()
.name("string")
.vdom("string")
.build())
.localIntf("string")
.build())
.dynamicSortSubtable("string")
.name("string")
.objectDynamicMulticastInterfaceId("string")
.scopetype("string")
.zoneOnly("string")
.build());
object_dynamic_multicast_interface_resource = fortimanager.ObjectDynamicMulticastInterface("objectDynamicMulticastInterfaceResource",
adom="string",
default_mapping="string",
defmap_intf="string",
description="string",
dynamic_mappings=[{
"_scopes": [{
"name": "string",
"vdom": "string",
}],
"local_intf": "string",
}],
dynamic_sort_subtable="string",
name="string",
object_dynamic_multicast_interface_id="string",
scopetype="string",
zone_only="string")
const objectDynamicMulticastInterfaceResource = new fortimanager.ObjectDynamicMulticastInterface("objectDynamicMulticastInterfaceResource", {
adom: "string",
defaultMapping: "string",
defmapIntf: "string",
description: "string",
dynamicMappings: [{
_scopes: [{
name: "string",
vdom: "string",
}],
localIntf: "string",
}],
dynamicSortSubtable: "string",
name: "string",
objectDynamicMulticastInterfaceId: "string",
scopetype: "string",
zoneOnly: "string",
});
type: fortimanager:ObjectDynamicMulticastInterface
properties:
adom: string
defaultMapping: string
defmapIntf: string
description: string
dynamicMappings:
- _scopes:
- name: string
vdom: string
localIntf: string
dynamicSortSubtable: string
name: string
objectDynamicMulticastInterfaceId: string
scopetype: string
zoneOnly: string
ObjectDynamicMulticastInterface 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 ObjectDynamicMulticastInterface 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. - Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Description string
- Description.
- Dynamic
Mappings List<ObjectDynamic Multicast Interface 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.
- Name string
- Name.
- Object
Dynamic stringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - Zone
Only string - Zone-Only. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Description string
- Description.
- Dynamic
Mappings []ObjectDynamic Multicast Interface Dynamic Mapping Type 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.
- Name string
- Name.
- Object
Dynamic stringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - Zone
Only string - Zone-Only. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- description String
- Description.
- dynamic
Mappings List<ObjectDynamic Multicast Interface 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.
- name String
- Name.
- object
Dynamic StringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - zone
Only String - Zone-Only. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf string - Defmap-Intf.
- description string
- Description.
- dynamic
Mappings ObjectDynamic Multicast Interface 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.
- name string
- Name.
- object
Dynamic stringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - zone
Only string - Zone-Only. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default_
mapping str - Default-Mapping. Valid values:
disable
,enable
. - defmap_
intf str - Defmap-Intf.
- description str
- Description.
- dynamic_
mappings Sequence[ObjectDynamic Multicast Interface 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.
- name str
- Name.
- object_
dynamic_ strmulticast_ interface_ id - an identifier for the resource with format {{name}}.
- 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
. - zone_
only str - Zone-Only. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- description String
- Description.
- 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.
- name String
- Name.
- object
Dynamic StringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - zone
Only String - Zone-Only. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectDynamicMulticastInterface 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 ObjectDynamicMulticastInterface Resource
Get an existing ObjectDynamicMulticastInterface 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?: ObjectDynamicMulticastInterfaceState, opts?: CustomResourceOptions): ObjectDynamicMulticastInterface
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
default_mapping: Optional[str] = None,
defmap_intf: Optional[str] = None,
description: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectDynamicMulticastInterfaceDynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_dynamic_multicast_interface_id: Optional[str] = None,
scopetype: Optional[str] = None,
zone_only: Optional[str] = None) -> ObjectDynamicMulticastInterface
func GetObjectDynamicMulticastInterface(ctx *Context, name string, id IDInput, state *ObjectDynamicMulticastInterfaceState, opts ...ResourceOption) (*ObjectDynamicMulticastInterface, error)
public static ObjectDynamicMulticastInterface Get(string name, Input<string> id, ObjectDynamicMulticastInterfaceState? state, CustomResourceOptions? opts = null)
public static ObjectDynamicMulticastInterface get(String name, Output<String> id, ObjectDynamicMulticastInterfaceState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectDynamicMulticastInterface 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. - Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Description string
- Description.
- Dynamic
Mappings List<ObjectDynamic Multicast Interface 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.
- Name string
- Name.
- Object
Dynamic stringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - Zone
Only string - Zone-Only. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Description string
- Description.
- Dynamic
Mappings []ObjectDynamic Multicast Interface Dynamic Mapping Type 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.
- Name string
- Name.
- Object
Dynamic stringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - Zone
Only string - Zone-Only. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- description String
- Description.
- dynamic
Mappings List<ObjectDynamic Multicast Interface 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.
- name String
- Name.
- object
Dynamic StringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - zone
Only String - Zone-Only. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf string - Defmap-Intf.
- description string
- Description.
- dynamic
Mappings ObjectDynamic Multicast Interface 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.
- name string
- Name.
- object
Dynamic stringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - zone
Only string - Zone-Only. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default_
mapping str - Default-Mapping. Valid values:
disable
,enable
. - defmap_
intf str - Defmap-Intf.
- description str
- Description.
- dynamic_
mappings Sequence[ObjectDynamic Multicast Interface 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.
- name str
- Name.
- object_
dynamic_ strmulticast_ interface_ id - an identifier for the resource with format {{name}}.
- 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
. - zone_
only str - Zone-Only. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- description String
- Description.
- 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.
- name String
- Name.
- object
Dynamic StringMulticast Interface Id - an identifier for the resource with format {{name}}.
- 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
. - zone
Only String - Zone-Only. Valid values:
disable
,enable
.
Supporting Types
ObjectDynamicMulticastInterfaceDynamicMapping, ObjectDynamicMulticastInterfaceDynamicMappingArgs
- Local
Intf string - Local-Intf.
- _
scopes List<ObjectDynamic Multicast Interface Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Local
Intf string - Local-Intf.
- _
scopes []ObjectDynamic Multicast Interface Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
scopes List<ObjectDynamic Multicast Interface Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - local
Intf String - Local-Intf.
- _
scopes ObjectDynamic Multicast Interface Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - local
Intf string - Local-Intf.
- _
scopes Sequence[ObjectDynamic Multicast Interface Dynamic Mapping_Scope] - _Scope. The structure of
_scope
block is documented below. - local_
intf str - Local-Intf.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - local
Intf String - Local-Intf.
ObjectDynamicMulticastInterfaceDynamicMapping_Scope, ObjectDynamicMulticastInterfaceDynamicMapping_ScopeArgs
Import
ObjectDynamic MulticastInterface can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectDynamicMulticastInterface:ObjectDynamicMulticastInterface 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.