1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWirelesscontrollerHotspot20Hsprofile
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile

Explore with Pulumi AI

Configure hotspot profile.

Example Usage

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

const trname = new fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile("trname", {
    accessNetworkAsra: "disable",
    accessNetworkEsr: "disable",
    accessNetworkInternet: "disable",
    accessNetworkType: "private-network",
    accessNetworkUesa: "disable",
    bssTransition: "disable",
    deauthRequestTimeout: 60,
    dgaf: "disable",
    gasComebackDelay: 500,
    gasFragmentationLimit: 1024,
    hessid: "00:00:00:00:00:00",
    l2tif: "disable",
    pameBi: "enable",
    proxyArp: "enable",
    venueGroup: "unspecified",
    venueType: "unspecified",
    wnmSleepMode: "disable",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile("trname",
    access_network_asra="disable",
    access_network_esr="disable",
    access_network_internet="disable",
    access_network_type="private-network",
    access_network_uesa="disable",
    bss_transition="disable",
    deauth_request_timeout=60,
    dgaf="disable",
    gas_comeback_delay=500,
    gas_fragmentation_limit=1024,
    hessid="00:00:00:00:00:00",
    l2tif="disable",
    pame_bi="enable",
    proxy_arp="enable",
    venue_group="unspecified",
    venue_type="unspecified",
    wnm_sleep_mode="disable")
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 {
		_, err := fortimanager.NewObjectWirelesscontrollerHotspot20Hsprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerHotspot20HsprofileArgs{
			AccessNetworkAsra:     pulumi.String("disable"),
			AccessNetworkEsr:      pulumi.String("disable"),
			AccessNetworkInternet: pulumi.String("disable"),
			AccessNetworkType:     pulumi.String("private-network"),
			AccessNetworkUesa:     pulumi.String("disable"),
			BssTransition:         pulumi.String("disable"),
			DeauthRequestTimeout:  pulumi.Float64(60),
			Dgaf:                  pulumi.String("disable"),
			GasComebackDelay:      pulumi.Float64(500),
			GasFragmentationLimit: pulumi.Float64(1024),
			Hessid:                pulumi.String("00:00:00:00:00:00"),
			L2tif:                 pulumi.String("disable"),
			PameBi:                pulumi.String("enable"),
			ProxyArp:              pulumi.String("enable"),
			VenueGroup:            pulumi.String("unspecified"),
			VenueType:             pulumi.String("unspecified"),
			WnmSleepMode:          pulumi.String("disable"),
		})
		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 trname = new Fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile("trname", new()
    {
        AccessNetworkAsra = "disable",
        AccessNetworkEsr = "disable",
        AccessNetworkInternet = "disable",
        AccessNetworkType = "private-network",
        AccessNetworkUesa = "disable",
        BssTransition = "disable",
        DeauthRequestTimeout = 60,
        Dgaf = "disable",
        GasComebackDelay = 500,
        GasFragmentationLimit = 1024,
        Hessid = "00:00:00:00:00:00",
        L2tif = "disable",
        PameBi = "enable",
        ProxyArp = "enable",
        VenueGroup = "unspecified",
        VenueType = "unspecified",
        WnmSleepMode = "disable",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20HsprofileArgs;
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 ObjectWirelesscontrollerHotspot20Hsprofile("trname", ObjectWirelesscontrollerHotspot20HsprofileArgs.builder()
            .accessNetworkAsra("disable")
            .accessNetworkEsr("disable")
            .accessNetworkInternet("disable")
            .accessNetworkType("private-network")
            .accessNetworkUesa("disable")
            .bssTransition("disable")
            .deauthRequestTimeout(60)
            .dgaf("disable")
            .gasComebackDelay(500)
            .gasFragmentationLimit(1024)
            .hessid("00:00:00:00:00:00")
            .l2tif("disable")
            .pameBi("enable")
            .proxyArp("enable")
            .venueGroup("unspecified")
            .venueType("unspecified")
            .wnmSleepMode("disable")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectWirelesscontrollerHotspot20Hsprofile
    properties:
      accessNetworkAsra: disable
      accessNetworkEsr: disable
      accessNetworkInternet: disable
      accessNetworkType: private-network
      accessNetworkUesa: disable
      bssTransition: disable
      deauthRequestTimeout: 60
      dgaf: disable
      gasComebackDelay: 500
      gasFragmentationLimit: 1024
      hessid: 00:00:00:00:00:00
      l2tif: disable
      pameBi: enable
      proxyArp: enable
      venueGroup: unspecified
      venueType: unspecified
      wnmSleepMode: disable
Copy

Create ObjectWirelesscontrollerHotspot20Hsprofile Resource

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

Constructor syntax

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

@overload
def ObjectWirelesscontrollerHotspot20Hsprofile(resource_name: str,
                                               opts: Optional[ResourceOptions] = None,
                                               access_network_asra: Optional[str] = None,
                                               access_network_esr: Optional[str] = None,
                                               access_network_internet: Optional[str] = None,
                                               access_network_type: Optional[str] = None,
                                               access_network_uesa: Optional[str] = None,
                                               adom: Optional[str] = None,
                                               advice_of_charge: Optional[str] = None,
                                               anqp_domain_id: Optional[float] = None,
                                               bss_transition: Optional[str] = None,
                                               conn_cap: Optional[str] = None,
                                               deauth_request_timeout: Optional[float] = None,
                                               dgaf: Optional[str] = None,
                                               domain_name: Optional[str] = None,
                                               gas_comeback_delay: Optional[float] = None,
                                               gas_fragmentation_limit: Optional[float] = None,
                                               hessid: Optional[str] = None,
                                               ip_addr_type: Optional[str] = None,
                                               l2tif: Optional[str] = None,
                                               n3gpp_plmn: Optional[str] = None,
                                               nai_realm: Optional[str] = None,
                                               name: Optional[str] = None,
                                               network_auth: Optional[str] = None,
                                               object_wirelesscontroller_hotspot20_hsprofile_id: Optional[str] = None,
                                               oper_friendly_name: Optional[str] = None,
                                               oper_icon: Optional[str] = None,
                                               osu_provider_nai: Optional[str] = None,
                                               osu_providers: Optional[Sequence[str]] = None,
                                               osu_ssid: Optional[str] = None,
                                               pame_bi: Optional[str] = None,
                                               proxy_arp: Optional[str] = None,
                                               qos_map: Optional[str] = None,
                                               release: Optional[float] = None,
                                               roaming_consortium: Optional[str] = None,
                                               scopetype: Optional[str] = None,
                                               terms_and_conditions: Optional[str] = None,
                                               venue_group: Optional[str] = None,
                                               venue_name: Optional[str] = None,
                                               venue_type: Optional[str] = None,
                                               venue_url: Optional[str] = None,
                                               wan_metrics: Optional[str] = None,
                                               wnm_sleep_mode: Optional[str] = None)
func NewObjectWirelesscontrollerHotspot20Hsprofile(ctx *Context, name string, args *ObjectWirelesscontrollerHotspot20HsprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20Hsprofile, error)
public ObjectWirelesscontrollerHotspot20Hsprofile(string name, ObjectWirelesscontrollerHotspot20HsprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerHotspot20Hsprofile(String name, ObjectWirelesscontrollerHotspot20HsprofileArgs args)
public ObjectWirelesscontrollerHotspot20Hsprofile(String name, ObjectWirelesscontrollerHotspot20HsprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerHotspot20Hsprofile
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 ObjectWirelesscontrollerHotspot20HsprofileArgs
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 ObjectWirelesscontrollerHotspot20HsprofileArgs
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 ObjectWirelesscontrollerHotspot20HsprofileArgs
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 ObjectWirelesscontrollerHotspot20HsprofileArgs
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. ObjectWirelesscontrollerHotspot20HsprofileArgs
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 objectWirelesscontrollerHotspot20HsprofileResource = new Fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile("objectWirelesscontrollerHotspot20HsprofileResource", new()
{
    AccessNetworkAsra = "string",
    AccessNetworkEsr = "string",
    AccessNetworkInternet = "string",
    AccessNetworkType = "string",
    AccessNetworkUesa = "string",
    Adom = "string",
    AdviceOfCharge = "string",
    AnqpDomainId = 0,
    BssTransition = "string",
    ConnCap = "string",
    DeauthRequestTimeout = 0,
    Dgaf = "string",
    DomainName = "string",
    GasComebackDelay = 0,
    GasFragmentationLimit = 0,
    Hessid = "string",
    IpAddrType = "string",
    L2tif = "string",
    N3gppPlmn = "string",
    NaiRealm = "string",
    Name = "string",
    NetworkAuth = "string",
    ObjectWirelesscontrollerHotspot20HsprofileId = "string",
    OperFriendlyName = "string",
    OperIcon = "string",
    OsuProviderNai = "string",
    OsuProviders = new[]
    {
        "string",
    },
    OsuSsid = "string",
    PameBi = "string",
    ProxyArp = "string",
    QosMap = "string",
    Release = 0,
    RoamingConsortium = "string",
    Scopetype = "string",
    TermsAndConditions = "string",
    VenueGroup = "string",
    VenueName = "string",
    VenueType = "string",
    VenueUrl = "string",
    WanMetrics = "string",
    WnmSleepMode = "string",
});
Copy
example, err := fortimanager.NewObjectWirelesscontrollerHotspot20Hsprofile(ctx, "objectWirelesscontrollerHotspot20HsprofileResource", &fortimanager.ObjectWirelesscontrollerHotspot20HsprofileArgs{
	AccessNetworkAsra:     pulumi.String("string"),
	AccessNetworkEsr:      pulumi.String("string"),
	AccessNetworkInternet: pulumi.String("string"),
	AccessNetworkType:     pulumi.String("string"),
	AccessNetworkUesa:     pulumi.String("string"),
	Adom:                  pulumi.String("string"),
	AdviceOfCharge:        pulumi.String("string"),
	AnqpDomainId:          pulumi.Float64(0),
	BssTransition:         pulumi.String("string"),
	ConnCap:               pulumi.String("string"),
	DeauthRequestTimeout:  pulumi.Float64(0),
	Dgaf:                  pulumi.String("string"),
	DomainName:            pulumi.String("string"),
	GasComebackDelay:      pulumi.Float64(0),
	GasFragmentationLimit: pulumi.Float64(0),
	Hessid:                pulumi.String("string"),
	IpAddrType:            pulumi.String("string"),
	L2tif:                 pulumi.String("string"),
	N3gppPlmn:             pulumi.String("string"),
	NaiRealm:              pulumi.String("string"),
	Name:                  pulumi.String("string"),
	NetworkAuth:           pulumi.String("string"),
	ObjectWirelesscontrollerHotspot20HsprofileId: pulumi.String("string"),
	OperFriendlyName: pulumi.String("string"),
	OperIcon:         pulumi.String("string"),
	OsuProviderNai:   pulumi.String("string"),
	OsuProviders: pulumi.StringArray{
		pulumi.String("string"),
	},
	OsuSsid:            pulumi.String("string"),
	PameBi:             pulumi.String("string"),
	ProxyArp:           pulumi.String("string"),
	QosMap:             pulumi.String("string"),
	Release:            pulumi.Float64(0),
	RoamingConsortium:  pulumi.String("string"),
	Scopetype:          pulumi.String("string"),
	TermsAndConditions: pulumi.String("string"),
	VenueGroup:         pulumi.String("string"),
	VenueName:          pulumi.String("string"),
	VenueType:          pulumi.String("string"),
	VenueUrl:           pulumi.String("string"),
	WanMetrics:         pulumi.String("string"),
	WnmSleepMode:       pulumi.String("string"),
})
Copy
var objectWirelesscontrollerHotspot20HsprofileResource = new ObjectWirelesscontrollerHotspot20Hsprofile("objectWirelesscontrollerHotspot20HsprofileResource", ObjectWirelesscontrollerHotspot20HsprofileArgs.builder()
    .accessNetworkAsra("string")
    .accessNetworkEsr("string")
    .accessNetworkInternet("string")
    .accessNetworkType("string")
    .accessNetworkUesa("string")
    .adom("string")
    .adviceOfCharge("string")
    .anqpDomainId(0)
    .bssTransition("string")
    .connCap("string")
    .deauthRequestTimeout(0)
    .dgaf("string")
    .domainName("string")
    .gasComebackDelay(0)
    .gasFragmentationLimit(0)
    .hessid("string")
    .ipAddrType("string")
    .l2tif("string")
    .n3gppPlmn("string")
    .naiRealm("string")
    .name("string")
    .networkAuth("string")
    .objectWirelesscontrollerHotspot20HsprofileId("string")
    .operFriendlyName("string")
    .operIcon("string")
    .osuProviderNai("string")
    .osuProviders("string")
    .osuSsid("string")
    .pameBi("string")
    .proxyArp("string")
    .qosMap("string")
    .release(0)
    .roamingConsortium("string")
    .scopetype("string")
    .termsAndConditions("string")
    .venueGroup("string")
    .venueName("string")
    .venueType("string")
    .venueUrl("string")
    .wanMetrics("string")
    .wnmSleepMode("string")
    .build());
Copy
object_wirelesscontroller_hotspot20_hsprofile_resource = fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile("objectWirelesscontrollerHotspot20HsprofileResource",
    access_network_asra="string",
    access_network_esr="string",
    access_network_internet="string",
    access_network_type="string",
    access_network_uesa="string",
    adom="string",
    advice_of_charge="string",
    anqp_domain_id=0,
    bss_transition="string",
    conn_cap="string",
    deauth_request_timeout=0,
    dgaf="string",
    domain_name="string",
    gas_comeback_delay=0,
    gas_fragmentation_limit=0,
    hessid="string",
    ip_addr_type="string",
    l2tif="string",
    n3gpp_plmn="string",
    nai_realm="string",
    name="string",
    network_auth="string",
    object_wirelesscontroller_hotspot20_hsprofile_id="string",
    oper_friendly_name="string",
    oper_icon="string",
    osu_provider_nai="string",
    osu_providers=["string"],
    osu_ssid="string",
    pame_bi="string",
    proxy_arp="string",
    qos_map="string",
    release=0,
    roaming_consortium="string",
    scopetype="string",
    terms_and_conditions="string",
    venue_group="string",
    venue_name="string",
    venue_type="string",
    venue_url="string",
    wan_metrics="string",
    wnm_sleep_mode="string")
Copy
const objectWirelesscontrollerHotspot20HsprofileResource = new fortimanager.ObjectWirelesscontrollerHotspot20Hsprofile("objectWirelesscontrollerHotspot20HsprofileResource", {
    accessNetworkAsra: "string",
    accessNetworkEsr: "string",
    accessNetworkInternet: "string",
    accessNetworkType: "string",
    accessNetworkUesa: "string",
    adom: "string",
    adviceOfCharge: "string",
    anqpDomainId: 0,
    bssTransition: "string",
    connCap: "string",
    deauthRequestTimeout: 0,
    dgaf: "string",
    domainName: "string",
    gasComebackDelay: 0,
    gasFragmentationLimit: 0,
    hessid: "string",
    ipAddrType: "string",
    l2tif: "string",
    n3gppPlmn: "string",
    naiRealm: "string",
    name: "string",
    networkAuth: "string",
    objectWirelesscontrollerHotspot20HsprofileId: "string",
    operFriendlyName: "string",
    operIcon: "string",
    osuProviderNai: "string",
    osuProviders: ["string"],
    osuSsid: "string",
    pameBi: "string",
    proxyArp: "string",
    qosMap: "string",
    release: 0,
    roamingConsortium: "string",
    scopetype: "string",
    termsAndConditions: "string",
    venueGroup: "string",
    venueName: "string",
    venueType: "string",
    venueUrl: "string",
    wanMetrics: "string",
    wnmSleepMode: "string",
});
Copy
type: fortimanager:ObjectWirelesscontrollerHotspot20Hsprofile
properties:
    accessNetworkAsra: string
    accessNetworkEsr: string
    accessNetworkInternet: string
    accessNetworkType: string
    accessNetworkUesa: string
    adom: string
    adviceOfCharge: string
    anqpDomainId: 0
    bssTransition: string
    connCap: string
    deauthRequestTimeout: 0
    dgaf: string
    domainName: string
    gasComebackDelay: 0
    gasFragmentationLimit: 0
    hessid: string
    ipAddrType: string
    l2tif: string
    n3gppPlmn: string
    naiRealm: string
    name: string
    networkAuth: string
    objectWirelesscontrollerHotspot20HsprofileId: string
    operFriendlyName: string
    operIcon: string
    osuProviderNai: string
    osuProviders:
        - string
    osuSsid: string
    pameBi: string
    proxyArp: string
    qosMap: string
    release: 0
    roamingConsortium: string
    scopetype: string
    termsAndConditions: string
    venueGroup: string
    venueName: string
    venueType: string
    venueUrl: string
    wanMetrics: string
    wnmSleepMode: string
Copy

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

AccessNetworkAsra string
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
AccessNetworkEsr string
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
AccessNetworkInternet string
Enable/disable connectivity to the Internet. Valid values: disable, enable.
AccessNetworkType string
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
AccessNetworkUesa string
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AdviceOfCharge string
Advice of charge.
AnqpDomainId double
ANQP Domain ID (0-65535).
BssTransition string
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
ConnCap string
Connection capability name.
DeauthRequestTimeout double
Deauthentication request timeout (in seconds).
Dgaf string
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
DomainName string
Domain name.
GasComebackDelay double
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
GasFragmentationLimit double
GAS fragmentation limit (512 - 4096, default = 1024).
Hessid string
Homogeneous extended service set identifier (HESSID).
IpAddrType string
IP address type name.
L2tif string
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
N3gppPlmn string
3GPP PLMN name.
NaiRealm string
NAI realm list name.
Name string
Hotspot profile name.
NetworkAuth string
Network authentication name.
ObjectWirelesscontrollerHotspot20HsprofileId string
an identifier for the resource with format {{name}}.
OperFriendlyName string
Operator friendly name.
OperIcon string
Operator icon.
OsuProviderNai string
OSU Provider NAI.
OsuProviders List<string>
Manually selected list of OSU provider(s).
OsuSsid string
Online sign up (OSU) SSID.
PameBi string
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
ProxyArp string
Enable/disable Proxy ARP. Valid values: disable, enable.
QosMap string
QoS MAP set ID.
Release double
Hotspot 2.0 Release number (1, 2, 3, default = 2).
RoamingConsortium string
Roaming consortium list name.
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.
TermsAndConditions string
Terms and conditions.
VenueGroup string
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
VenueName string
Venue name.
VenueType string
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
VenueUrl string
Venue name.
WanMetrics string
WAN metric name.
WnmSleepMode string
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
AccessNetworkAsra string
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
AccessNetworkEsr string
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
AccessNetworkInternet string
Enable/disable connectivity to the Internet. Valid values: disable, enable.
AccessNetworkType string
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
AccessNetworkUesa string
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AdviceOfCharge string
Advice of charge.
AnqpDomainId float64
ANQP Domain ID (0-65535).
BssTransition string
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
ConnCap string
Connection capability name.
DeauthRequestTimeout float64
Deauthentication request timeout (in seconds).
Dgaf string
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
DomainName string
Domain name.
GasComebackDelay float64
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
GasFragmentationLimit float64
GAS fragmentation limit (512 - 4096, default = 1024).
Hessid string
Homogeneous extended service set identifier (HESSID).
IpAddrType string
IP address type name.
L2tif string
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
N3gppPlmn string
3GPP PLMN name.
NaiRealm string
NAI realm list name.
Name string
Hotspot profile name.
NetworkAuth string
Network authentication name.
ObjectWirelesscontrollerHotspot20HsprofileId string
an identifier for the resource with format {{name}}.
OperFriendlyName string
Operator friendly name.
OperIcon string
Operator icon.
OsuProviderNai string
OSU Provider NAI.
OsuProviders []string
Manually selected list of OSU provider(s).
OsuSsid string
Online sign up (OSU) SSID.
PameBi string
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
ProxyArp string
Enable/disable Proxy ARP. Valid values: disable, enable.
QosMap string
QoS MAP set ID.
Release float64
Hotspot 2.0 Release number (1, 2, 3, default = 2).
RoamingConsortium string
Roaming consortium list name.
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.
TermsAndConditions string
Terms and conditions.
VenueGroup string
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
VenueName string
Venue name.
VenueType string
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
VenueUrl string
Venue name.
WanMetrics string
WAN metric name.
WnmSleepMode string
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
accessNetworkAsra String
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
accessNetworkEsr String
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
accessNetworkInternet String
Enable/disable connectivity to the Internet. Valid values: disable, enable.
accessNetworkType String
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
accessNetworkUesa String
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
adviceOfCharge String
Advice of charge.
anqpDomainId Double
ANQP Domain ID (0-65535).
bssTransition String
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
connCap String
Connection capability name.
deauthRequestTimeout Double
Deauthentication request timeout (in seconds).
dgaf String
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domainName String
Domain name.
gasComebackDelay Double
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gasFragmentationLimit Double
GAS fragmentation limit (512 - 4096, default = 1024).
hessid String
Homogeneous extended service set identifier (HESSID).
ipAddrType String
IP address type name.
l2tif String
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gppPlmn String
3GPP PLMN name.
naiRealm String
NAI realm list name.
name String
Hotspot profile name.
networkAuth String
Network authentication name.
objectWirelesscontrollerHotspot20HsprofileId String
an identifier for the resource with format {{name}}.
operFriendlyName String
Operator friendly name.
operIcon String
Operator icon.
osuProviderNai String
OSU Provider NAI.
osuProviders List<String>
Manually selected list of OSU provider(s).
osuSsid String
Online sign up (OSU) SSID.
pameBi String
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxyArp String
Enable/disable Proxy ARP. Valid values: disable, enable.
qosMap String
QoS MAP set ID.
release Double
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roamingConsortium String
Roaming consortium list name.
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.
termsAndConditions String
Terms and conditions.
venueGroup String
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venueName String
Venue name.
venueType String
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venueUrl String
Venue name.
wanMetrics String
WAN metric name.
wnmSleepMode String
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
accessNetworkAsra string
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
accessNetworkEsr string
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
accessNetworkInternet string
Enable/disable connectivity to the Internet. Valid values: disable, enable.
accessNetworkType string
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
accessNetworkUesa string
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
adviceOfCharge string
Advice of charge.
anqpDomainId number
ANQP Domain ID (0-65535).
bssTransition string
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
connCap string
Connection capability name.
deauthRequestTimeout number
Deauthentication request timeout (in seconds).
dgaf string
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domainName string
Domain name.
gasComebackDelay number
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gasFragmentationLimit number
GAS fragmentation limit (512 - 4096, default = 1024).
hessid string
Homogeneous extended service set identifier (HESSID).
ipAddrType string
IP address type name.
l2tif string
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gppPlmn string
3GPP PLMN name.
naiRealm string
NAI realm list name.
name string
Hotspot profile name.
networkAuth string
Network authentication name.
objectWirelesscontrollerHotspot20HsprofileId string
an identifier for the resource with format {{name}}.
operFriendlyName string
Operator friendly name.
operIcon string
Operator icon.
osuProviderNai string
OSU Provider NAI.
osuProviders string[]
Manually selected list of OSU provider(s).
osuSsid string
Online sign up (OSU) SSID.
pameBi string
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxyArp string
Enable/disable Proxy ARP. Valid values: disable, enable.
qosMap string
QoS MAP set ID.
release number
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roamingConsortium string
Roaming consortium list name.
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.
termsAndConditions string
Terms and conditions.
venueGroup string
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venueName string
Venue name.
venueType string
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venueUrl string
Venue name.
wanMetrics string
WAN metric name.
wnmSleepMode string
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
access_network_asra str
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
access_network_esr str
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
access_network_internet str
Enable/disable connectivity to the Internet. Valid values: disable, enable.
access_network_type str
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
access_network_uesa str
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advice_of_charge str
Advice of charge.
anqp_domain_id float
ANQP Domain ID (0-65535).
bss_transition str
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
conn_cap str
Connection capability name.
deauth_request_timeout float
Deauthentication request timeout (in seconds).
dgaf str
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domain_name str
Domain name.
gas_comeback_delay float
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gas_fragmentation_limit float
GAS fragmentation limit (512 - 4096, default = 1024).
hessid str
Homogeneous extended service set identifier (HESSID).
ip_addr_type str
IP address type name.
l2tif str
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gpp_plmn str
3GPP PLMN name.
nai_realm str
NAI realm list name.
name str
Hotspot profile name.
network_auth str
Network authentication name.
object_wirelesscontroller_hotspot20_hsprofile_id str
an identifier for the resource with format {{name}}.
oper_friendly_name str
Operator friendly name.
oper_icon str
Operator icon.
osu_provider_nai str
OSU Provider NAI.
osu_providers Sequence[str]
Manually selected list of OSU provider(s).
osu_ssid str
Online sign up (OSU) SSID.
pame_bi str
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxy_arp str
Enable/disable Proxy ARP. Valid values: disable, enable.
qos_map str
QoS MAP set ID.
release float
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roaming_consortium str
Roaming consortium list name.
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.
terms_and_conditions str
Terms and conditions.
venue_group str
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venue_name str
Venue name.
venue_type str
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venue_url str
Venue name.
wan_metrics str
WAN metric name.
wnm_sleep_mode str
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
accessNetworkAsra String
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
accessNetworkEsr String
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
accessNetworkInternet String
Enable/disable connectivity to the Internet. Valid values: disable, enable.
accessNetworkType String
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
accessNetworkUesa String
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
adviceOfCharge String
Advice of charge.
anqpDomainId Number
ANQP Domain ID (0-65535).
bssTransition String
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
connCap String
Connection capability name.
deauthRequestTimeout Number
Deauthentication request timeout (in seconds).
dgaf String
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domainName String
Domain name.
gasComebackDelay Number
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gasFragmentationLimit Number
GAS fragmentation limit (512 - 4096, default = 1024).
hessid String
Homogeneous extended service set identifier (HESSID).
ipAddrType String
IP address type name.
l2tif String
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gppPlmn String
3GPP PLMN name.
naiRealm String
NAI realm list name.
name String
Hotspot profile name.
networkAuth String
Network authentication name.
objectWirelesscontrollerHotspot20HsprofileId String
an identifier for the resource with format {{name}}.
operFriendlyName String
Operator friendly name.
operIcon String
Operator icon.
osuProviderNai String
OSU Provider NAI.
osuProviders List<String>
Manually selected list of OSU provider(s).
osuSsid String
Online sign up (OSU) SSID.
pameBi String
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxyArp String
Enable/disable Proxy ARP. Valid values: disable, enable.
qosMap String
QoS MAP set ID.
release Number
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roamingConsortium String
Roaming consortium list name.
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.
termsAndConditions String
Terms and conditions.
venueGroup String
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venueName String
Venue name.
venueType String
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venueUrl String
Venue name.
wanMetrics String
WAN metric name.
wnmSleepMode String
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.

Outputs

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

Get an existing ObjectWirelesscontrollerHotspot20Hsprofile 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?: ObjectWirelesscontrollerHotspot20HsprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20Hsprofile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_network_asra: Optional[str] = None,
        access_network_esr: Optional[str] = None,
        access_network_internet: Optional[str] = None,
        access_network_type: Optional[str] = None,
        access_network_uesa: Optional[str] = None,
        adom: Optional[str] = None,
        advice_of_charge: Optional[str] = None,
        anqp_domain_id: Optional[float] = None,
        bss_transition: Optional[str] = None,
        conn_cap: Optional[str] = None,
        deauth_request_timeout: Optional[float] = None,
        dgaf: Optional[str] = None,
        domain_name: Optional[str] = None,
        gas_comeback_delay: Optional[float] = None,
        gas_fragmentation_limit: Optional[float] = None,
        hessid: Optional[str] = None,
        ip_addr_type: Optional[str] = None,
        l2tif: Optional[str] = None,
        n3gpp_plmn: Optional[str] = None,
        nai_realm: Optional[str] = None,
        name: Optional[str] = None,
        network_auth: Optional[str] = None,
        object_wirelesscontroller_hotspot20_hsprofile_id: Optional[str] = None,
        oper_friendly_name: Optional[str] = None,
        oper_icon: Optional[str] = None,
        osu_provider_nai: Optional[str] = None,
        osu_providers: Optional[Sequence[str]] = None,
        osu_ssid: Optional[str] = None,
        pame_bi: Optional[str] = None,
        proxy_arp: Optional[str] = None,
        qos_map: Optional[str] = None,
        release: Optional[float] = None,
        roaming_consortium: Optional[str] = None,
        scopetype: Optional[str] = None,
        terms_and_conditions: Optional[str] = None,
        venue_group: Optional[str] = None,
        venue_name: Optional[str] = None,
        venue_type: Optional[str] = None,
        venue_url: Optional[str] = None,
        wan_metrics: Optional[str] = None,
        wnm_sleep_mode: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20Hsprofile
func GetObjectWirelesscontrollerHotspot20Hsprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20HsprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20Hsprofile, error)
public static ObjectWirelesscontrollerHotspot20Hsprofile Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20HsprofileState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerHotspot20Hsprofile get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20HsprofileState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20Hsprofile    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:
AccessNetworkAsra string
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
AccessNetworkEsr string
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
AccessNetworkInternet string
Enable/disable connectivity to the Internet. Valid values: disable, enable.
AccessNetworkType string
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
AccessNetworkUesa string
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AdviceOfCharge string
Advice of charge.
AnqpDomainId double
ANQP Domain ID (0-65535).
BssTransition string
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
ConnCap string
Connection capability name.
DeauthRequestTimeout double
Deauthentication request timeout (in seconds).
Dgaf string
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
DomainName string
Domain name.
GasComebackDelay double
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
GasFragmentationLimit double
GAS fragmentation limit (512 - 4096, default = 1024).
Hessid string
Homogeneous extended service set identifier (HESSID).
IpAddrType string
IP address type name.
L2tif string
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
N3gppPlmn string
3GPP PLMN name.
NaiRealm string
NAI realm list name.
Name string
Hotspot profile name.
NetworkAuth string
Network authentication name.
ObjectWirelesscontrollerHotspot20HsprofileId string
an identifier for the resource with format {{name}}.
OperFriendlyName string
Operator friendly name.
OperIcon string
Operator icon.
OsuProviderNai string
OSU Provider NAI.
OsuProviders List<string>
Manually selected list of OSU provider(s).
OsuSsid string
Online sign up (OSU) SSID.
PameBi string
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
ProxyArp string
Enable/disable Proxy ARP. Valid values: disable, enable.
QosMap string
QoS MAP set ID.
Release double
Hotspot 2.0 Release number (1, 2, 3, default = 2).
RoamingConsortium string
Roaming consortium list name.
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.
TermsAndConditions string
Terms and conditions.
VenueGroup string
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
VenueName string
Venue name.
VenueType string
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
VenueUrl string
Venue name.
WanMetrics string
WAN metric name.
WnmSleepMode string
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
AccessNetworkAsra string
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
AccessNetworkEsr string
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
AccessNetworkInternet string
Enable/disable connectivity to the Internet. Valid values: disable, enable.
AccessNetworkType string
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
AccessNetworkUesa string
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AdviceOfCharge string
Advice of charge.
AnqpDomainId float64
ANQP Domain ID (0-65535).
BssTransition string
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
ConnCap string
Connection capability name.
DeauthRequestTimeout float64
Deauthentication request timeout (in seconds).
Dgaf string
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
DomainName string
Domain name.
GasComebackDelay float64
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
GasFragmentationLimit float64
GAS fragmentation limit (512 - 4096, default = 1024).
Hessid string
Homogeneous extended service set identifier (HESSID).
IpAddrType string
IP address type name.
L2tif string
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
N3gppPlmn string
3GPP PLMN name.
NaiRealm string
NAI realm list name.
Name string
Hotspot profile name.
NetworkAuth string
Network authentication name.
ObjectWirelesscontrollerHotspot20HsprofileId string
an identifier for the resource with format {{name}}.
OperFriendlyName string
Operator friendly name.
OperIcon string
Operator icon.
OsuProviderNai string
OSU Provider NAI.
OsuProviders []string
Manually selected list of OSU provider(s).
OsuSsid string
Online sign up (OSU) SSID.
PameBi string
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
ProxyArp string
Enable/disable Proxy ARP. Valid values: disable, enable.
QosMap string
QoS MAP set ID.
Release float64
Hotspot 2.0 Release number (1, 2, 3, default = 2).
RoamingConsortium string
Roaming consortium list name.
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.
TermsAndConditions string
Terms and conditions.
VenueGroup string
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
VenueName string
Venue name.
VenueType string
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
VenueUrl string
Venue name.
WanMetrics string
WAN metric name.
WnmSleepMode string
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
accessNetworkAsra String
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
accessNetworkEsr String
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
accessNetworkInternet String
Enable/disable connectivity to the Internet. Valid values: disable, enable.
accessNetworkType String
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
accessNetworkUesa String
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
adviceOfCharge String
Advice of charge.
anqpDomainId Double
ANQP Domain ID (0-65535).
bssTransition String
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
connCap String
Connection capability name.
deauthRequestTimeout Double
Deauthentication request timeout (in seconds).
dgaf String
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domainName String
Domain name.
gasComebackDelay Double
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gasFragmentationLimit Double
GAS fragmentation limit (512 - 4096, default = 1024).
hessid String
Homogeneous extended service set identifier (HESSID).
ipAddrType String
IP address type name.
l2tif String
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gppPlmn String
3GPP PLMN name.
naiRealm String
NAI realm list name.
name String
Hotspot profile name.
networkAuth String
Network authentication name.
objectWirelesscontrollerHotspot20HsprofileId String
an identifier for the resource with format {{name}}.
operFriendlyName String
Operator friendly name.
operIcon String
Operator icon.
osuProviderNai String
OSU Provider NAI.
osuProviders List<String>
Manually selected list of OSU provider(s).
osuSsid String
Online sign up (OSU) SSID.
pameBi String
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxyArp String
Enable/disable Proxy ARP. Valid values: disable, enable.
qosMap String
QoS MAP set ID.
release Double
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roamingConsortium String
Roaming consortium list name.
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.
termsAndConditions String
Terms and conditions.
venueGroup String
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venueName String
Venue name.
venueType String
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venueUrl String
Venue name.
wanMetrics String
WAN metric name.
wnmSleepMode String
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
accessNetworkAsra string
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
accessNetworkEsr string
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
accessNetworkInternet string
Enable/disable connectivity to the Internet. Valid values: disable, enable.
accessNetworkType string
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
accessNetworkUesa string
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
adviceOfCharge string
Advice of charge.
anqpDomainId number
ANQP Domain ID (0-65535).
bssTransition string
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
connCap string
Connection capability name.
deauthRequestTimeout number
Deauthentication request timeout (in seconds).
dgaf string
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domainName string
Domain name.
gasComebackDelay number
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gasFragmentationLimit number
GAS fragmentation limit (512 - 4096, default = 1024).
hessid string
Homogeneous extended service set identifier (HESSID).
ipAddrType string
IP address type name.
l2tif string
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gppPlmn string
3GPP PLMN name.
naiRealm string
NAI realm list name.
name string
Hotspot profile name.
networkAuth string
Network authentication name.
objectWirelesscontrollerHotspot20HsprofileId string
an identifier for the resource with format {{name}}.
operFriendlyName string
Operator friendly name.
operIcon string
Operator icon.
osuProviderNai string
OSU Provider NAI.
osuProviders string[]
Manually selected list of OSU provider(s).
osuSsid string
Online sign up (OSU) SSID.
pameBi string
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxyArp string
Enable/disable Proxy ARP. Valid values: disable, enable.
qosMap string
QoS MAP set ID.
release number
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roamingConsortium string
Roaming consortium list name.
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.
termsAndConditions string
Terms and conditions.
venueGroup string
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venueName string
Venue name.
venueType string
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venueUrl string
Venue name.
wanMetrics string
WAN metric name.
wnmSleepMode string
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
access_network_asra str
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
access_network_esr str
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
access_network_internet str
Enable/disable connectivity to the Internet. Valid values: disable, enable.
access_network_type str
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
access_network_uesa str
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
advice_of_charge str
Advice of charge.
anqp_domain_id float
ANQP Domain ID (0-65535).
bss_transition str
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
conn_cap str
Connection capability name.
deauth_request_timeout float
Deauthentication request timeout (in seconds).
dgaf str
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domain_name str
Domain name.
gas_comeback_delay float
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gas_fragmentation_limit float
GAS fragmentation limit (512 - 4096, default = 1024).
hessid str
Homogeneous extended service set identifier (HESSID).
ip_addr_type str
IP address type name.
l2tif str
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gpp_plmn str
3GPP PLMN name.
nai_realm str
NAI realm list name.
name str
Hotspot profile name.
network_auth str
Network authentication name.
object_wirelesscontroller_hotspot20_hsprofile_id str
an identifier for the resource with format {{name}}.
oper_friendly_name str
Operator friendly name.
oper_icon str
Operator icon.
osu_provider_nai str
OSU Provider NAI.
osu_providers Sequence[str]
Manually selected list of OSU provider(s).
osu_ssid str
Online sign up (OSU) SSID.
pame_bi str
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxy_arp str
Enable/disable Proxy ARP. Valid values: disable, enable.
qos_map str
QoS MAP set ID.
release float
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roaming_consortium str
Roaming consortium list name.
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.
terms_and_conditions str
Terms and conditions.
venue_group str
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venue_name str
Venue name.
venue_type str
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venue_url str
Venue name.
wan_metrics str
WAN metric name.
wnm_sleep_mode str
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.
accessNetworkAsra String
Enable/disable additional step required for access (ASRA). Valid values: disable, enable.
accessNetworkEsr String
Enable/disable emergency services reachable (ESR). Valid values: disable, enable.
accessNetworkInternet String
Enable/disable connectivity to the Internet. Valid values: disable, enable.
accessNetworkType String
Access network type. Valid values: private-network, private-network-with-guest-access, chargeable-public-network, free-public-network, personal-device-network, emergency-services-only-network, test-or-experimental, wildcard.
accessNetworkUesa String
Enable/disable unauthenticated emergency service accessible (UESA). Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
adviceOfCharge String
Advice of charge.
anqpDomainId Number
ANQP Domain ID (0-65535).
bssTransition String
Enable/disable basic service set (BSS) transition Support. Valid values: disable, enable.
connCap String
Connection capability name.
deauthRequestTimeout Number
Deauthentication request timeout (in seconds).
dgaf String
Enable/disable downstream group-addressed forwarding (DGAF). Valid values: disable, enable.
domainName String
Domain name.
gasComebackDelay Number
GAS comeback delay (0 or 100 - 4000 milliseconds, default = 500).
gasFragmentationLimit Number
GAS fragmentation limit (512 - 4096, default = 1024).
hessid String
Homogeneous extended service set identifier (HESSID).
ipAddrType String
IP address type name.
l2tif String
Enable/disable Layer 2 traffic inspection and filtering. Valid values: disable, enable.
n3gppPlmn String
3GPP PLMN name.
naiRealm String
NAI realm list name.
name String
Hotspot profile name.
networkAuth String
Network authentication name.
objectWirelesscontrollerHotspot20HsprofileId String
an identifier for the resource with format {{name}}.
operFriendlyName String
Operator friendly name.
operIcon String
Operator icon.
osuProviderNai String
OSU Provider NAI.
osuProviders List<String>
Manually selected list of OSU provider(s).
osuSsid String
Online sign up (OSU) SSID.
pameBi String
Enable/disable Pre-Association Message Exchange BSSID Independent (PAME-BI). Valid values: disable, enable.
proxyArp String
Enable/disable Proxy ARP. Valid values: disable, enable.
qosMap String
QoS MAP set ID.
release Number
Hotspot 2.0 Release number (1, 2, 3, default = 2).
roamingConsortium String
Roaming consortium list name.
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.
termsAndConditions String
Terms and conditions.
venueGroup String
Venue group. Valid values: unspecified, assembly, business, educational, factory, institutional, mercantile, residential, storage, utility, vehicular, outdoor.
venueName String
Venue name.
venueType String
Venue type. Valid values: unspecified, arena, stadium, passenger-terminal, amphitheater, amusement-park, place-of-worship, convention-center, library, museum, restaurant, theater, bar, coffee-shop, zoo-or-aquarium, emergency-center, doctor-office, bank, fire-station, police-station, post-office, professional-office, research-facility, attorney-office, primary-school, secondary-school, university-or-college, factory, hospital, long-term-care-facility, rehab-center, group-home, prison-or-jail, retail-store, grocery-market, auto-service-station, shopping-mall, gas-station, private, hotel-or-motel, dormitory, boarding-house, automobile, airplane, bus, ferry, ship-or-boat, train, motor-bike, muni-mesh-network, city-park, rest-area, traffic-control, bus-stop, kiosk.
venueUrl String
Venue name.
wanMetrics String
WAN metric name.
wnmSleepMode String
Enable/disable wireless network management (WNM) sleep mode. Valid values: disable, enable.

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20Hsprofile:ObjectWirelesscontrollerHotspot20Hsprofile labelname {{name}}
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.