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

fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    OSU service name.

    This resource is a sub resource for variable service_description of resource fortimanager.ObjectWirelesscontrollerHotspot20H2qposuprovider. 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 trnameObjectWirelesscontrollerHotspot20H2qposuprovider = new fortimanager.ObjectWirelesscontrollerHotspot20H2qposuprovider("trnameObjectWirelesscontrollerHotspot20H2qposuprovider", {});
    const trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription = new fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription", {
        serviceDescription: "This is a Terraform example",
        serviceId: 4,
        h2qpOsuProvider: trnameObjectWirelesscontrollerHotspot20H2qposuprovider.name,
    }, {
        dependsOn: [trnameObjectWirelesscontrollerHotspot20H2qposuprovider],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wirelesscontroller_hotspot20_h2qposuprovider = fortimanager.ObjectWirelesscontrollerHotspot20H2qposuprovider("trnameObjectWirelesscontrollerHotspot20H2qposuprovider")
    trname_object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription = fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription",
        service_description="This is a Terraform example",
        service_id=4,
        h2qp_osu_provider=trname_object_wirelesscontroller_hotspot20_h2qposuprovider.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_hotspot20_h2qposuprovider]))
    
    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 {
    		trnameObjectWirelesscontrollerHotspot20H2qposuprovider, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qposuprovider(ctx, "trnameObjectWirelesscontrollerHotspot20H2qposuprovider", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(ctx, "trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription", &fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs{
    			ServiceDescription: pulumi.String("This is a Terraform example"),
    			ServiceId:          pulumi.Float64(4),
    			H2qpOsuProvider:    trnameObjectWirelesscontrollerHotspot20H2qposuprovider.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWirelesscontrollerHotspot20H2qposuprovider,
    		}))
    		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 trnameObjectWirelesscontrollerHotspot20H2qposuprovider = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qposuprovider("trnameObjectWirelesscontrollerHotspot20H2qposuprovider");
    
        var trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription", new()
        {
            ServiceDescription = "This is a Terraform example",
            ServiceId = 4,
            H2qpOsuProvider = trnameObjectWirelesscontrollerHotspot20H2qposuprovider.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWirelesscontrollerHotspot20H2qposuprovider,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qposuprovider;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs;
    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 trnameObjectWirelesscontrollerHotspot20H2qposuprovider = new ObjectWirelesscontrollerHotspot20H2qposuprovider("trnameObjectWirelesscontrollerHotspot20H2qposuprovider");
    
            var trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription = new ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription", ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs.builder()
                .serviceDescription("This is a Terraform example")
                .serviceId(4)
                .h2qpOsuProvider(trnameObjectWirelesscontrollerHotspot20H2qposuprovider.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWirelesscontrollerHotspot20H2qposuprovider)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription:
        type: fortimanager:ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription
        properties:
          serviceDescription: This is a Terraform example
          serviceId: 4
          h2qpOsuProvider: ${trnameObjectWirelesscontrollerHotspot20H2qposuprovider.name}
        options:
          dependsOn:
            - ${trnameObjectWirelesscontrollerHotspot20H2qposuprovider}
      trnameObjectWirelesscontrollerHotspot20H2qposuprovider:
        type: fortimanager:ObjectWirelesscontrollerHotspot20H2qposuprovider
    

    Create ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(name: string, args: ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(resource_name: str,
                                                                           args: ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs,
                                                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(resource_name: str,
                                                                           opts: Optional[ResourceOptions] = None,
                                                                           h2qp_osu_provider: Optional[str] = None,
                                                                           adom: Optional[str] = None,
                                                                           lang: Optional[str] = None,
                                                                           object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription_id: Optional[str] = None,
                                                                           scopetype: Optional[str] = None,
                                                                           service_description: Optional[str] = None,
                                                                           service_id: Optional[float] = None)
    func NewObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription, error)
    public ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(string name, ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(String name, ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs args)
    public ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(String name, ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription
    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 ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs
    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 ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs
    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 ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs
    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 objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource", new()
    {
        H2qpOsuProvider = "string",
        Adom = "string",
        Lang = "string",
        ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId = "string",
        Scopetype = "string",
        ServiceDescription = "string",
        ServiceId = 0,
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(ctx, "objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource", &fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs{
    H2qpOsuProvider: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Lang: pulumi.String("string"),
    ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    ServiceDescription: pulumi.String("string"),
    ServiceId: pulumi.Float64(0),
    })
    
    var objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource = new ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource", ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionArgs.builder()
        .h2qpOsuProvider("string")
        .adom("string")
        .lang("string")
        .objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId("string")
        .scopetype("string")
        .serviceDescription("string")
        .serviceId(0)
        .build());
    
    object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription_resource = fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource",
        h2qp_osu_provider="string",
        adom="string",
        lang="string",
        object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription_id="string",
        scopetype="string",
        service_description="string",
        service_id=0)
    
    const objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource = new fortimanager.ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription("objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionResource", {
        h2qpOsuProvider: "string",
        adom: "string",
        lang: "string",
        objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId: "string",
        scopetype: "string",
        serviceDescription: "string",
        serviceId: 0,
    });
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription
    properties:
        adom: string
        h2qpOsuProvider: string
        lang: string
        objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId: string
        scopetype: string
        serviceDescription: string
        serviceId: 0
    

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

    H2qpOsuProvider string
    H2Qp Osu Provider.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId string
    an identifier for the resource with format {{service_id}}.
    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.
    ServiceDescription string
    Service description.
    ServiceId double
    OSU service ID.
    H2qpOsuProvider string
    H2Qp Osu Provider.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId string
    an identifier for the resource with format {{service_id}}.
    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.
    ServiceDescription string
    Service description.
    ServiceId float64
    OSU service ID.
    h2qpOsuProvider String
    H2Qp Osu Provider.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId String
    an identifier for the resource with format {{service_id}}.
    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.
    serviceDescription String
    Service description.
    serviceId Double
    OSU service ID.
    h2qpOsuProvider string
    H2Qp Osu Provider.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang string
    Language code.
    objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId string
    an identifier for the resource with format {{service_id}}.
    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.
    serviceDescription string
    Service description.
    serviceId number
    OSU service ID.
    h2qp_osu_provider str
    H2Qp Osu Provider.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang str
    Language code.
    object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription_id str
    an identifier for the resource with format {{service_id}}.
    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.
    service_description str
    Service description.
    service_id float
    OSU service ID.
    h2qpOsuProvider String
    H2Qp Osu Provider.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId String
    an identifier for the resource with format {{service_id}}.
    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.
    serviceDescription String
    Service description.
    serviceId Number
    OSU service ID.

    Outputs

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

    Get an existing ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription 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?: ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            h2qp_osu_provider: Optional[str] = None,
            lang: Optional[str] = None,
            object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            service_description: Optional[str] = None,
            service_id: Optional[float] = None) -> ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription
    func GetObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription, error)
    public static ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription    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.
    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.
    H2qpOsuProvider string
    H2Qp Osu Provider.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId string
    an identifier for the resource with format {{service_id}}.
    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.
    ServiceDescription string
    Service description.
    ServiceId double
    OSU service ID.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    H2qpOsuProvider string
    H2Qp Osu Provider.
    Lang string
    Language code.
    ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId string
    an identifier for the resource with format {{service_id}}.
    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.
    ServiceDescription string
    Service description.
    ServiceId float64
    OSU service ID.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qpOsuProvider String
    H2Qp Osu Provider.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId String
    an identifier for the resource with format {{service_id}}.
    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.
    serviceDescription String
    Service description.
    serviceId Double
    OSU service ID.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qpOsuProvider string
    H2Qp Osu Provider.
    lang string
    Language code.
    objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId string
    an identifier for the resource with format {{service_id}}.
    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.
    serviceDescription string
    Service description.
    serviceId number
    OSU service ID.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qp_osu_provider str
    H2Qp Osu Provider.
    lang str
    Language code.
    object_wirelesscontroller_hotspot20_h2qposuprovider_servicedescription_id str
    an identifier for the resource with format {{service_id}}.
    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.
    service_description str
    Service description.
    service_id float
    OSU service ID.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    h2qpOsuProvider String
    H2Qp Osu Provider.
    lang String
    Language code.
    objectWirelesscontrollerHotspot20H2qposuproviderServicedescriptionId String
    an identifier for the resource with format {{service_id}}.
    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.
    serviceDescription String
    Service description.
    serviceId Number
    OSU service ID.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20H2qposuproviderServicedescription:ObjectWirelesscontrollerHotspot20H2qposuproviderServicedescription labelname {{service_id}}
    

    $ 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev