fortimanager.ObjectDynamicInterface
Explore with Pulumi AI
ObjectDynamic Interface
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
dynamic_mapping
:fortimanager.ObjectDynamicInterfaceDynamicMapping
platform_mapping
:fortimanager.ObjectDynamicInterfacePlatformMapping
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectDynamicInterface("trname", {
defaultMapping: "disable",
defmapIntrazoneDeny: "disable",
description: "This is a Terraform example",
singleIntf: "enable",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectDynamicInterface("trname",
default_mapping="disable",
defmap_intrazone_deny="disable",
description="This is a Terraform example",
single_intf="enable")
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.NewObjectDynamicInterface(ctx, "trname", &fortimanager.ObjectDynamicInterfaceArgs{
DefaultMapping: pulumi.String("disable"),
DefmapIntrazoneDeny: pulumi.String("disable"),
Description: pulumi.String("This is a Terraform example"),
SingleIntf: pulumi.String("enable"),
})
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.ObjectDynamicInterface("trname", new()
{
DefaultMapping = "disable",
DefmapIntrazoneDeny = "disable",
Description = "This is a Terraform example",
SingleIntf = "enable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectDynamicInterface;
import com.pulumi.fortimanager.ObjectDynamicInterfaceArgs;
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 ObjectDynamicInterface("trname", ObjectDynamicInterfaceArgs.builder()
.defaultMapping("disable")
.defmapIntrazoneDeny("disable")
.description("This is a Terraform example")
.singleIntf("enable")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectDynamicInterface
properties:
defaultMapping: disable
defmapIntrazoneDeny: disable
description: This is a Terraform example
singleIntf: enable
Create ObjectDynamicInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectDynamicInterface(name: string, args?: ObjectDynamicInterfaceArgs, opts?: CustomResourceOptions);
@overload
def ObjectDynamicInterface(resource_name: str,
args: Optional[ObjectDynamicInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectDynamicInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
default_mapping: Optional[str] = None,
defmap_intf: Optional[str] = None,
defmap_intrazone_deny: Optional[str] = None,
defmap_zonemembers: Optional[Sequence[str]] = None,
description: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectDynamicInterfaceDynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
egress_shaping_profile: Optional[str] = None,
ingress_shaping_profile: Optional[str] = None,
name: Optional[str] = None,
object_dynamic_interface_id: Optional[str] = None,
platform_mappings: Optional[Sequence[ObjectDynamicInterfacePlatformMappingArgs]] = None,
scopetype: Optional[str] = None,
single_intf: Optional[str] = None,
wildcard: Optional[str] = None,
wildcard_intf: Optional[str] = None,
zone_only: Optional[str] = None)
func NewObjectDynamicInterface(ctx *Context, name string, args *ObjectDynamicInterfaceArgs, opts ...ResourceOption) (*ObjectDynamicInterface, error)
public ObjectDynamicInterface(string name, ObjectDynamicInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public ObjectDynamicInterface(String name, ObjectDynamicInterfaceArgs args)
public ObjectDynamicInterface(String name, ObjectDynamicInterfaceArgs args, CustomResourceOptions options)
type: fortimanager:ObjectDynamicInterface
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 ObjectDynamicInterfaceArgs
- 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 ObjectDynamicInterfaceArgs
- 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 ObjectDynamicInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectDynamicInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectDynamicInterfaceArgs
- 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 objectDynamicInterfaceResource = new Fortimanager.ObjectDynamicInterface("objectDynamicInterfaceResource", new()
{
Adom = "string",
Color = 0,
DefaultMapping = "string",
DefmapIntf = "string",
DefmapIntrazoneDeny = "string",
DefmapZonemembers = new[]
{
"string",
},
Description = "string",
DynamicMappings = new[]
{
new Fortimanager.Inputs.ObjectDynamicInterfaceDynamicMappingArgs
{
_scopes = new[]
{
new Fortimanager.Inputs.ObjectDynamicInterfaceDynamicMapping_ScopeArgs
{
Name = "string",
Vdom = "string",
},
},
EgressShapingProfile = "string",
IngressShapingProfile = "string",
IntrazoneDeny = "string",
LocalIntfs = new[]
{
"string",
},
},
},
DynamicSortSubtable = "string",
EgressShapingProfile = "string",
IngressShapingProfile = "string",
Name = "string",
ObjectDynamicInterfaceId = "string",
PlatformMappings = new[]
{
new Fortimanager.Inputs.ObjectDynamicInterfacePlatformMappingArgs
{
EgressShapingProfile = "string",
IngressShapingProfile = "string",
IntfZone = "string",
IntrazoneDeny = "string",
Name = "string",
},
},
Scopetype = "string",
SingleIntf = "string",
Wildcard = "string",
WildcardIntf = "string",
ZoneOnly = "string",
});
example, err := fortimanager.NewObjectDynamicInterface(ctx, "objectDynamicInterfaceResource", &fortimanager.ObjectDynamicInterfaceArgs{
Adom: pulumi.String("string"),
Color: pulumi.Float64(0),
DefaultMapping: pulumi.String("string"),
DefmapIntf: pulumi.String("string"),
DefmapIntrazoneDeny: pulumi.String("string"),
DefmapZonemembers: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DynamicMappings: .ObjectDynamicInterfaceDynamicMappingTypeArray{
&.ObjectDynamicInterfaceDynamicMappingTypeArgs{
_scopes: .ObjectDynamicInterfaceDynamicMapping_ScopeArray{
&.ObjectDynamicInterfaceDynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
EgressShapingProfile: pulumi.String("string"),
IngressShapingProfile: pulumi.String("string"),
IntrazoneDeny: pulumi.String("string"),
LocalIntfs: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DynamicSortSubtable: pulumi.String("string"),
EgressShapingProfile: pulumi.String("string"),
IngressShapingProfile: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectDynamicInterfaceId: pulumi.String("string"),
PlatformMappings: .ObjectDynamicInterfacePlatformMappingTypeArray{
&.ObjectDynamicInterfacePlatformMappingTypeArgs{
EgressShapingProfile: pulumi.String("string"),
IngressShapingProfile: pulumi.String("string"),
IntfZone: pulumi.String("string"),
IntrazoneDeny: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Scopetype: pulumi.String("string"),
SingleIntf: pulumi.String("string"),
Wildcard: pulumi.String("string"),
WildcardIntf: pulumi.String("string"),
ZoneOnly: pulumi.String("string"),
})
var objectDynamicInterfaceResource = new ObjectDynamicInterface("objectDynamicInterfaceResource", ObjectDynamicInterfaceArgs.builder()
.adom("string")
.color(0)
.defaultMapping("string")
.defmapIntf("string")
.defmapIntrazoneDeny("string")
.defmapZonemembers("string")
.description("string")
.dynamicMappings(ObjectDynamicInterfaceDynamicMappingArgs.builder()
._scopes(ObjectDynamicInterfaceDynamicMapping_ScopeArgs.builder()
.name("string")
.vdom("string")
.build())
.egressShapingProfile("string")
.ingressShapingProfile("string")
.intrazoneDeny("string")
.localIntfs("string")
.build())
.dynamicSortSubtable("string")
.egressShapingProfile("string")
.ingressShapingProfile("string")
.name("string")
.objectDynamicInterfaceId("string")
.platformMappings(ObjectDynamicInterfacePlatformMappingArgs.builder()
.egressShapingProfile("string")
.ingressShapingProfile("string")
.intfZone("string")
.intrazoneDeny("string")
.name("string")
.build())
.scopetype("string")
.singleIntf("string")
.wildcard("string")
.wildcardIntf("string")
.zoneOnly("string")
.build());
object_dynamic_interface_resource = fortimanager.ObjectDynamicInterface("objectDynamicInterfaceResource",
adom="string",
color=0,
default_mapping="string",
defmap_intf="string",
defmap_intrazone_deny="string",
defmap_zonemembers=["string"],
description="string",
dynamic_mappings=[{
"_scopes": [{
"name": "string",
"vdom": "string",
}],
"egress_shaping_profile": "string",
"ingress_shaping_profile": "string",
"intrazone_deny": "string",
"local_intfs": ["string"],
}],
dynamic_sort_subtable="string",
egress_shaping_profile="string",
ingress_shaping_profile="string",
name="string",
object_dynamic_interface_id="string",
platform_mappings=[{
"egress_shaping_profile": "string",
"ingress_shaping_profile": "string",
"intf_zone": "string",
"intrazone_deny": "string",
"name": "string",
}],
scopetype="string",
single_intf="string",
wildcard="string",
wildcard_intf="string",
zone_only="string")
const objectDynamicInterfaceResource = new fortimanager.ObjectDynamicInterface("objectDynamicInterfaceResource", {
adom: "string",
color: 0,
defaultMapping: "string",
defmapIntf: "string",
defmapIntrazoneDeny: "string",
defmapZonemembers: ["string"],
description: "string",
dynamicMappings: [{
_scopes: [{
name: "string",
vdom: "string",
}],
egressShapingProfile: "string",
ingressShapingProfile: "string",
intrazoneDeny: "string",
localIntfs: ["string"],
}],
dynamicSortSubtable: "string",
egressShapingProfile: "string",
ingressShapingProfile: "string",
name: "string",
objectDynamicInterfaceId: "string",
platformMappings: [{
egressShapingProfile: "string",
ingressShapingProfile: "string",
intfZone: "string",
intrazoneDeny: "string",
name: "string",
}],
scopetype: "string",
singleIntf: "string",
wildcard: "string",
wildcardIntf: "string",
zoneOnly: "string",
});
type: fortimanager:ObjectDynamicInterface
properties:
adom: string
color: 0
defaultMapping: string
defmapIntf: string
defmapIntrazoneDeny: string
defmapZonemembers:
- string
description: string
dynamicMappings:
- _scopes:
- name: string
vdom: string
egressShapingProfile: string
ingressShapingProfile: string
intrazoneDeny: string
localIntfs:
- string
dynamicSortSubtable: string
egressShapingProfile: string
ingressShapingProfile: string
name: string
objectDynamicInterfaceId: string
platformMappings:
- egressShapingProfile: string
ingressShapingProfile: string
intfZone: string
intrazoneDeny: string
name: string
scopetype: string
singleIntf: string
wildcard: string
wildcardIntf: string
zoneOnly: string
ObjectDynamicInterface 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 ObjectDynamicInterface 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. - Color double
- Color.
- Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Defmap
Intrazone stringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - Defmap
Zonemembers List<string> - Defmap-Zonemember.
- Description string
- Description.
- Dynamic
Mappings List<ObjectDynamic 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.
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Name string
- Name.
- Object
Dynamic stringInterface Id - an identifier for the resource with format {{name}}.
- Platform
Mappings List<ObjectDynamic Interface Platform Mapping> - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - Single
Intf string - Single-Intf. Valid values:
disable
,enable
. - Wildcard string
- Wildcard. Valid values:
disable
,enable
. - Wildcard
Intf string - Wildcard-Intf.
- 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. - Color float64
- Color.
- Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Defmap
Intrazone stringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - Defmap
Zonemembers []string - Defmap-Zonemember.
- Description string
- Description.
- Dynamic
Mappings []ObjectDynamic 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.
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Name string
- Name.
- Object
Dynamic stringInterface Id - an identifier for the resource with format {{name}}.
- Platform
Mappings []ObjectDynamic Interface Platform Mapping Type Args - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - Single
Intf string - Single-Intf. Valid values:
disable
,enable
. - Wildcard string
- Wildcard. Valid values:
disable
,enable
. - Wildcard
Intf string - Wildcard-Intf.
- 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. - color Double
- Color.
- default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- defmap
Intrazone StringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap
Zonemembers List<String> - Defmap-Zonemember.
- description String
- Description.
- dynamic
Mappings List<ObjectDynamic 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.
- egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- name String
- Name.
- object
Dynamic StringInterface Id - an identifier for the resource with format {{name}}.
- platform
Mappings List<ObjectDynamic Interface Platform Mapping> - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single
Intf String - Single-Intf. Valid values:
disable
,enable
. - wildcard String
- Wildcard. Valid values:
disable
,enable
. - wildcard
Intf String - Wildcard-Intf.
- 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. - color number
- Color.
- default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf string - Defmap-Intf.
- defmap
Intrazone stringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap
Zonemembers string[] - Defmap-Zonemember.
- description string
- Description.
- dynamic
Mappings ObjectDynamic 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.
- egress
Shaping stringProfile - Egress-Shaping-Profile.
- ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- name string
- Name.
- object
Dynamic stringInterface Id - an identifier for the resource with format {{name}}.
- platform
Mappings ObjectDynamic Interface Platform Mapping[] - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single
Intf string - Single-Intf. Valid values:
disable
,enable
. - wildcard string
- Wildcard. Valid values:
disable
,enable
. - wildcard
Intf string - Wildcard-Intf.
- 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. - color float
- Color.
- default_
mapping str - Default-Mapping. Valid values:
disable
,enable
. - defmap_
intf str - Defmap-Intf.
- defmap_
intrazone_ strdeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap_
zonemembers Sequence[str] - Defmap-Zonemember.
- description str
- Description.
- dynamic_
mappings Sequence[ObjectDynamic 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.
- egress_
shaping_ strprofile - Egress-Shaping-Profile.
- ingress_
shaping_ strprofile - Ingress-Shaping-Profile.
- name str
- Name.
- object_
dynamic_ strinterface_ id - an identifier for the resource with format {{name}}.
- platform_
mappings Sequence[ObjectDynamic Interface Platform Mapping Args] - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single_
intf str - Single-Intf. Valid values:
disable
,enable
. - wildcard str
- Wildcard. Valid values:
disable
,enable
. - wildcard_
intf str - Wildcard-Intf.
- 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. - color Number
- Color.
- default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- defmap
Intrazone StringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap
Zonemembers List<String> - Defmap-Zonemember.
- 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.
- egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- name String
- Name.
- object
Dynamic StringInterface Id - an identifier for the resource with format {{name}}.
- platform
Mappings List<Property Map> - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single
Intf String - Single-Intf. Valid values:
disable
,enable
. - wildcard String
- Wildcard. Valid values:
disable
,enable
. - wildcard
Intf String - Wildcard-Intf.
- zone
Only String - Zone-Only. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectDynamicInterface 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 ObjectDynamicInterface Resource
Get an existing ObjectDynamicInterface 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?: ObjectDynamicInterfaceState, opts?: CustomResourceOptions): ObjectDynamicInterface
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
default_mapping: Optional[str] = None,
defmap_intf: Optional[str] = None,
defmap_intrazone_deny: Optional[str] = None,
defmap_zonemembers: Optional[Sequence[str]] = None,
description: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectDynamicInterfaceDynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
egress_shaping_profile: Optional[str] = None,
ingress_shaping_profile: Optional[str] = None,
name: Optional[str] = None,
object_dynamic_interface_id: Optional[str] = None,
platform_mappings: Optional[Sequence[ObjectDynamicInterfacePlatformMappingArgs]] = None,
scopetype: Optional[str] = None,
single_intf: Optional[str] = None,
wildcard: Optional[str] = None,
wildcard_intf: Optional[str] = None,
zone_only: Optional[str] = None) -> ObjectDynamicInterface
func GetObjectDynamicInterface(ctx *Context, name string, id IDInput, state *ObjectDynamicInterfaceState, opts ...ResourceOption) (*ObjectDynamicInterface, error)
public static ObjectDynamicInterface Get(string name, Input<string> id, ObjectDynamicInterfaceState? state, CustomResourceOptions? opts = null)
public static ObjectDynamicInterface get(String name, Output<String> id, ObjectDynamicInterfaceState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectDynamicInterface 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. - Color double
- Color.
- Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Defmap
Intrazone stringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - Defmap
Zonemembers List<string> - Defmap-Zonemember.
- Description string
- Description.
- Dynamic
Mappings List<ObjectDynamic 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.
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Name string
- Name.
- Object
Dynamic stringInterface Id - an identifier for the resource with format {{name}}.
- Platform
Mappings List<ObjectDynamic Interface Platform Mapping> - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - Single
Intf string - Single-Intf. Valid values:
disable
,enable
. - Wildcard string
- Wildcard. Valid values:
disable
,enable
. - Wildcard
Intf string - Wildcard-Intf.
- 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. - Color float64
- Color.
- Default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - Defmap
Intf string - Defmap-Intf.
- Defmap
Intrazone stringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - Defmap
Zonemembers []string - Defmap-Zonemember.
- Description string
- Description.
- Dynamic
Mappings []ObjectDynamic 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.
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Name string
- Name.
- Object
Dynamic stringInterface Id - an identifier for the resource with format {{name}}.
- Platform
Mappings []ObjectDynamic Interface Platform Mapping Type Args - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - Single
Intf string - Single-Intf. Valid values:
disable
,enable
. - Wildcard string
- Wildcard. Valid values:
disable
,enable
. - Wildcard
Intf string - Wildcard-Intf.
- 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. - color Double
- Color.
- default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- defmap
Intrazone StringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap
Zonemembers List<String> - Defmap-Zonemember.
- description String
- Description.
- dynamic
Mappings List<ObjectDynamic 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.
- egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- name String
- Name.
- object
Dynamic StringInterface Id - an identifier for the resource with format {{name}}.
- platform
Mappings List<ObjectDynamic Interface Platform Mapping> - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single
Intf String - Single-Intf. Valid values:
disable
,enable
. - wildcard String
- Wildcard. Valid values:
disable
,enable
. - wildcard
Intf String - Wildcard-Intf.
- 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. - color number
- Color.
- default
Mapping string - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf string - Defmap-Intf.
- defmap
Intrazone stringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap
Zonemembers string[] - Defmap-Zonemember.
- description string
- Description.
- dynamic
Mappings ObjectDynamic 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.
- egress
Shaping stringProfile - Egress-Shaping-Profile.
- ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- name string
- Name.
- object
Dynamic stringInterface Id - an identifier for the resource with format {{name}}.
- platform
Mappings ObjectDynamic Interface Platform Mapping[] - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single
Intf string - Single-Intf. Valid values:
disable
,enable
. - wildcard string
- Wildcard. Valid values:
disable
,enable
. - wildcard
Intf string - Wildcard-Intf.
- 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. - color float
- Color.
- default_
mapping str - Default-Mapping. Valid values:
disable
,enable
. - defmap_
intf str - Defmap-Intf.
- defmap_
intrazone_ strdeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap_
zonemembers Sequence[str] - Defmap-Zonemember.
- description str
- Description.
- dynamic_
mappings Sequence[ObjectDynamic 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.
- egress_
shaping_ strprofile - Egress-Shaping-Profile.
- ingress_
shaping_ strprofile - Ingress-Shaping-Profile.
- name str
- Name.
- object_
dynamic_ strinterface_ id - an identifier for the resource with format {{name}}.
- platform_
mappings Sequence[ObjectDynamic Interface Platform Mapping Args] - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single_
intf str - Single-Intf. Valid values:
disable
,enable
. - wildcard str
- Wildcard. Valid values:
disable
,enable
. - wildcard_
intf str - Wildcard-Intf.
- 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. - color Number
- Color.
- default
Mapping String - Default-Mapping. Valid values:
disable
,enable
. - defmap
Intf String - Defmap-Intf.
- defmap
Intrazone StringDeny - Defmap-Intrazone-Deny. Valid values:
disable
,enable
. - defmap
Zonemembers List<String> - Defmap-Zonemember.
- 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.
- egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- name String
- Name.
- object
Dynamic StringInterface Id - an identifier for the resource with format {{name}}.
- platform
Mappings List<Property Map> - Platform_Mapping. The structure of
platform_mapping
block is documented below. - 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
. - single
Intf String - Single-Intf. Valid values:
disable
,enable
. - wildcard String
- Wildcard. Valid values:
disable
,enable
. - wildcard
Intf String - Wildcard-Intf.
- zone
Only String - Zone-Only. Valid values:
disable
,enable
.
Supporting Types
ObjectDynamicInterfaceDynamicMapping, ObjectDynamicInterfaceDynamicMappingArgs
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Intrazone
Deny string - Intrazone-Deny. Valid values:
disable
,enable
. - Local
Intfs List<string> - Local-Intf.
- _
scopes List<ObjectDynamic Interface Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Intrazone
Deny string - Intrazone-Deny. Valid values:
disable
,enable
. - Local
Intfs []string - Local-Intf.
- _
scopes []ObjectDynamic Interface Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
scopes List<ObjectDynamic Interface Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- intrazone
Deny String - Intrazone-Deny. Valid values:
disable
,enable
. - local
Intfs List<String> - Local-Intf.
- _
scopes ObjectDynamic Interface Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - egress
Shaping stringProfile - Egress-Shaping-Profile.
- ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- intrazone
Deny string - Intrazone-Deny. Valid values:
disable
,enable
. - local
Intfs string[] - Local-Intf.
- _
scopes Sequence[ObjectDynamic Interface Dynamic Mapping_Scope] - _Scope. The structure of
_scope
block is documented below. - egress_
shaping_ strprofile - Egress-Shaping-Profile.
- ingress_
shaping_ strprofile - Ingress-Shaping-Profile.
- intrazone_
deny str - Intrazone-Deny. Valid values:
disable
,enable
. - local_
intfs Sequence[str] - Local-Intf.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- intrazone
Deny String - Intrazone-Deny. Valid values:
disable
,enable
. - local
Intfs List<String> - Local-Intf.
ObjectDynamicInterfaceDynamicMapping_Scope, ObjectDynamicInterfaceDynamicMapping_ScopeArgs
ObjectDynamicInterfacePlatformMapping, ObjectDynamicInterfacePlatformMappingArgs
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Intf
Zone string - Intf-Zone.
- Intrazone
Deny string - Intrazone-Deny. Valid values:
disable
,enable
. - Name string
- Name.
- Egress
Shaping stringProfile - Egress-Shaping-Profile.
- Ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- Intf
Zone string - Intf-Zone.
- Intrazone
Deny string - Intrazone-Deny. Valid values:
disable
,enable
. - Name string
- Name.
- egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- intf
Zone String - Intf-Zone.
- intrazone
Deny String - Intrazone-Deny. Valid values:
disable
,enable
. - name String
- Name.
- egress
Shaping stringProfile - Egress-Shaping-Profile.
- ingress
Shaping stringProfile - Ingress-Shaping-Profile.
- intf
Zone string - Intf-Zone.
- intrazone
Deny string - Intrazone-Deny. Valid values:
disable
,enable
. - name string
- Name.
- egress_
shaping_ strprofile - Egress-Shaping-Profile.
- ingress_
shaping_ strprofile - Ingress-Shaping-Profile.
- intf_
zone str - Intf-Zone.
- intrazone_
deny str - Intrazone-Deny. Valid values:
disable
,enable
. - name str
- Name.
- egress
Shaping StringProfile - Egress-Shaping-Profile.
- ingress
Shaping StringProfile - Ingress-Shaping-Profile.
- intf
Zone String - Intf-Zone.
- intrazone
Deny String - Intrazone-Deny. Valid values:
disable
,enable
. - name String
- Name.
Import
ObjectDynamic Interface can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectDynamicInterface:ObjectDynamicInterface 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.