1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod

Explore with Pulumi AI

EAP Methods.

This resource is a sub resource for variable eap_method of resource fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailist. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • auth_param: fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthparam

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname2ObjectWirelesscontrollerHotspot20Anqpnairealm = new fortimanager.ObjectWirelesscontrollerHotspot20Anqpnairealm("trname2ObjectWirelesscontrollerHotspot20Anqpnairealm", {});
const trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist = new fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailist("trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist", {anqpNaiRealm: trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.name}, {
    dependsOn: [trname2ObjectWirelesscontrollerHotspot20Anqpnairealm],
});
const trname = new fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("trname", {
    index: 2,
    method: "eap-md5",
    anqpNaiRealm: trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.name,
    naiList: trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist.name,
}, {
    dependsOn: [trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname2_object_wirelesscontroller_hotspot20_anqpnairealm = fortimanager.ObjectWirelesscontrollerHotspot20Anqpnairealm("trname2ObjectWirelesscontrollerHotspot20Anqpnairealm")
trname2_object_wirelesscontroller_hotspot20_anqpnairealm_nailist = fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailist("trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist", anqp_nai_realm=trname2_object_wirelesscontroller_hotspot20_anqpnairealm.name,
opts = pulumi.ResourceOptions(depends_on=[trname2_object_wirelesscontroller_hotspot20_anqpnairealm]))
trname = fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("trname",
    index=2,
    method="eap-md5",
    anqp_nai_realm=trname2_object_wirelesscontroller_hotspot20_anqpnairealm.name,
    nai_list=trname2_object_wirelesscontroller_hotspot20_anqpnairealm_nailist.name,
    opts = pulumi.ResourceOptions(depends_on=[trname2_object_wirelesscontroller_hotspot20_anqpnairealm_nailist]))
Copy
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 {
		trname2ObjectWirelesscontrollerHotspot20Anqpnairealm, err := fortimanager.NewObjectWirelesscontrollerHotspot20Anqpnairealm(ctx, "trname2ObjectWirelesscontrollerHotspot20Anqpnairealm", nil)
		if err != nil {
			return err
		}
		trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist, err := fortimanager.NewObjectWirelesscontrollerHotspot20AnqpnairealmNailist(ctx, "trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist", &fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistArgs{
			AnqpNaiRealm: trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.Name,
		}, pulumi.DependsOn([]pulumi.Resource{
			trname2ObjectWirelesscontrollerHotspot20Anqpnairealm,
		}))
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(ctx, "trname", &fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs{
			Index:        pulumi.Float64(2),
			Method:       pulumi.String("eap-md5"),
			AnqpNaiRealm: trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.Name,
			NaiList:      trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist.Name,
		}, pulumi.DependsOn([]pulumi.Resource{
			trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname2ObjectWirelesscontrollerHotspot20Anqpnairealm = new Fortimanager.ObjectWirelesscontrollerHotspot20Anqpnairealm("trname2ObjectWirelesscontrollerHotspot20Anqpnairealm");

    var trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailist("trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist", new()
    {
        AnqpNaiRealm = trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.Name,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trname2ObjectWirelesscontrollerHotspot20Anqpnairealm,
        },
    });

    var trname = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("trname", new()
    {
        Index = 2,
        Method = "eap-md5",
        AnqpNaiRealm = trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.Name,
        NaiList = trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist.Name,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Anqpnairealm;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailist;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistArgs;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trname2ObjectWirelesscontrollerHotspot20Anqpnairealm = new ObjectWirelesscontrollerHotspot20Anqpnairealm("trname2ObjectWirelesscontrollerHotspot20Anqpnairealm");

        var trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist = new ObjectWirelesscontrollerHotspot20AnqpnairealmNailist("trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist", ObjectWirelesscontrollerHotspot20AnqpnairealmNailistArgs.builder()
            .anqpNaiRealm(trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.name())
            .build(), CustomResourceOptions.builder()
                .dependsOn(trname2ObjectWirelesscontrollerHotspot20Anqpnairealm)
                .build());

        var trname = new ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("trname", ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs.builder()
            .index(2)
            .method("eap-md5")
            .anqpNaiRealm(trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.name())
            .naiList(trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist.name())
            .build(), CustomResourceOptions.builder()
                .dependsOn(trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist)
                .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod
    properties:
      index: 2
      method: eap-md5
      anqpNaiRealm: ${trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.name}
      naiList: ${trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist.name}
    options:
      dependsOn:
        - ${trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist}
  trname2ObjectWirelesscontrollerHotspot20AnqpnairealmNailist:
    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpnairealmNailist
    properties:
      anqpNaiRealm: ${trname2ObjectWirelesscontrollerHotspot20Anqpnairealm.name}
    options:
      dependsOn:
        - ${trname2ObjectWirelesscontrollerHotspot20Anqpnairealm}
  trname2ObjectWirelesscontrollerHotspot20Anqpnairealm:
    type: fortimanager:ObjectWirelesscontrollerHotspot20Anqpnairealm
Copy

Create ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod Resource

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

Constructor syntax

new ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(name: string, args: ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(resource_name: str,
                                                                  args: ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs,
                                                                  opts: Optional[ResourceOptions] = None)

@overload
def ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(resource_name: str,
                                                                  opts: Optional[ResourceOptions] = None,
                                                                  anqp_nai_realm: Optional[str] = None,
                                                                  nai_list: Optional[str] = None,
                                                                  adom: Optional[str] = None,
                                                                  auth_params: Optional[Sequence[ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs]] = None,
                                                                  dynamic_sort_subtable: Optional[str] = None,
                                                                  index: Optional[float] = None,
                                                                  method: Optional[str] = None,
                                                                  object_wirelesscontroller_hotspot20_anqpnairealm_nailist_eapmethod_id: Optional[str] = None,
                                                                  scopetype: Optional[str] = None)
func NewObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod, error)
public ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(string name, ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(String name, ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs args)
public ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(String name, ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs
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 objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource", new()
{
    AnqpNaiRealm = "string",
    NaiList = "string",
    Adom = "string",
    AuthParams = new[]
    {
        new Fortimanager.Inputs.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs
        {
            Id = "string",
            Index = 0,
            Val = "string",
        },
    },
    DynamicSortSubtable = "string",
    Index = 0,
    Method = "string",
    ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId = "string",
    Scopetype = "string",
});
Copy
example, err := fortimanager.NewObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(ctx, "objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource", &fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs{
AnqpNaiRealm: pulumi.String("string"),
NaiList: pulumi.String("string"),
Adom: pulumi.String("string"),
AuthParams: .ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamTypeArray{
&.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamTypeArgs{
Id: pulumi.String("string"),
Index: pulumi.Float64(0),
Val: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
Index: pulumi.Float64(0),
Method: pulumi.String("string"),
ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
Copy
var objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource = new ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource", ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodArgs.builder()
    .anqpNaiRealm("string")
    .naiList("string")
    .adom("string")
    .authParams(ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs.builder()
        .id("string")
        .index(0)
        .val("string")
        .build())
    .dynamicSortSubtable("string")
    .index(0)
    .method("string")
    .objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId("string")
    .scopetype("string")
    .build());
Copy
object_wirelesscontroller_hotspot20_anqpnairealm_nailist_eapmethod_resource = fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource",
    anqp_nai_realm="string",
    nai_list="string",
    adom="string",
    auth_params=[{
        "id": "string",
        "index": 0,
        "val": "string",
    }],
    dynamic_sort_subtable="string",
    index=0,
    method="string",
    object_wirelesscontroller_hotspot20_anqpnairealm_nailist_eapmethod_id="string",
    scopetype="string")
Copy
const objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource = new fortimanager.ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod("objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodResource", {
    anqpNaiRealm: "string",
    naiList: "string",
    adom: "string",
    authParams: [{
        id: "string",
        index: 0,
        val: "string",
    }],
    dynamicSortSubtable: "string",
    index: 0,
    method: "string",
    objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId: "string",
    scopetype: "string",
});
Copy
type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod
properties:
    adom: string
    anqpNaiRealm: string
    authParams:
        - id: string
          index: 0
          val: string
    dynamicSortSubtable: string
    index: 0
    method: string
    naiList: string
    objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId: string
    scopetype: string
Copy

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

AnqpNaiRealm This property is required. string
Anqp Nai Realm.
NaiList This property is required. string
Nai List.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AuthParams List<ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam>
Auth-Param. The structure of auth_param block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Index double
EAP method index.
Method string
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
AnqpNaiRealm This property is required. string
Anqp Nai Realm.
NaiList This property is required. string
Nai List.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AuthParams []ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamTypeArgs
Auth-Param. The structure of auth_param block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Index float64
EAP method index.
Method string
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
anqpNaiRealm This property is required. String
Anqp Nai Realm.
naiList This property is required. String
Nai List.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authParams List<ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam>
Auth-Param. The structure of auth_param block is documented below.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index Double
EAP method index.
method String
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
anqpNaiRealm This property is required. string
Anqp Nai Realm.
naiList This property is required. string
Nai List.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authParams ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam[]
Auth-Param. The structure of auth_param block is documented below.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index number
EAP method index.
method string
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId string
an identifier for the resource with format {{index}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
anqp_nai_realm This property is required. str
Anqp Nai Realm.
nai_list This property is required. str
Nai List.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
auth_params Sequence[ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs]
Auth-Param. The structure of auth_param block is documented below.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index float
EAP method index.
method str
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
object_wirelesscontroller_hotspot20_anqpnairealm_nailist_eapmethod_id str
an identifier for the resource with format {{index}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
anqpNaiRealm This property is required. String
Anqp Nai Realm.
naiList This property is required. String
Nai List.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authParams List<Property Map>
Auth-Param. The structure of auth_param block is documented below.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index Number
EAP method index.
method String
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

Outputs

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

Get an existing ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod 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?: ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        anqp_nai_realm: Optional[str] = None,
        auth_params: Optional[Sequence[ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs]] = None,
        dynamic_sort_subtable: Optional[str] = None,
        index: Optional[float] = None,
        method: Optional[str] = None,
        nai_list: Optional[str] = None,
        object_wirelesscontroller_hotspot20_anqpnairealm_nailist_eapmethod_id: Optional[str] = None,
        scopetype: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod
func GetObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod, error)
public static ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AnqpNaiRealm string
Anqp Nai Realm.
AuthParams List<ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam>
Auth-Param. The structure of auth_param block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Index double
EAP method index.
Method string
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
NaiList string
Nai List.
ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AnqpNaiRealm string
Anqp Nai Realm.
AuthParams []ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamTypeArgs
Auth-Param. The structure of auth_param block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Index float64
EAP method index.
Method string
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
NaiList string
Nai List.
ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqpNaiRealm String
Anqp Nai Realm.
authParams List<ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam>
Auth-Param. The structure of auth_param block is documented below.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index Double
EAP method index.
method String
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
naiList String
Nai List.
objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqpNaiRealm string
Anqp Nai Realm.
authParams ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam[]
Auth-Param. The structure of auth_param block is documented below.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index number
EAP method index.
method string
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
naiList string
Nai List.
objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId string
an identifier for the resource with format {{index}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqp_nai_realm str
Anqp Nai Realm.
auth_params Sequence[ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs]
Auth-Param. The structure of auth_param block is documented below.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index float
EAP method index.
method str
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
nai_list str
Nai List.
object_wirelesscontroller_hotspot20_anqpnairealm_nailist_eapmethod_id str
an identifier for the resource with format {{index}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqpNaiRealm String
Anqp Nai Realm.
authParams List<Property Map>
Auth-Param. The structure of auth_param block is documented below.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
index Number
EAP method index.
method String
EAP method type. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime.
naiList String
Nai List.
objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

Supporting Types

ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParam
, ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethodAuthParamArgs

Id string
ID of authentication parameter. Valid values: non-eap-inner-auth, inner-auth-eap, credential, tunneled-credential.
Index double
Param index.
Val string
Value of authentication parameter. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime, non-eap-pap, non-eap-chap, non-eap-mschap, non-eap-mschapv2, cred-sim, cred-usim, cred-nfc, cred-hardware-token, cred-softoken, cred-certificate, cred-user-pwd, cred-none, cred-vendor-specific, tun-cred-sim, tun-cred-usim, tun-cred-nfc, tun-cred-hardware-token, tun-cred-softoken, tun-cred-certificate, tun-cred-user-pwd, tun-cred-anonymous, tun-cred-vendor-specific.
Id string
ID of authentication parameter. Valid values: non-eap-inner-auth, inner-auth-eap, credential, tunneled-credential.
Index float64
Param index.
Val string
Value of authentication parameter. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime, non-eap-pap, non-eap-chap, non-eap-mschap, non-eap-mschapv2, cred-sim, cred-usim, cred-nfc, cred-hardware-token, cred-softoken, cred-certificate, cred-user-pwd, cred-none, cred-vendor-specific, tun-cred-sim, tun-cred-usim, tun-cred-nfc, tun-cred-hardware-token, tun-cred-softoken, tun-cred-certificate, tun-cred-user-pwd, tun-cred-anonymous, tun-cred-vendor-specific.
id String
ID of authentication parameter. Valid values: non-eap-inner-auth, inner-auth-eap, credential, tunneled-credential.
index Double
Param index.
val String
Value of authentication parameter. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime, non-eap-pap, non-eap-chap, non-eap-mschap, non-eap-mschapv2, cred-sim, cred-usim, cred-nfc, cred-hardware-token, cred-softoken, cred-certificate, cred-user-pwd, cred-none, cred-vendor-specific, tun-cred-sim, tun-cred-usim, tun-cred-nfc, tun-cred-hardware-token, tun-cred-softoken, tun-cred-certificate, tun-cred-user-pwd, tun-cred-anonymous, tun-cred-vendor-specific.
id string
ID of authentication parameter. Valid values: non-eap-inner-auth, inner-auth-eap, credential, tunneled-credential.
index number
Param index.
val string
Value of authentication parameter. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime, non-eap-pap, non-eap-chap, non-eap-mschap, non-eap-mschapv2, cred-sim, cred-usim, cred-nfc, cred-hardware-token, cred-softoken, cred-certificate, cred-user-pwd, cred-none, cred-vendor-specific, tun-cred-sim, tun-cred-usim, tun-cred-nfc, tun-cred-hardware-token, tun-cred-softoken, tun-cred-certificate, tun-cred-user-pwd, tun-cred-anonymous, tun-cred-vendor-specific.
id str
ID of authentication parameter. Valid values: non-eap-inner-auth, inner-auth-eap, credential, tunneled-credential.
index float
Param index.
val str
Value of authentication parameter. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime, non-eap-pap, non-eap-chap, non-eap-mschap, non-eap-mschapv2, cred-sim, cred-usim, cred-nfc, cred-hardware-token, cred-softoken, cred-certificate, cred-user-pwd, cred-none, cred-vendor-specific, tun-cred-sim, tun-cred-usim, tun-cred-nfc, tun-cred-hardware-token, tun-cred-softoken, tun-cred-certificate, tun-cred-user-pwd, tun-cred-anonymous, tun-cred-vendor-specific.
id String
ID of authentication parameter. Valid values: non-eap-inner-auth, inner-auth-eap, credential, tunneled-credential.
index Number
Param index.
val String
Value of authentication parameter. Valid values: eap-identity, eap-md5, eap-tls, eap-ttls, eap-peap, eap-sim, eap-aka, eap-aka-prime, non-eap-pap, non-eap-chap, non-eap-mschap, non-eap-mschapv2, cred-sim, cred-usim, cred-nfc, cred-hardware-token, cred-softoken, cred-certificate, cred-user-pwd, cred-none, cred-vendor-specific, tun-cred-sim, tun-cred-usim, tun-cred-nfc, tun-cred-hardware-token, tun-cred-softoken, tun-cred-certificate, tun-cred-user-pwd, tun-cred-anonymous, tun-cred-vendor-specific.

Import

ObjectWirelessController Hotspot20AnqpNaiRealmNaiListEapMethod can be imported using any of these accepted formats:

Set import_options = [“anqp_nai_realm=YOUR_VALUE”, “nai_list=YOUR_VALUE”] in the provider section.

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod:ObjectWirelesscontrollerHotspot20AnqpnairealmNailistEapmethod labelname {{index}}
Copy

$ 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.