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

fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability

Explore with Pulumi AI

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

    Configure connection capability.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability("trname", {
        espPort: "closed",
        ftpPort: "closed",
        httpPort: "open",
        icmpPort: "closed",
        ikev2Port: "closed",
        ikev2XxPort: "closed",
        pptpVpnPort: "closed",
        sshPort: "open",
        tlsPort: "closed",
        voipTcpPort: "closed",
        voipUdpPort: "unknown",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability("trname",
        esp_port="closed",
        ftp_port="closed",
        http_port="open",
        icmp_port="closed",
        ikev2_port="closed",
        ikev2_xx_port="closed",
        pptp_vpn_port="closed",
        ssh_port="open",
        tls_port="closed",
        voip_tcp_port="closed",
        voip_udp_port="unknown")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpconncapability(ctx, "trname", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs{
    			EspPort:     pulumi.String("closed"),
    			FtpPort:     pulumi.String("closed"),
    			HttpPort:    pulumi.String("open"),
    			IcmpPort:    pulumi.String("closed"),
    			Ikev2Port:   pulumi.String("closed"),
    			Ikev2XxPort: pulumi.String("closed"),
    			PptpVpnPort: pulumi.String("closed"),
    			SshPort:     pulumi.String("open"),
    			TlsPort:     pulumi.String("closed"),
    			VoipTcpPort: pulumi.String("closed"),
    			VoipUdpPort: pulumi.String("unknown"),
    		})
    		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 trname = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability("trname", new()
        {
            EspPort = "closed",
            FtpPort = "closed",
            HttpPort = "open",
            IcmpPort = "closed",
            Ikev2Port = "closed",
            Ikev2XxPort = "closed",
            PptpVpnPort = "closed",
            SshPort = "open",
            TlsPort = "closed",
            VoipTcpPort = "closed",
            VoipUdpPort = "unknown",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new ObjectWirelesscontrollerHotspot20H2qpconncapability("trname", ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs.builder()
                .espPort("closed")
                .ftpPort("closed")
                .httpPort("open")
                .icmpPort("closed")
                .ikev2Port("closed")
                .ikev2XxPort("closed")
                .pptpVpnPort("closed")
                .sshPort("open")
                .tlsPort("closed")
                .voipTcpPort("closed")
                .voipUdpPort("unknown")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpconncapability
        properties:
          espPort: closed
          ftpPort: closed
          httpPort: open
          icmpPort: closed
          ikev2Port: closed
          ikev2XxPort: closed
          pptpVpnPort: closed
          sshPort: open
          tlsPort: closed
          voipTcpPort: closed
          voipUdpPort: unknown
    

    Create ObjectWirelesscontrollerHotspot20H2qpconncapability Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerHotspot20H2qpconncapability(name: string, args?: ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerHotspot20H2qpconncapability(resource_name: str,
                                                            args: Optional[ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs] = None,
                                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerHotspot20H2qpconncapability(resource_name: str,
                                                            opts: Optional[ResourceOptions] = None,
                                                            adom: Optional[str] = None,
                                                            esp_port: Optional[str] = None,
                                                            ftp_port: Optional[str] = None,
                                                            http_port: Optional[str] = None,
                                                            icmp_port: Optional[str] = None,
                                                            ikev2_port: Optional[str] = None,
                                                            ikev2_xx_port: Optional[str] = None,
                                                            name: Optional[str] = None,
                                                            object_wirelesscontroller_hotspot20_h2qpconncapability_id: Optional[str] = None,
                                                            pptp_vpn_port: Optional[str] = None,
                                                            scopetype: Optional[str] = None,
                                                            ssh_port: Optional[str] = None,
                                                            tls_port: Optional[str] = None,
                                                            voip_tcp_port: Optional[str] = None,
                                                            voip_udp_port: Optional[str] = None)
    func NewObjectWirelesscontrollerHotspot20H2qpconncapability(ctx *Context, name string, args *ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpconncapability, error)
    public ObjectWirelesscontrollerHotspot20H2qpconncapability(string name, ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerHotspot20H2qpconncapability(String name, ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs args)
    public ObjectWirelesscontrollerHotspot20H2qpconncapability(String name, ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpconncapability
    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 ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs
    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 ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs
    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 ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs
    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 objectWirelesscontrollerHotspot20H2qpconncapabilityResource = new Fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability("objectWirelesscontrollerHotspot20H2qpconncapabilityResource", new()
    {
        Adom = "string",
        EspPort = "string",
        FtpPort = "string",
        HttpPort = "string",
        IcmpPort = "string",
        Ikev2Port = "string",
        Ikev2XxPort = "string",
        Name = "string",
        ObjectWirelesscontrollerHotspot20H2qpconncapabilityId = "string",
        PptpVpnPort = "string",
        Scopetype = "string",
        SshPort = "string",
        TlsPort = "string",
        VoipTcpPort = "string",
        VoipUdpPort = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerHotspot20H2qpconncapability(ctx, "objectWirelesscontrollerHotspot20H2qpconncapabilityResource", &fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs{
    Adom: pulumi.String("string"),
    EspPort: pulumi.String("string"),
    FtpPort: pulumi.String("string"),
    HttpPort: pulumi.String("string"),
    IcmpPort: pulumi.String("string"),
    Ikev2Port: pulumi.String("string"),
    Ikev2XxPort: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectWirelesscontrollerHotspot20H2qpconncapabilityId: pulumi.String("string"),
    PptpVpnPort: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SshPort: pulumi.String("string"),
    TlsPort: pulumi.String("string"),
    VoipTcpPort: pulumi.String("string"),
    VoipUdpPort: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerHotspot20H2qpconncapabilityResource = new ObjectWirelesscontrollerHotspot20H2qpconncapability("objectWirelesscontrollerHotspot20H2qpconncapabilityResource", ObjectWirelesscontrollerHotspot20H2qpconncapabilityArgs.builder()
        .adom("string")
        .espPort("string")
        .ftpPort("string")
        .httpPort("string")
        .icmpPort("string")
        .ikev2Port("string")
        .ikev2XxPort("string")
        .name("string")
        .objectWirelesscontrollerHotspot20H2qpconncapabilityId("string")
        .pptpVpnPort("string")
        .scopetype("string")
        .sshPort("string")
        .tlsPort("string")
        .voipTcpPort("string")
        .voipUdpPort("string")
        .build());
    
    object_wirelesscontroller_hotspot20_h2qpconncapability_resource = fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability("objectWirelesscontrollerHotspot20H2qpconncapabilityResource",
        adom="string",
        esp_port="string",
        ftp_port="string",
        http_port="string",
        icmp_port="string",
        ikev2_port="string",
        ikev2_xx_port="string",
        name="string",
        object_wirelesscontroller_hotspot20_h2qpconncapability_id="string",
        pptp_vpn_port="string",
        scopetype="string",
        ssh_port="string",
        tls_port="string",
        voip_tcp_port="string",
        voip_udp_port="string")
    
    const objectWirelesscontrollerHotspot20H2qpconncapabilityResource = new fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability("objectWirelesscontrollerHotspot20H2qpconncapabilityResource", {
        adom: "string",
        espPort: "string",
        ftpPort: "string",
        httpPort: "string",
        icmpPort: "string",
        ikev2Port: "string",
        ikev2XxPort: "string",
        name: "string",
        objectWirelesscontrollerHotspot20H2qpconncapabilityId: "string",
        pptpVpnPort: "string",
        scopetype: "string",
        sshPort: "string",
        tlsPort: "string",
        voipTcpPort: "string",
        voipUdpPort: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpconncapability
    properties:
        adom: string
        espPort: string
        ftpPort: string
        httpPort: string
        icmpPort: string
        ikev2Port: string
        ikev2XxPort: string
        name: string
        objectWirelesscontrollerHotspot20H2qpconncapabilityId: string
        pptpVpnPort: string
        scopetype: string
        sshPort: string
        tlsPort: string
        voipTcpPort: string
        voipUdpPort: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EspPort string
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    FtpPort string
    Set FTP port service status. Valid values: closed, open, unknown.
    HttpPort string
    Set HTTP port service status. Valid values: closed, open, unknown.
    IcmpPort string
    Set ICMP port service status. Valid values: closed, open, unknown.
    Ikev2Port string
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    Ikev2XxPort string
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    Name string
    Connection capability name.
    ObjectWirelesscontrollerHotspot20H2qpconncapabilityId string
    an identifier for the resource with format {{name}}.
    PptpVpnPort string
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    SshPort string
    Set SSH port service status. Valid values: closed, open, unknown.
    TlsPort string
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    VoipTcpPort string
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    VoipUdpPort string
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EspPort string
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    FtpPort string
    Set FTP port service status. Valid values: closed, open, unknown.
    HttpPort string
    Set HTTP port service status. Valid values: closed, open, unknown.
    IcmpPort string
    Set ICMP port service status. Valid values: closed, open, unknown.
    Ikev2Port string
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    Ikev2XxPort string
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    Name string
    Connection capability name.
    ObjectWirelesscontrollerHotspot20H2qpconncapabilityId string
    an identifier for the resource with format {{name}}.
    PptpVpnPort string
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    SshPort string
    Set SSH port service status. Valid values: closed, open, unknown.
    TlsPort string
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    VoipTcpPort string
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    VoipUdpPort string
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    espPort String
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftpPort String
    Set FTP port service status. Valid values: closed, open, unknown.
    httpPort String
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmpPort String
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2Port String
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2XxPort String
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name String
    Connection capability name.
    objectWirelesscontrollerHotspot20H2qpconncapabilityId String
    an identifier for the resource with format {{name}}.
    pptpVpnPort String
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    sshPort String
    Set SSH port service status. Valid values: closed, open, unknown.
    tlsPort String
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voipTcpPort String
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voipUdpPort String
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    espPort string
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftpPort string
    Set FTP port service status. Valid values: closed, open, unknown.
    httpPort string
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmpPort string
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2Port string
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2XxPort string
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name string
    Connection capability name.
    objectWirelesscontrollerHotspot20H2qpconncapabilityId string
    an identifier for the resource with format {{name}}.
    pptpVpnPort string
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    sshPort string
    Set SSH port service status. Valid values: closed, open, unknown.
    tlsPort string
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voipTcpPort string
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voipUdpPort string
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    esp_port str
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftp_port str
    Set FTP port service status. Valid values: closed, open, unknown.
    http_port str
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmp_port str
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2_port str
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2_xx_port str
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name str
    Connection capability name.
    object_wirelesscontroller_hotspot20_h2qpconncapability_id str
    an identifier for the resource with format {{name}}.
    pptp_vpn_port str
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    ssh_port str
    Set SSH port service status. Valid values: closed, open, unknown.
    tls_port str
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voip_tcp_port str
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voip_udp_port str
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    espPort String
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftpPort String
    Set FTP port service status. Valid values: closed, open, unknown.
    httpPort String
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmpPort String
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2Port String
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2XxPort String
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name String
    Connection capability name.
    objectWirelesscontrollerHotspot20H2qpconncapabilityId String
    an identifier for the resource with format {{name}}.
    pptpVpnPort String
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    sshPort String
    Set SSH port service status. Valid values: closed, open, unknown.
    tlsPort String
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voipTcpPort String
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voipUdpPort String
    Set VoIP UDP port service status. Valid values: closed, open, unknown.

    Outputs

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

    Get an existing ObjectWirelesscontrollerHotspot20H2qpconncapability 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?: ObjectWirelesscontrollerHotspot20H2qpconncapabilityState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20H2qpconncapability
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            esp_port: Optional[str] = None,
            ftp_port: Optional[str] = None,
            http_port: Optional[str] = None,
            icmp_port: Optional[str] = None,
            ikev2_port: Optional[str] = None,
            ikev2_xx_port: Optional[str] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_hotspot20_h2qpconncapability_id: Optional[str] = None,
            pptp_vpn_port: Optional[str] = None,
            scopetype: Optional[str] = None,
            ssh_port: Optional[str] = None,
            tls_port: Optional[str] = None,
            voip_tcp_port: Optional[str] = None,
            voip_udp_port: Optional[str] = None) -> ObjectWirelesscontrollerHotspot20H2qpconncapability
    func GetObjectWirelesscontrollerHotspot20H2qpconncapability(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20H2qpconncapabilityState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20H2qpconncapability, error)
    public static ObjectWirelesscontrollerHotspot20H2qpconncapability Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20H2qpconncapabilityState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerHotspot20H2qpconncapability get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20H2qpconncapabilityState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerHotspot20H2qpconncapability    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.
    EspPort string
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    FtpPort string
    Set FTP port service status. Valid values: closed, open, unknown.
    HttpPort string
    Set HTTP port service status. Valid values: closed, open, unknown.
    IcmpPort string
    Set ICMP port service status. Valid values: closed, open, unknown.
    Ikev2Port string
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    Ikev2XxPort string
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    Name string
    Connection capability name.
    ObjectWirelesscontrollerHotspot20H2qpconncapabilityId string
    an identifier for the resource with format {{name}}.
    PptpVpnPort string
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    SshPort string
    Set SSH port service status. Valid values: closed, open, unknown.
    TlsPort string
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    VoipTcpPort string
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    VoipUdpPort string
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EspPort string
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    FtpPort string
    Set FTP port service status. Valid values: closed, open, unknown.
    HttpPort string
    Set HTTP port service status. Valid values: closed, open, unknown.
    IcmpPort string
    Set ICMP port service status. Valid values: closed, open, unknown.
    Ikev2Port string
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    Ikev2XxPort string
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    Name string
    Connection capability name.
    ObjectWirelesscontrollerHotspot20H2qpconncapabilityId string
    an identifier for the resource with format {{name}}.
    PptpVpnPort string
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    SshPort string
    Set SSH port service status. Valid values: closed, open, unknown.
    TlsPort string
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    VoipTcpPort string
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    VoipUdpPort string
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    espPort String
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftpPort String
    Set FTP port service status. Valid values: closed, open, unknown.
    httpPort String
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmpPort String
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2Port String
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2XxPort String
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name String
    Connection capability name.
    objectWirelesscontrollerHotspot20H2qpconncapabilityId String
    an identifier for the resource with format {{name}}.
    pptpVpnPort String
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    sshPort String
    Set SSH port service status. Valid values: closed, open, unknown.
    tlsPort String
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voipTcpPort String
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voipUdpPort String
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    espPort string
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftpPort string
    Set FTP port service status. Valid values: closed, open, unknown.
    httpPort string
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmpPort string
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2Port string
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2XxPort string
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name string
    Connection capability name.
    objectWirelesscontrollerHotspot20H2qpconncapabilityId string
    an identifier for the resource with format {{name}}.
    pptpVpnPort string
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    sshPort string
    Set SSH port service status. Valid values: closed, open, unknown.
    tlsPort string
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voipTcpPort string
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voipUdpPort string
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    esp_port str
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftp_port str
    Set FTP port service status. Valid values: closed, open, unknown.
    http_port str
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmp_port str
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2_port str
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2_xx_port str
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name str
    Connection capability name.
    object_wirelesscontroller_hotspot20_h2qpconncapability_id str
    an identifier for the resource with format {{name}}.
    pptp_vpn_port str
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    ssh_port str
    Set SSH port service status. Valid values: closed, open, unknown.
    tls_port str
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voip_tcp_port str
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voip_udp_port str
    Set VoIP UDP port service status. Valid values: closed, open, unknown.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    espPort String
    Set ESP port service (used by IPsec VPNs) status. Valid values: closed, open, unknown.
    ftpPort String
    Set FTP port service status. Valid values: closed, open, unknown.
    httpPort String
    Set HTTP port service status. Valid values: closed, open, unknown.
    icmpPort String
    Set ICMP port service status. Valid values: closed, open, unknown.
    ikev2Port String
    Set IKEv2 port service for IPsec VPN status. Valid values: closed, open, unknown.
    ikev2XxPort String
    Set UDP port 4500 (which may be used by IKEv2 for IPsec VPN) service status. Valid values: closed, open, unknown.
    name String
    Connection capability name.
    objectWirelesscontrollerHotspot20H2qpconncapabilityId String
    an identifier for the resource with format {{name}}.
    pptpVpnPort String
    Set Point to Point Tunneling Protocol (PPTP) VPN port service status. Valid values: closed, open, unknown.
    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.
    sshPort String
    Set SSH port service status. Valid values: closed, open, unknown.
    tlsPort String
    Set TLS VPN (HTTPS) port service status. Valid values: closed, open, unknown.
    voipTcpPort String
    Set VoIP TCP port service status. Valid values: closed, open, unknown.
    voipUdpPort String
    Set VoIP UDP port service status. Valid values: closed, open, unknown.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20H2qpconncapability:ObjectWirelesscontrollerHotspot20H2qpconncapability 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev