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

fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist

Explore with Pulumi AI

URL list.

This resource is a sub resource for variable value_list of resource fortimanager.ObjectWirelesscontrollerHotspot20Anqpvenueurl. 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 trnameObjectWirelesscontrollerHotspot20Anqpvenueurl = new fortimanager.ObjectWirelesscontrollerHotspot20Anqpvenueurl("trnameObjectWirelesscontrollerHotspot20Anqpvenueurl", {});
const trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist = new fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist", {
    anqpVenueUrl: trnameObjectWirelesscontrollerHotspot20Anqpvenueurl.name,
    index: 2,
    number: 12,
}, {
    dependsOn: [trnameObjectWirelesscontrollerHotspot20Anqpvenueurl],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname_object_wirelesscontroller_hotspot20_anqpvenueurl = fortimanager.ObjectWirelesscontrollerHotspot20Anqpvenueurl("trnameObjectWirelesscontrollerHotspot20Anqpvenueurl")
trname_object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist = fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist",
    anqp_venue_url=trname_object_wirelesscontroller_hotspot20_anqpvenueurl.name,
    index=2,
    number=12,
    opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_hotspot20_anqpvenueurl]))
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 {
		trnameObjectWirelesscontrollerHotspot20Anqpvenueurl, err := fortimanager.NewObjectWirelesscontrollerHotspot20Anqpvenueurl(ctx, "trnameObjectWirelesscontrollerHotspot20Anqpvenueurl", nil)
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(ctx, "trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist", &fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs{
			AnqpVenueUrl: trnameObjectWirelesscontrollerHotspot20Anqpvenueurl.Name,
			Index:        pulumi.Float64(2),
			Number:       pulumi.Float64(12),
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectWirelesscontrollerHotspot20Anqpvenueurl,
		}))
		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 trnameObjectWirelesscontrollerHotspot20Anqpvenueurl = new Fortimanager.ObjectWirelesscontrollerHotspot20Anqpvenueurl("trnameObjectWirelesscontrollerHotspot20Anqpvenueurl");

    var trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist", new()
    {
        AnqpVenueUrl = trnameObjectWirelesscontrollerHotspot20Anqpvenueurl.Name,
        Index = 2,
        Number = 12,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectWirelesscontrollerHotspot20Anqpvenueurl,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Anqpvenueurl;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs;
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 trnameObjectWirelesscontrollerHotspot20Anqpvenueurl = new ObjectWirelesscontrollerHotspot20Anqpvenueurl("trnameObjectWirelesscontrollerHotspot20Anqpvenueurl");

        var trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist = new ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist", ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs.builder()
            .anqpVenueUrl(trnameObjectWirelesscontrollerHotspot20Anqpvenueurl.name())
            .index(2)
            .number(12)
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectWirelesscontrollerHotspot20Anqpvenueurl)
                .build());

    }
}
Copy
resources:
  trnameObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist:
    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist
    properties:
      anqpVenueUrl: ${trnameObjectWirelesscontrollerHotspot20Anqpvenueurl.name}
      index: 2
      number: 12
    options:
      dependsOn:
        - ${trnameObjectWirelesscontrollerHotspot20Anqpvenueurl}
  trnameObjectWirelesscontrollerHotspot20Anqpvenueurl:
    type: fortimanager:ObjectWirelesscontrollerHotspot20Anqpvenueurl
Copy

Create ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist Resource

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

Constructor syntax

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

@overload
def ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(resource_name: str,
                                                           opts: Optional[ResourceOptions] = None,
                                                           anqp_venue_url: Optional[str] = None,
                                                           adom: Optional[str] = None,
                                                           index: Optional[float] = None,
                                                           number: Optional[float] = None,
                                                           object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist_id: Optional[str] = None,
                                                           scopetype: Optional[str] = None,
                                                           value: Optional[str] = None)
func NewObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist, error)
public ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(string name, ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(String name, ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs args)
public ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(String name, ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist
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. ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs
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. ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs
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. ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs
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. ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs
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. ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs
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 objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource = new Fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource", new()
{
    AnqpVenueUrl = "string",
    Adom = "string",
    Index = 0,
    Number = 0,
    ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistId = "string",
    Scopetype = "string",
    Value = "string",
});
Copy
example, err := fortimanager.NewObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(ctx, "objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource", &fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs{
AnqpVenueUrl: pulumi.String("string"),
Adom: pulumi.String("string"),
Index: pulumi.Float64(0),
Number: pulumi.Float64(0),
ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Value: pulumi.String("string"),
})
Copy
var objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource = new ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource", ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistArgs.builder()
    .anqpVenueUrl("string")
    .adom("string")
    .index(0)
    .number(0)
    .objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId("string")
    .scopetype("string")
    .value("string")
    .build());
Copy
object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist_resource = fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource",
    anqp_venue_url="string",
    adom="string",
    index=0,
    number=0,
    object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist_id="string",
    scopetype="string",
    value="string")
Copy
const objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource = new fortimanager.ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist("objectWirelesscontrollerHotspot20AnqpvenueurlValuelistResource", {
    anqpVenueUrl: "string",
    adom: "string",
    index: 0,
    number: 0,
    objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId: "string",
    scopetype: "string",
    value: "string",
});
Copy
type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist
properties:
    adom: string
    anqpVenueUrl: string
    index: 0
    number: 0
    objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId: string
    scopetype: string
    value: string
Copy

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

AnqpVenueUrl This property is required. string
Anqp Venue Url.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Index double
URL index.
Number double
Venue number.
ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Value string
Venue URL value.
AnqpVenueUrl This property is required. string
Anqp Venue Url.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Index float64
URL index.
Number float64
Venue number.
ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Value string
Venue URL value.
anqpVenueUrl This property is required. String
Anqp Venue Url.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
index Double
URL index.
number Double
Venue number.
objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value String
Venue URL value.
anqpVenueUrl This property is required. string
Anqp Venue Url.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
index number
URL index.
number number
Venue number.
objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId string
an identifier for the resource with format {{index}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value string
Venue URL value.
anqp_venue_url This property is required. str
Anqp Venue Url.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
index float
URL index.
number float
Venue number.
object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist_id str
an identifier for the resource with format {{index}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value str
Venue URL value.
anqpVenueUrl This property is required. String
Anqp Venue Url.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
index Number
URL index.
number Number
Venue number.
objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value String
Venue URL value.

Outputs

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

Get an existing ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist 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?: ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        anqp_venue_url: Optional[str] = None,
        index: Optional[float] = None,
        number: Optional[float] = None,
        object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist_id: Optional[str] = None,
        scopetype: Optional[str] = None,
        value: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist
func GetObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist, error)
public static ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist    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.
AnqpVenueUrl string
Anqp Venue Url.
Index double
URL index.
Number double
Venue number.
ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Value string
Venue URL value.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AnqpVenueUrl string
Anqp Venue Url.
Index float64
URL index.
Number float64
Venue number.
ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelistId string
an identifier for the resource with format {{index}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Value string
Venue URL value.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqpVenueUrl String
Anqp Venue Url.
index Double
URL index.
number Double
Venue number.
objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value String
Venue URL value.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqpVenueUrl string
Anqp Venue Url.
index number
URL index.
number number
Venue number.
objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId string
an identifier for the resource with format {{index}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value string
Venue URL value.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqp_venue_url str
Anqp Venue Url.
index float
URL index.
number float
Venue number.
object_wirelesscontroller_hotspot20_anqpvenueurl_valuelist_id str
an identifier for the resource with format {{index}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value str
Venue URL value.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
anqpVenueUrl String
Anqp Venue Url.
index Number
URL index.
number Number
Venue number.
objectWirelesscontrollerHotspot20AnqpvenueurlValuelistId String
an identifier for the resource with format {{index}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
value String
Venue URL value.

Import

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

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20AnqpvenueurlValuelist:ObjectWirelesscontrollerHotspot20AnqpvenueurlValuelist labelname {{index}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.