fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo
Explore with Pulumi AI
Plan info.
This resource is a sub resource for variable
plan_info
of resourcefortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist
. 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 trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofcharge("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge", {});
const trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist", {h2qpAdviceOfCharge: trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.name}, {
dependsOn: [trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge],
});
const trname = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("trname", {
h2qpAdviceOfCharge: trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist.name,
aocList: trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.name,
}, {
dependsOn: [trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge = fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofcharge("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge")
trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist = fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist", h2qp_advice_of_charge=trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge.name,
opts = pulumi.ResourceOptions(depends_on=[trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge]))
trname = fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("trname",
h2qp_advice_of_charge=trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist.name,
aoc_list=trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge.name,
opts = pulumi.ResourceOptions(depends_on=[trname2_object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist]))
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 {
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpadviceofcharge(ctx, "trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge", nil)
if err != nil {
return err
}
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist(ctx, "trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistArgs{
H2qpAdviceOfCharge: trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge,
}))
if err != nil {
return err
}
_, err = fortimanager.NewObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(ctx, "trname", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs{
H2qpAdviceOfCharge: trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist.Name,
AocList: trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofcharge("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge");
var trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist", new()
{
H2qpAdviceOfCharge = trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge,
},
});
var trname = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("trname", new()
{
H2qpAdviceOfCharge = trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist.Name,
AocList = trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofcharge;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistArgs;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs;
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 trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge = new ObjectWirelesscontrollerHotspot20H2qpadviceofcharge("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge");
var trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist = new ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist("trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist", ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistArgs.builder()
.h2qpAdviceOfCharge(trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge)
.build());
var trname = new ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("trname", ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs.builder()
.h2qpAdviceOfCharge(trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist.name())
.aocList(trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo
properties:
h2qpAdviceOfCharge: ${trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist.name}
aocList: ${trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.name}
options:
dependsOn:
- ${trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist}
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist:
type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclist
properties:
h2qpAdviceOfCharge: ${trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge.name}
options:
dependsOn:
- ${trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge}
trname2ObjectWirelesscontrollerHotspot20H2qpadviceofcharge:
type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpadviceofcharge
Create ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(name: string, args: ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(resource_name: str,
args: ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(resource_name: str,
opts: Optional[ResourceOptions] = None,
aoc_list: Optional[str] = None,
h2qp_advice_of_charge: Optional[str] = None,
adom: Optional[str] = None,
currency: Optional[str] = None,
info_file: Optional[str] = None,
lang: Optional[str] = None,
name: Optional[str] = None,
object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist_planinfo_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo, error)
public ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(string name, ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(String name, ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs args)
public ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(String name, ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs
- 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 objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource", new()
{
AocList = "string",
H2qpAdviceOfCharge = "string",
Adom = "string",
Currency = "string",
InfoFile = "string",
Lang = "string",
Name = "string",
ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(ctx, "objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs{
AocList: pulumi.String("string"),
H2qpAdviceOfCharge: pulumi.String("string"),
Adom: pulumi.String("string"),
Currency: pulumi.String("string"),
InfoFile: pulumi.String("string"),
Lang: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource = new ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource", ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoArgs.builder()
.aocList("string")
.h2qpAdviceOfCharge("string")
.adom("string")
.currency("string")
.infoFile("string")
.lang("string")
.name("string")
.objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoId("string")
.scopetype("string")
.build());
object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist_planinfo_resource = fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource",
aoc_list="string",
h2qp_advice_of_charge="string",
adom="string",
currency="string",
info_file="string",
lang="string",
name="string",
object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist_planinfo_id="string",
scopetype="string")
const objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo("objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoResource", {
aocList: "string",
h2qpAdviceOfCharge: "string",
adom: "string",
currency: "string",
infoFile: "string",
lang: "string",
name: "string",
objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoId: "string",
scopetype: "string",
});
type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo
properties:
adom: string
aocList: string
currency: string
h2qpAdviceOfCharge: string
infoFile: string
lang: string
name: string
objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoId: string
scopetype: string
ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo 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 ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo resource accepts the following input properties:
- Aoc
List string - Aoc List.
- H2qp
Advice stringOf Charge - H2Qp Advice Of Charge.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Currency string
- Currency code.
- Info
File string - Info file.
- Lang string
- Language code.
- Name string
- Plan name.
- Object
Wirelesscontroller stringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Aoc
List string - Aoc List.
- H2qp
Advice stringOf Charge - H2Qp Advice Of Charge.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Currency string
- Currency code.
- Info
File string - Info file.
- Lang string
- Language code.
- Name string
- Plan name.
- Object
Wirelesscontroller stringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- aoc
List String - Aoc List.
- h2qp
Advice StringOf Charge - H2Qp Advice Of Charge.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - currency String
- Currency code.
- info
File String - Info file.
- lang String
- Language code.
- name String
- Plan name.
- object
Wirelesscontroller StringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- aoc
List string - Aoc List.
- h2qp
Advice stringOf Charge - H2Qp Advice Of Charge.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - currency string
- Currency code.
- info
File string - Info file.
- lang string
- Language code.
- name string
- Plan name.
- object
Wirelesscontroller stringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- aoc_
list str - Aoc List.
- h2qp_
advice_ strof_ charge - H2Qp Advice Of Charge.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - currency str
- Currency code.
- info_
file str - Info file.
- lang str
- Language code.
- name str
- Plan name.
- object_
wirelesscontroller_ strhotspot20_ h2qpadviceofcharge_ aoclist_ planinfo_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- aoc
List String - Aoc List.
- h2qp
Advice StringOf Charge - H2Qp Advice Of Charge.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - currency String
- Currency code.
- info
File String - Info file.
- lang String
- Language code.
- name String
- Plan name.
- object
Wirelesscontroller StringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo 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 ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo Resource
Get an existing ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo 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?: ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
aoc_list: Optional[str] = None,
currency: Optional[str] = None,
h2qp_advice_of_charge: Optional[str] = None,
info_file: Optional[str] = None,
lang: Optional[str] = None,
name: Optional[str] = None,
object_wirelesscontroller_hotspot20_h2qpadviceofcharge_aoclist_planinfo_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo
func GetObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo, error)
public static ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfoState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Aoc
List string - Aoc List.
- Currency string
- Currency code.
- H2qp
Advice stringOf Charge - H2Qp Advice Of Charge.
- Info
File string - Info file.
- Lang string
- Language code.
- Name string
- Plan name.
- Object
Wirelesscontroller stringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Aoc
List string - Aoc List.
- Currency string
- Currency code.
- H2qp
Advice stringOf Charge - H2Qp Advice Of Charge.
- Info
File string - Info file.
- Lang string
- Language code.
- Name string
- Plan name.
- Object
Wirelesscontroller stringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - aoc
List String - Aoc List.
- currency String
- Currency code.
- h2qp
Advice StringOf Charge - H2Qp Advice Of Charge.
- info
File String - Info file.
- lang String
- Language code.
- name String
- Plan name.
- object
Wirelesscontroller StringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - aoc
List string - Aoc List.
- currency string
- Currency code.
- h2qp
Advice stringOf Charge - H2Qp Advice Of Charge.
- info
File string - Info file.
- lang string
- Language code.
- name string
- Plan name.
- object
Wirelesscontroller stringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - aoc_
list str - Aoc List.
- currency str
- Currency code.
- h2qp_
advice_ strof_ charge - H2Qp Advice Of Charge.
- info_
file str - Info file.
- lang str
- Language code.
- name str
- Plan name.
- object_
wirelesscontroller_ strhotspot20_ h2qpadviceofcharge_ aoclist_ planinfo_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - aoc
List String - Aoc List.
- currency String
- Currency code.
- h2qp
Advice StringOf Charge - H2Qp Advice Of Charge.
- info
File String - Info file.
- lang String
- Language code.
- name String
- Plan name.
- object
Wirelesscontroller StringHotspot20H2qpadviceofcharge Aoclist Planinfo Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Import
ObjectWirelessController Hotspot20H2QpAdviceOfChargeAocListPlanInfo can be imported using any of these accepted formats:
Set import_options = [“h2qp_advice_of_charge=YOUR_VALUE”, “aoc_list=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo:ObjectWirelesscontrollerHotspot20H2qpadviceofchargeAoclistPlaninfo labelname {{name}}
$ 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.