fortios.wirelesscontroller.Address
Explore with Pulumi AI
Configure the client with its MAC address. Applies to FortiOS Version 6.2.4,6.2.6,6.4.0,6.4.1,6.4.2,6.4.10,6.4.11,6.4.12,6.4.13,6.4.14,6.4.15,7.0.0,7.0.1,7.0.2,7.0.3,7.0.4,7.0.5,7.0.6,7.0.7,7.0.8,7.0.9,7.0.10,7.0.11,7.0.12,7.0.13,7.0.14,7.0.15
.
Create Address Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Address(name: string, args?: AddressArgs, opts?: CustomResourceOptions);
@overload
def Address(resource_name: str,
args: Optional[AddressArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Address(resource_name: str,
opts: Optional[ResourceOptions] = None,
fosid: Optional[str] = None,
mac: Optional[str] = None,
policy: Optional[str] = None,
vdomparam: Optional[str] = None)
func NewAddress(ctx *Context, name string, args *AddressArgs, opts ...ResourceOption) (*Address, error)
public Address(string name, AddressArgs? args = null, CustomResourceOptions? opts = null)
public Address(String name, AddressArgs args)
public Address(String name, AddressArgs args, CustomResourceOptions options)
type: fortios:wirelesscontroller:Address
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 AddressArgs
- 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 AddressArgs
- 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 AddressArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AddressArgs
- 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 fortiosAddressResource = new Fortios.Wirelesscontroller.Address("fortiosAddressResource", new()
{
Fosid = "string",
Mac = "string",
Policy = "string",
Vdomparam = "string",
});
example, err := wirelesscontroller.NewAddress(ctx, "fortiosAddressResource", &wirelesscontroller.AddressArgs{
Fosid: pulumi.String("string"),
Mac: pulumi.String("string"),
Policy: pulumi.String("string"),
Vdomparam: pulumi.String("string"),
})
var fortiosAddressResource = new Address("fortiosAddressResource", AddressArgs.builder()
.fosid("string")
.mac("string")
.policy("string")
.vdomparam("string")
.build());
fortios_address_resource = fortios.wirelesscontroller.Address("fortiosAddressResource",
fosid="string",
mac="string",
policy="string",
vdomparam="string")
const fortiosAddressResource = new fortios.wirelesscontroller.Address("fortiosAddressResource", {
fosid: "string",
mac: "string",
policy: "string",
vdomparam: "string",
});
type: fortios:wirelesscontroller:Address
properties:
fosid: string
mac: string
policy: string
vdomparam: string
Address Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Address resource accepts the following input properties:
- Fosid string
- ID.
- Mac string
- MAC address.
- Policy string
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Fosid string
- ID.
- Mac string
- MAC address.
- Policy string
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid String
- ID.
- mac String
- MAC address.
- policy String
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid string
- ID.
- mac string
- MAC address.
- policy string
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid str
- ID.
- mac str
- MAC address.
- policy str
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid String
- ID.
- mac String
- MAC address.
- policy String
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Address 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 Address Resource
Get an existing Address 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?: AddressState, opts?: CustomResourceOptions): Address
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
fosid: Optional[str] = None,
mac: Optional[str] = None,
policy: Optional[str] = None,
vdomparam: Optional[str] = None) -> Address
func GetAddress(ctx *Context, name string, id IDInput, state *AddressState, opts ...ResourceOption) (*Address, error)
public static Address Get(string name, Input<string> id, AddressState? state, CustomResourceOptions? opts = null)
public static Address get(String name, Output<String> id, AddressState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Fosid string
- ID.
- Mac string
- MAC address.
- Policy string
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Fosid string
- ID.
- Mac string
- MAC address.
- Policy string
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid String
- ID.
- mac String
- MAC address.
- policy String
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid string
- ID.
- mac string
- MAC address.
- policy string
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid str
- ID.
- mac str
- MAC address.
- policy str
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- fosid String
- ID.
- mac String
- MAC address.
- policy String
- Allow or block the client with this MAC address. Valid values:
allow
,deny
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Import
WirelessController Address can be imported using any of these accepted formats:
$ pulumi import fortios:wirelesscontroller/address:Address labelname {{fosid}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:wirelesscontroller/address:Address labelname {{fosid}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.