fortimanager.ObjectFspVlanDynamicMappingDhcpserverReservedaddress
Explore with Pulumi AI
Options for the DHCP server to assign IP settings to specific MAC addresses.
This resource is a sub resource for variable
reserved_address
of resourcefortimanager.ObjectFspVlanDynamicMappingDhcpserver
. Conflict and overwrite may occur if use both of them.
Create ObjectFspVlanDynamicMappingDhcpserverReservedaddress Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFspVlanDynamicMappingDhcpserverReservedaddress(name: string, args: ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs, opts?: CustomResourceOptions);
@overload
def ObjectFspVlanDynamicMappingDhcpserverReservedaddress(resource_name: str,
args: ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFspVlanDynamicMappingDhcpserverReservedaddress(resource_name: str,
opts: Optional[ResourceOptions] = None,
dynamic_mapping_name: Optional[str] = None,
vlan: Optional[str] = None,
dynamic_mapping_vdom: Optional[str] = None,
ip: Optional[str] = None,
description: Optional[str] = None,
circuit_id_type: Optional[str] = None,
circuit_id: Optional[str] = None,
fosid: Optional[float] = None,
action: Optional[str] = None,
mac: Optional[str] = None,
object_fsp_vlan_dynamic_mapping_dhcpserver_reservedaddress_id: Optional[str] = None,
remote_id: Optional[str] = None,
remote_id_type: Optional[str] = None,
scopetype: Optional[str] = None,
type: Optional[str] = None,
adom: Optional[str] = None)
func NewObjectFspVlanDynamicMappingDhcpserverReservedaddress(ctx *Context, name string, args ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs, opts ...ResourceOption) (*ObjectFspVlanDynamicMappingDhcpserverReservedaddress, error)
public ObjectFspVlanDynamicMappingDhcpserverReservedaddress(string name, ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs args, CustomResourceOptions? opts = null)
public ObjectFspVlanDynamicMappingDhcpserverReservedaddress(String name, ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs args)
public ObjectFspVlanDynamicMappingDhcpserverReservedaddress(String name, ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFspVlanDynamicMappingDhcpserverReservedaddress
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 ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs
- 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 ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs
- 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 ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs
- 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 objectFspVlanDynamicMappingDhcpserverReservedaddressResource = new Fortimanager.ObjectFspVlanDynamicMappingDhcpserverReservedaddress("objectFspVlanDynamicMappingDhcpserverReservedaddressResource", new()
{
DynamicMappingName = "string",
Vlan = "string",
DynamicMappingVdom = "string",
Ip = "string",
Description = "string",
CircuitIdType = "string",
CircuitId = "string",
Fosid = 0,
Action = "string",
Mac = "string",
ObjectFspVlanDynamicMappingDhcpserverReservedaddressId = "string",
RemoteId = "string",
RemoteIdType = "string",
Scopetype = "string",
Type = "string",
Adom = "string",
});
example, err := fortimanager.NewObjectFspVlanDynamicMappingDhcpserverReservedaddress(ctx, "objectFspVlanDynamicMappingDhcpserverReservedaddressResource", &fortimanager.ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs{
DynamicMappingName: pulumi.String("string"),
Vlan: pulumi.String("string"),
DynamicMappingVdom: pulumi.String("string"),
Ip: pulumi.String("string"),
Description: pulumi.String("string"),
CircuitIdType: pulumi.String("string"),
CircuitId: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Action: pulumi.String("string"),
Mac: pulumi.String("string"),
ObjectFspVlanDynamicMappingDhcpserverReservedaddressId: pulumi.String("string"),
RemoteId: pulumi.String("string"),
RemoteIdType: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Type: pulumi.String("string"),
Adom: pulumi.String("string"),
})
var objectFspVlanDynamicMappingDhcpserverReservedaddressResource = new ObjectFspVlanDynamicMappingDhcpserverReservedaddress("objectFspVlanDynamicMappingDhcpserverReservedaddressResource", ObjectFspVlanDynamicMappingDhcpserverReservedaddressArgs.builder()
.dynamicMappingName("string")
.vlan("string")
.dynamicMappingVdom("string")
.ip("string")
.description("string")
.circuitIdType("string")
.circuitId("string")
.fosid(0)
.action("string")
.mac("string")
.objectFspVlanDynamicMappingDhcpserverReservedaddressId("string")
.remoteId("string")
.remoteIdType("string")
.scopetype("string")
.type("string")
.adom("string")
.build());
object_fsp_vlan_dynamic_mapping_dhcpserver_reservedaddress_resource = fortimanager.ObjectFspVlanDynamicMappingDhcpserverReservedaddress("objectFspVlanDynamicMappingDhcpserverReservedaddressResource",
dynamic_mapping_name="string",
vlan="string",
dynamic_mapping_vdom="string",
ip="string",
description="string",
circuit_id_type="string",
circuit_id="string",
fosid=0,
action="string",
mac="string",
object_fsp_vlan_dynamic_mapping_dhcpserver_reservedaddress_id="string",
remote_id="string",
remote_id_type="string",
scopetype="string",
type="string",
adom="string")
const objectFspVlanDynamicMappingDhcpserverReservedaddressResource = new fortimanager.ObjectFspVlanDynamicMappingDhcpserverReservedaddress("objectFspVlanDynamicMappingDhcpserverReservedaddressResource", {
dynamicMappingName: "string",
vlan: "string",
dynamicMappingVdom: "string",
ip: "string",
description: "string",
circuitIdType: "string",
circuitId: "string",
fosid: 0,
action: "string",
mac: "string",
objectFspVlanDynamicMappingDhcpserverReservedaddressId: "string",
remoteId: "string",
remoteIdType: "string",
scopetype: "string",
type: "string",
adom: "string",
});
type: fortimanager:ObjectFspVlanDynamicMappingDhcpserverReservedaddress
properties:
action: string
adom: string
circuitId: string
circuitIdType: string
description: string
dynamicMappingName: string
dynamicMappingVdom: string
fosid: 0
ip: string
mac: string
objectFspVlanDynamicMappingDhcpserverReservedaddressId: string
remoteId: string
remoteIdType: string
scopetype: string
type: string
vlan: string
ObjectFspVlanDynamicMappingDhcpserverReservedaddress 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 ObjectFspVlanDynamicMappingDhcpserverReservedaddress resource accepts the following input properties:
- Dynamic
Mapping stringName - Dynamic Mapping Name.
- Dynamic
Mapping stringVdom - Dynamic Mapping Vdom.
- Vlan string
- Vlan.
- Action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- Circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - Description string
- Description.
- Fosid double
- ID.
- Ip string
- IP address to be reserved for the MAC address.
- Mac string
- MAC address of the client that will get the reserved IP address.
- Object
Fsp stringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- Remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- Remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - 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
. - Type string
- DHCP reserved-address type. Valid values:
mac
,option82
.
- Dynamic
Mapping stringName - Dynamic Mapping Name.
- Dynamic
Mapping stringVdom - Dynamic Mapping Vdom.
- Vlan string
- Vlan.
- Action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- Circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - Description string
- Description.
- Fosid float64
- ID.
- Ip string
- IP address to be reserved for the MAC address.
- Mac string
- MAC address of the client that will get the reserved IP address.
- Object
Fsp stringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- Remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- Remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - 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
. - Type string
- DHCP reserved-address type. Valid values:
mac
,option82
.
- dynamic
Mapping StringName - Dynamic Mapping Name.
- dynamic
Mapping StringVdom - Dynamic Mapping Vdom.
- vlan String
- Vlan.
- action String
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit
Id String - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id StringType - DHCP option type. Valid values:
hex
,string
. - description String
- Description.
- fosid Double
- ID.
- ip String
- IP address to be reserved for the MAC address.
- mac String
- MAC address of the client that will get the reserved IP address.
- object
Fsp StringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- remote
Id String - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id StringType - DHCP option type. Valid values:
hex
,string
. - 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
. - type String
- DHCP reserved-address type. Valid values:
mac
,option82
.
- dynamic
Mapping stringName - Dynamic Mapping Name.
- dynamic
Mapping stringVdom - Dynamic Mapping Vdom.
- vlan string
- Vlan.
- action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - description string
- Description.
- fosid number
- ID.
- ip string
- IP address to be reserved for the MAC address.
- mac string
- MAC address of the client that will get the reserved IP address.
- object
Fsp stringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - 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
. - type string
- DHCP reserved-address type. Valid values:
mac
,option82
.
- dynamic_
mapping_ strname - Dynamic Mapping Name.
- dynamic_
mapping_ strvdom - Dynamic Mapping Vdom.
- vlan str
- Vlan.
- action str
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit_
id str - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit_
id_ strtype - DHCP option type. Valid values:
hex
,string
. - description str
- Description.
- fosid float
- ID.
- ip str
- IP address to be reserved for the MAC address.
- mac str
- MAC address of the client that will get the reserved IP address.
- object_
fsp_ strvlan_ dynamic_ mapping_ dhcpserver_ reservedaddress_ id - an identifier for the resource with format {{fosid}}.
- remote_
id str - Option 82 remote-ID of the client that will get the reserved IP address.
- remote_
id_ strtype - DHCP option type. Valid values:
hex
,string
. - 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
. - type str
- DHCP reserved-address type. Valid values:
mac
,option82
.
- dynamic
Mapping StringName - Dynamic Mapping Name.
- dynamic
Mapping StringVdom - Dynamic Mapping Vdom.
- vlan String
- Vlan.
- action String
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit
Id String - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id StringType - DHCP option type. Valid values:
hex
,string
. - description String
- Description.
- fosid Number
- ID.
- ip String
- IP address to be reserved for the MAC address.
- mac String
- MAC address of the client that will get the reserved IP address.
- object
Fsp StringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- remote
Id String - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id StringType - DHCP option type. Valid values:
hex
,string
. - 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
. - type String
- DHCP reserved-address type. Valid values:
mac
,option82
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFspVlanDynamicMappingDhcpserverReservedaddress 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 ObjectFspVlanDynamicMappingDhcpserverReservedaddress Resource
Get an existing ObjectFspVlanDynamicMappingDhcpserverReservedaddress 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?: ObjectFspVlanDynamicMappingDhcpserverReservedaddressState, opts?: CustomResourceOptions): ObjectFspVlanDynamicMappingDhcpserverReservedaddress
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
circuit_id: Optional[str] = None,
circuit_id_type: Optional[str] = None,
description: Optional[str] = None,
dynamic_mapping_name: Optional[str] = None,
dynamic_mapping_vdom: Optional[str] = None,
fosid: Optional[float] = None,
ip: Optional[str] = None,
mac: Optional[str] = None,
object_fsp_vlan_dynamic_mapping_dhcpserver_reservedaddress_id: Optional[str] = None,
remote_id: Optional[str] = None,
remote_id_type: Optional[str] = None,
scopetype: Optional[str] = None,
type: Optional[str] = None,
vlan: Optional[str] = None) -> ObjectFspVlanDynamicMappingDhcpserverReservedaddress
func GetObjectFspVlanDynamicMappingDhcpserverReservedaddress(ctx *Context, name string, id IDInput, state *ObjectFspVlanDynamicMappingDhcpserverReservedaddressState, opts ...ResourceOption) (*ObjectFspVlanDynamicMappingDhcpserverReservedaddress, error)
public static ObjectFspVlanDynamicMappingDhcpserverReservedaddress Get(string name, Input<string> id, ObjectFspVlanDynamicMappingDhcpserverReservedaddressState? state, CustomResourceOptions? opts = null)
public static ObjectFspVlanDynamicMappingDhcpserverReservedaddress get(String name, Output<String> id, ObjectFspVlanDynamicMappingDhcpserverReservedaddressState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFspVlanDynamicMappingDhcpserverReservedaddress 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.
- Action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- Circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - Description string
- Description.
- Dynamic
Mapping stringName - Dynamic Mapping Name.
- Dynamic
Mapping stringVdom - Dynamic Mapping Vdom.
- Fosid double
- ID.
- Ip string
- IP address to be reserved for the MAC address.
- Mac string
- MAC address of the client that will get the reserved IP address.
- Object
Fsp stringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- Remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- Remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - 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
. - Type string
- DHCP reserved-address type. Valid values:
mac
,option82
. - Vlan string
- Vlan.
- Action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- Circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - Description string
- Description.
- Dynamic
Mapping stringName - Dynamic Mapping Name.
- Dynamic
Mapping stringVdom - Dynamic Mapping Vdom.
- Fosid float64
- ID.
- Ip string
- IP address to be reserved for the MAC address.
- Mac string
- MAC address of the client that will get the reserved IP address.
- Object
Fsp stringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- Remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- Remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - 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
. - Type string
- DHCP reserved-address type. Valid values:
mac
,option82
. - Vlan string
- Vlan.
- action String
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit
Id String - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id StringType - DHCP option type. Valid values:
hex
,string
. - description String
- Description.
- dynamic
Mapping StringName - Dynamic Mapping Name.
- dynamic
Mapping StringVdom - Dynamic Mapping Vdom.
- fosid Double
- ID.
- ip String
- IP address to be reserved for the MAC address.
- mac String
- MAC address of the client that will get the reserved IP address.
- object
Fsp StringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- remote
Id String - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id StringType - DHCP option type. Valid values:
hex
,string
. - 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
. - type String
- DHCP reserved-address type. Valid values:
mac
,option82
. - vlan String
- Vlan.
- action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - description string
- Description.
- dynamic
Mapping stringName - Dynamic Mapping Name.
- dynamic
Mapping stringVdom - Dynamic Mapping Vdom.
- fosid number
- ID.
- ip string
- IP address to be reserved for the MAC address.
- mac string
- MAC address of the client that will get the reserved IP address.
- object
Fsp stringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - 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
. - type string
- DHCP reserved-address type. Valid values:
mac
,option82
. - vlan string
- Vlan.
- action str
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit_
id str - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit_
id_ strtype - DHCP option type. Valid values:
hex
,string
. - description str
- Description.
- dynamic_
mapping_ strname - Dynamic Mapping Name.
- dynamic_
mapping_ strvdom - Dynamic Mapping Vdom.
- fosid float
- ID.
- ip str
- IP address to be reserved for the MAC address.
- mac str
- MAC address of the client that will get the reserved IP address.
- object_
fsp_ strvlan_ dynamic_ mapping_ dhcpserver_ reservedaddress_ id - an identifier for the resource with format {{fosid}}.
- remote_
id str - Option 82 remote-ID of the client that will get the reserved IP address.
- remote_
id_ strtype - DHCP option type. Valid values:
hex
,string
. - 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
. - type str
- DHCP reserved-address type. Valid values:
mac
,option82
. - vlan str
- Vlan.
- action String
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - circuit
Id String - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id StringType - DHCP option type. Valid values:
hex
,string
. - description String
- Description.
- dynamic
Mapping StringName - Dynamic Mapping Name.
- dynamic
Mapping StringVdom - Dynamic Mapping Vdom.
- fosid Number
- ID.
- ip String
- IP address to be reserved for the MAC address.
- mac String
- MAC address of the client that will get the reserved IP address.
- object
Fsp StringVlan Dynamic Mapping Dhcpserver Reservedaddress Id - an identifier for the resource with format {{fosid}}.
- remote
Id String - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id StringType - DHCP option type. Valid values:
hex
,string
. - 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
. - type String
- DHCP reserved-address type. Valid values:
mac
,option82
. - vlan String
- Vlan.
Import
ObjectFsp VlanDynamicMappingDhcpServerReservedAddress can be imported using any of these accepted formats:
Set import_options = [“vlan=YOUR_VALUE”, “dynamic_mapping_name=YOUR_VALUE”, “dynamic_mapping_vdom=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFspVlanDynamicMappingDhcpserverReservedaddress:ObjectFspVlanDynamicMappingDhcpserverReservedaddress labelname {{fosid}}
$ 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.