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

fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist

Explore with Pulumi AI

Mobile Country Code and Mobile Network Code configuration.

This resource is a sub resource for variable mcc_mnc_list of resource fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellular. Conflict and overwrite may occur if use both of them.

Example Usage

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

const trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular = new fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellular("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular", {});
const trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist = new fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist", {
    anqp3gppCellular: trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular.name,
    fosid: 5,
}, {
    dependsOn: [trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname_object_wirelesscontroller_hotspot20_anqp3gppcellular = fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellular("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular")
trname_object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist = fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist",
    anqp3gpp_cellular=trname_object_wirelesscontroller_hotspot20_anqp3gppcellular.name,
    fosid=5,
    opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_hotspot20_anqp3gppcellular]))
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 {
		trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular, err := fortimanager.NewObjectWirelesscontrollerHotspot20Anqp3gppcellular(ctx, "trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular", nil)
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(ctx, "trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist", &fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs{
			Anqp3gppCellular: trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular.Name,
			Fosid:            pulumi.Float64(5),
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular,
		}))
		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 trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular = new Fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellular("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular");

    var trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist = new Fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist", new()
    {
        Anqp3gppCellular = trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular.Name,
        Fosid = 5,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellular;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs;
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 trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular = new ObjectWirelesscontrollerHotspot20Anqp3gppcellular("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular");

        var trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist = new ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist", ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs.builder()
            .anqp3gppCellular(trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular.name())
            .fosid(5)
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular)
                .build());

    }
}
Copy
resources:
  trnameObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist:
    type: fortimanager:ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist
    properties:
      anqp3gppCellular: ${trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular.name}
      fosid: 5
    options:
      dependsOn:
        - ${trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular}
  trnameObjectWirelesscontrollerHotspot20Anqp3gppcellular:
    type: fortimanager:ObjectWirelesscontrollerHotspot20Anqp3gppcellular
Copy

Create ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist Resource

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

Constructor syntax

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

@overload
def ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(resource_name: str,
                                                                opts: Optional[ResourceOptions] = None,
                                                                anqp3gpp_cellular: Optional[str] = None,
                                                                adom: Optional[str] = None,
                                                                fosid: Optional[float] = None,
                                                                mcc: Optional[str] = None,
                                                                mnc: Optional[str] = None,
                                                                object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist_id: Optional[str] = None,
                                                                scopetype: Optional[str] = None)
func NewObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist, error)
public ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(string name, ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(String name, ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs args)
public ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(String name, ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist
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. ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs
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. ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs
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. ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs
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. ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs
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. ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs
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 objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource = new Fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource", new()
{
    Anqp3gppCellular = "string",
    Adom = "string",
    Fosid = 0,
    Mcc = "string",
    Mnc = "string",
    ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId = "string",
    Scopetype = "string",
});
Copy
example, err := fortimanager.NewObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(ctx, "objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource", &fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs{
Anqp3gppCellular: pulumi.String("string"),
Adom: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Mcc: pulumi.String("string"),
Mnc: pulumi.String("string"),
ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
Copy
var objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource = new ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource", ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistArgs.builder()
    .anqp3gppCellular("string")
    .adom("string")
    .fosid(0)
    .mcc("string")
    .mnc("string")
    .objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId("string")
    .scopetype("string")
    .build());
Copy
object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist_resource = fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource",
    anqp3gpp_cellular="string",
    adom="string",
    fosid=0,
    mcc="string",
    mnc="string",
    object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist_id="string",
    scopetype="string")
Copy
const objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource = new fortimanager.ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist("objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistResource", {
    anqp3gppCellular: "string",
    adom: "string",
    fosid: 0,
    mcc: "string",
    mnc: "string",
    objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId: "string",
    scopetype: "string",
});
Copy
type: fortimanager:ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist
properties:
    adom: string
    anqp3gppCellular: string
    fosid: 0
    mcc: string
    mnc: string
    objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId: string
    scopetype: string
Copy

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

Anqp3gppCellular This property is required. string
Anqp 3Gpp Cellular.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid double
ID.
Mcc string
Mobile country code.
Mnc string
Mobile network code.
ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId string
an identifier for the resource with format {{fosid}}.
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.
Anqp3gppCellular This property is required. string
Anqp 3Gpp Cellular.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid float64
ID.
Mcc string
Mobile country code.
Mnc string
Mobile network code.
ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId string
an identifier for the resource with format {{fosid}}.
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.
anqp3gppCellular This property is required. String
Anqp 3Gpp Cellular.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid Double
ID.
mcc String
Mobile country code.
mnc String
Mobile network code.
objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId String
an identifier for the resource with format {{fosid}}.
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.
anqp3gppCellular This property is required. string
Anqp 3Gpp Cellular.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid number
ID.
mcc string
Mobile country code.
mnc string
Mobile network code.
objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId string
an identifier for the resource with format {{fosid}}.
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.
anqp3gpp_cellular This property is required. str
Anqp 3Gpp Cellular.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid float
ID.
mcc str
Mobile country code.
mnc str
Mobile network code.
object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist_id str
an identifier for the resource with format {{fosid}}.
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.
anqp3gppCellular This property is required. String
Anqp 3Gpp Cellular.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid Number
ID.
mcc String
Mobile country code.
mnc String
Mobile network code.
objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId String
an identifier for the resource with format {{fosid}}.
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 ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist 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 ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist Resource

Get an existing ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist 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?: ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        anqp3gpp_cellular: Optional[str] = None,
        fosid: Optional[float] = None,
        mcc: Optional[str] = None,
        mnc: Optional[str] = None,
        object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist_id: Optional[str] = None,
        scopetype: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist
func GetObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist, error)
public static ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist    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.
Anqp3gppCellular string
Anqp 3Gpp Cellular.
Fosid double
ID.
Mcc string
Mobile country code.
Mnc string
Mobile network code.
ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId string
an identifier for the resource with format {{fosid}}.
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.
Anqp3gppCellular string
Anqp 3Gpp Cellular.
Fosid float64
ID.
Mcc string
Mobile country code.
Mnc string
Mobile network code.
ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId string
an identifier for the resource with format {{fosid}}.
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.
anqp3gppCellular String
Anqp 3Gpp Cellular.
fosid Double
ID.
mcc String
Mobile country code.
mnc String
Mobile network code.
objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId String
an identifier for the resource with format {{fosid}}.
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.
anqp3gppCellular string
Anqp 3Gpp Cellular.
fosid number
ID.
mcc string
Mobile country code.
mnc string
Mobile network code.
objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId string
an identifier for the resource with format {{fosid}}.
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.
anqp3gpp_cellular str
Anqp 3Gpp Cellular.
fosid float
ID.
mcc str
Mobile country code.
mnc str
Mobile network code.
object_wirelesscontroller_hotspot20_anqp3gppcellular_mccmnclist_id str
an identifier for the resource with format {{fosid}}.
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.
anqp3gppCellular String
Anqp 3Gpp Cellular.
fosid Number
ID.
mcc String
Mobile country code.
mnc String
Mobile network code.
objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclistId String
an identifier for the resource with format {{fosid}}.
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.

Import

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

Set import_options = [“anqp_3gpp_cellular=YOUR_VALUE”] in the provider section.

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist:ObjectWirelesscontrollerHotspot20Anqp3gppcellularMccmnclist labelname {{fosid}}
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.