fortimanager.ObjectWirelesscontrollerHotspot20H2qpconncapability
Explore with Pulumi AI
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
isadom
, otherwise the value of adom in the provider will be inherited. - Esp
Port string - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - Ftp
Port string - Set FTP port service status. Valid values:
closed
,open
,unknown
. - Http
Port string - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - Icmp
Port 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
. - Ikev2Xx
Port 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.
- Object
Wirelesscontroller stringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- Pptp
Vpn stringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Port string - Set SSH port service status. Valid values:
closed
,open
,unknown
. - Tls
Port string - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - Voip
Tcp stringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - Voip
Udp stringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Esp
Port string - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - Ftp
Port string - Set FTP port service status. Valid values:
closed
,open
,unknown
. - Http
Port string - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - Icmp
Port 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
. - Ikev2Xx
Port 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.
- Object
Wirelesscontroller stringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- Pptp
Vpn stringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Port string - Set SSH port service status. Valid values:
closed
,open
,unknown
. - Tls
Port string - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - Voip
Tcp stringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - Voip
Udp stringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - esp
Port String - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - ftp
Port String - Set FTP port service status. Valid values:
closed
,open
,unknown
. - http
Port String - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - icmp
Port 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
. - ikev2Xx
Port 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.
- object
Wirelesscontroller StringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- pptp
Vpn StringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Port String - Set SSH port service status. Valid values:
closed
,open
,unknown
. - tls
Port String - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - voip
Tcp StringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip
Udp StringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - esp
Port string - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - ftp
Port string - Set FTP port service status. Valid values:
closed
,open
,unknown
. - http
Port string - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - icmp
Port 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
. - ikev2Xx
Port 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.
- object
Wirelesscontroller stringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- pptp
Vpn stringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Port string - Set SSH port service status. Valid values:
closed
,open
,unknown
. - tls
Port string - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - voip
Tcp stringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip
Udp stringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ strport - 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_ strhotspot20_ h2qpconncapability_ id - an identifier for the resource with format {{name}}.
- pptp_
vpn_ strport - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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_ strport - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip_
udp_ strport - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - esp
Port String - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - ftp
Port String - Set FTP port service status. Valid values:
closed
,open
,unknown
. - http
Port String - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - icmp
Port 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
. - ikev2Xx
Port 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.
- object
Wirelesscontroller StringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- pptp
Vpn StringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Port String - Set SSH port service status. Valid values:
closed
,open
,unknown
. - tls
Port String - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - voip
Tcp StringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip
Udp StringPort - 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Esp
Port string - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - Ftp
Port string - Set FTP port service status. Valid values:
closed
,open
,unknown
. - Http
Port string - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - Icmp
Port 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
. - Ikev2Xx
Port 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.
- Object
Wirelesscontroller stringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- Pptp
Vpn stringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Port string - Set SSH port service status. Valid values:
closed
,open
,unknown
. - Tls
Port string - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - Voip
Tcp stringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - Voip
Udp stringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Esp
Port string - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - Ftp
Port string - Set FTP port service status. Valid values:
closed
,open
,unknown
. - Http
Port string - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - Icmp
Port 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
. - Ikev2Xx
Port 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.
- Object
Wirelesscontroller stringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- Pptp
Vpn stringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Port string - Set SSH port service status. Valid values:
closed
,open
,unknown
. - Tls
Port string - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - Voip
Tcp stringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - Voip
Udp stringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - esp
Port String - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - ftp
Port String - Set FTP port service status. Valid values:
closed
,open
,unknown
. - http
Port String - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - icmp
Port 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
. - ikev2Xx
Port 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.
- object
Wirelesscontroller StringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- pptp
Vpn StringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Port String - Set SSH port service status. Valid values:
closed
,open
,unknown
. - tls
Port String - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - voip
Tcp StringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip
Udp StringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - esp
Port string - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - ftp
Port string - Set FTP port service status. Valid values:
closed
,open
,unknown
. - http
Port string - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - icmp
Port 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
. - ikev2Xx
Port 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.
- object
Wirelesscontroller stringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- pptp
Vpn stringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Port string - Set SSH port service status. Valid values:
closed
,open
,unknown
. - tls
Port string - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - voip
Tcp stringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip
Udp stringPort - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ strport - 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_ strhotspot20_ h2qpconncapability_ id - an identifier for the resource with format {{name}}.
- pptp_
vpn_ strport - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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_ strport - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip_
udp_ strport - Set VoIP UDP port service status. Valid values:
closed
,open
,unknown
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - esp
Port String - Set ESP port service (used by IPsec VPNs) status. Valid values:
closed
,open
,unknown
. - ftp
Port String - Set FTP port service status. Valid values:
closed
,open
,unknown
. - http
Port String - Set HTTP port service status. Valid values:
closed
,open
,unknown
. - icmp
Port 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
. - ikev2Xx
Port 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.
- object
Wirelesscontroller StringHotspot20H2qpconncapability Id - an identifier for the resource with format {{name}}.
- pptp
Vpn StringPort - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Port String - Set SSH port service status. Valid values:
closed
,open
,unknown
. - tls
Port String - Set TLS VPN (HTTPS) port service status. Valid values:
closed
,open
,unknown
. - voip
Tcp StringPort - Set VoIP TCP port service status. Valid values:
closed
,open
,unknown
. - voip
Udp StringPort - 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.