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

fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers

Explore with Pulumi AI

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

    Select the real servers that this Access Proxy will distribute traffic to.

    This resource is a sub resource for variable realservers of resource fortimanager.ObjectFirewallAccessproxy6Apigateway6. 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 trname4 = new fortimanager.ObjectFirewallAccessproxy6("trname4", {});
    const trname3 = new fortimanager.ObjectFirewallAccessproxy6Apigateway6("trname3", {
        fosid: 2,
        accessProxy6: trname4.name,
    }, {
        dependsOn: [trname4],
    });
    const trname = new fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("trname", {
        accessProxy6: trname4.name,
        apiGateway6: trname3.fosid,
        fosid: 1,
        ip: "2001:db8:85a3::8a2e:370:7334",
        mappedport: "23",
    }, {
        dependsOn: [trname3],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname4 = fortimanager.ObjectFirewallAccessproxy6("trname4")
    trname3 = fortimanager.ObjectFirewallAccessproxy6Apigateway6("trname3",
        fosid=2,
        access_proxy6=trname4.name,
        opts = pulumi.ResourceOptions(depends_on=[trname4]))
    trname = fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("trname",
        access_proxy6=trname4.name,
        api_gateway6=trname3.fosid,
        fosid=1,
        ip="2001:db8:85a3::8a2e:370:7334",
        mappedport="23",
        opts = pulumi.ResourceOptions(depends_on=[trname3]))
    
    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 {
    		trname4, err := fortimanager.NewObjectFirewallAccessproxy6(ctx, "trname4", nil)
    		if err != nil {
    			return err
    		}
    		trname3, err := fortimanager.NewObjectFirewallAccessproxy6Apigateway6(ctx, "trname3", &fortimanager.ObjectFirewallAccessproxy6Apigateway6Args{
    			Fosid:        pulumi.Float64(2),
    			AccessProxy6: trname4.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname4,
    		}))
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallAccessproxy6Apigateway6Realservers(ctx, "trname", &fortimanager.ObjectFirewallAccessproxy6Apigateway6RealserversArgs{
    			AccessProxy6: trname4.Name,
    			ApiGateway6:  trname3.Fosid,
    			Fosid:        pulumi.Float64(1),
    			Ip:           pulumi.String("2001:db8:85a3::8a2e:370:7334"),
    			Mappedport:   pulumi.String("23"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname3,
    		}))
    		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 trname4 = new Fortimanager.ObjectFirewallAccessproxy6("trname4");
    
        var trname3 = new Fortimanager.ObjectFirewallAccessproxy6Apigateway6("trname3", new()
        {
            Fosid = 2,
            AccessProxy6 = trname4.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname4,
            },
        });
    
        var trname = new Fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("trname", new()
        {
            AccessProxy6 = trname4.Name,
            ApiGateway6 = trname3.Fosid,
            Fosid = 1,
            Ip = "2001:db8:85a3::8a2e:370:7334",
            Mappedport = "23",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname3,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy6;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6Args;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6RealserversArgs;
    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 trname4 = new ObjectFirewallAccessproxy6("trname4");
    
            var trname3 = new ObjectFirewallAccessproxy6Apigateway6("trname3", ObjectFirewallAccessproxy6Apigateway6Args.builder()
                .fosid(2)
                .accessProxy6(trname4.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname4)
                    .build());
    
            var trname = new ObjectFirewallAccessproxy6Apigateway6Realservers("trname", ObjectFirewallAccessproxy6Apigateway6RealserversArgs.builder()
                .accessProxy6(trname4.name())
                .apiGateway6(trname3.fosid())
                .fosid(1)
                .ip("2001:db8:85a3::8a2e:370:7334")
                .mappedport(23)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname3)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers
        properties:
          accessProxy6: ${trname4.name}
          apiGateway6: ${trname3.fosid}
          fosid: 1
          ip: 2001:db8:85a3::8a2e:370:7334
          mappedport: 23
        options:
          dependsOn:
            - ${trname3}
      trname3:
        type: fortimanager:ObjectFirewallAccessproxy6Apigateway6
        properties:
          fosid: 2
          accessProxy6: ${trname4.name}
        options:
          dependsOn:
            - ${trname4}
      trname4:
        type: fortimanager:ObjectFirewallAccessproxy6
    

    Create ObjectFirewallAccessproxy6Apigateway6Realservers Resource

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

    Constructor syntax

    new ObjectFirewallAccessproxy6Apigateway6Realservers(name: string, args: ObjectFirewallAccessproxy6Apigateway6RealserversArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAccessproxy6Apigateway6Realservers(resource_name: str,
                                                         args: ObjectFirewallAccessproxy6Apigateway6RealserversArgs,
                                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAccessproxy6Apigateway6Realservers(resource_name: str,
                                                         opts: Optional[ResourceOptions] = None,
                                                         api_gateway6: Optional[str] = None,
                                                         access_proxy6: Optional[str] = None,
                                                         ip: Optional[str] = None,
                                                         weight: Optional[float] = None,
                                                         addr_type: Optional[str] = None,
                                                         domain: Optional[str] = None,
                                                         external_auth: Optional[str] = None,
                                                         fosid: Optional[float] = None,
                                                         health_check: Optional[str] = None,
                                                         health_check_proto: Optional[str] = None,
                                                         holddown_interval: Optional[str] = None,
                                                         object_firewall_accessproxy6_apigateway6_realservers_id: Optional[str] = None,
                                                         address: Optional[str] = None,
                                                         adom: Optional[str] = None,
                                                         http_host: Optional[str] = None,
                                                         port: Optional[float] = None,
                                                         scopetype: Optional[str] = None,
                                                         ssh_client_cert: Optional[str] = None,
                                                         ssh_host_key_validation: Optional[str] = None,
                                                         ssh_host_keys: Optional[Sequence[str]] = None,
                                                         status: Optional[str] = None,
                                                         translate_host: Optional[str] = None,
                                                         tunnel_encryption: Optional[str] = None,
                                                         type: Optional[str] = None,
                                                         mappedport: Optional[str] = None)
    func NewObjectFirewallAccessproxy6Apigateway6Realservers(ctx *Context, name string, args ObjectFirewallAccessproxy6Apigateway6RealserversArgs, opts ...ResourceOption) (*ObjectFirewallAccessproxy6Apigateway6Realservers, error)
    public ObjectFirewallAccessproxy6Apigateway6Realservers(string name, ObjectFirewallAccessproxy6Apigateway6RealserversArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallAccessproxy6Apigateway6Realservers(String name, ObjectFirewallAccessproxy6Apigateway6RealserversArgs args)
    public ObjectFirewallAccessproxy6Apigateway6Realservers(String name, ObjectFirewallAccessproxy6Apigateway6RealserversArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers
    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 ObjectFirewallAccessproxy6Apigateway6RealserversArgs
    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 ObjectFirewallAccessproxy6Apigateway6RealserversArgs
    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 ObjectFirewallAccessproxy6Apigateway6RealserversArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAccessproxy6Apigateway6RealserversArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAccessproxy6Apigateway6RealserversArgs
    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 objectFirewallAccessproxy6Apigateway6RealserversResource = new Fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource", new()
    {
        ApiGateway6 = "string",
        AccessProxy6 = "string",
        Ip = "string",
        Weight = 0,
        AddrType = "string",
        Domain = "string",
        ExternalAuth = "string",
        Fosid = 0,
        HealthCheck = "string",
        HealthCheckProto = "string",
        HolddownInterval = "string",
        ObjectFirewallAccessproxy6Apigateway6RealserversId = "string",
        Address = "string",
        Adom = "string",
        HttpHost = "string",
        Port = 0,
        Scopetype = "string",
        SshClientCert = "string",
        SshHostKeyValidation = "string",
        SshHostKeys = new[]
        {
            "string",
        },
        Status = "string",
        TranslateHost = "string",
        TunnelEncryption = "string",
        Type = "string",
        Mappedport = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallAccessproxy6Apigateway6Realservers(ctx, "objectFirewallAccessproxy6Apigateway6RealserversResource", &fortimanager.ObjectFirewallAccessproxy6Apigateway6RealserversArgs{
    ApiGateway6: pulumi.String("string"),
    AccessProxy6: pulumi.String("string"),
    Ip: pulumi.String("string"),
    Weight: pulumi.Float64(0),
    AddrType: pulumi.String("string"),
    Domain: pulumi.String("string"),
    ExternalAuth: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    HealthCheck: pulumi.String("string"),
    HealthCheckProto: pulumi.String("string"),
    HolddownInterval: pulumi.String("string"),
    ObjectFirewallAccessproxy6Apigateway6RealserversId: pulumi.String("string"),
    Address: pulumi.String("string"),
    Adom: pulumi.String("string"),
    HttpHost: pulumi.String("string"),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    SshClientCert: pulumi.String("string"),
    SshHostKeyValidation: pulumi.String("string"),
    SshHostKeys: pulumi.StringArray{
    pulumi.String("string"),
    },
    Status: pulumi.String("string"),
    TranslateHost: pulumi.String("string"),
    TunnelEncryption: pulumi.String("string"),
    Type: pulumi.String("string"),
    Mappedport: pulumi.String("string"),
    })
    
    var objectFirewallAccessproxy6Apigateway6RealserversResource = new ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource", ObjectFirewallAccessproxy6Apigateway6RealserversArgs.builder()
        .apiGateway6("string")
        .accessProxy6("string")
        .ip("string")
        .weight(0)
        .addrType("string")
        .domain("string")
        .externalAuth("string")
        .fosid(0)
        .healthCheck("string")
        .healthCheckProto("string")
        .holddownInterval("string")
        .objectFirewallAccessproxy6Apigateway6RealserversId("string")
        .address("string")
        .adom("string")
        .httpHost("string")
        .port(0)
        .scopetype("string")
        .sshClientCert("string")
        .sshHostKeyValidation("string")
        .sshHostKeys("string")
        .status("string")
        .translateHost("string")
        .tunnelEncryption("string")
        .type("string")
        .mappedport("string")
        .build());
    
    object_firewall_accessproxy6_apigateway6_realservers_resource = fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource",
        api_gateway6="string",
        access_proxy6="string",
        ip="string",
        weight=0,
        addr_type="string",
        domain="string",
        external_auth="string",
        fosid=0,
        health_check="string",
        health_check_proto="string",
        holddown_interval="string",
        object_firewall_accessproxy6_apigateway6_realservers_id="string",
        address="string",
        adom="string",
        http_host="string",
        port=0,
        scopetype="string",
        ssh_client_cert="string",
        ssh_host_key_validation="string",
        ssh_host_keys=["string"],
        status="string",
        translate_host="string",
        tunnel_encryption="string",
        type="string",
        mappedport="string")
    
    const objectFirewallAccessproxy6Apigateway6RealserversResource = new fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource", {
        apiGateway6: "string",
        accessProxy6: "string",
        ip: "string",
        weight: 0,
        addrType: "string",
        domain: "string",
        externalAuth: "string",
        fosid: 0,
        healthCheck: "string",
        healthCheckProto: "string",
        holddownInterval: "string",
        objectFirewallAccessproxy6Apigateway6RealserversId: "string",
        address: "string",
        adom: "string",
        httpHost: "string",
        port: 0,
        scopetype: "string",
        sshClientCert: "string",
        sshHostKeyValidation: "string",
        sshHostKeys: ["string"],
        status: "string",
        translateHost: "string",
        tunnelEncryption: "string",
        type: "string",
        mappedport: "string",
    });
    
    type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers
    properties:
        accessProxy6: string
        addrType: string
        address: string
        adom: string
        apiGateway6: string
        domain: string
        externalAuth: string
        fosid: 0
        healthCheck: string
        healthCheckProto: string
        holddownInterval: string
        httpHost: string
        ip: string
        mappedport: string
        objectFirewallAccessproxy6Apigateway6RealserversId: string
        port: 0
        scopetype: string
        sshClientCert: string
        sshHostKeyValidation: string
        sshHostKeys:
            - string
        status: string
        translateHost: string
        tunnelEncryption: string
        type: string
        weight: 0
    

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

    AccessProxy6 string
    Access Proxy6.
    ApiGateway6 string
    Api Gateway6.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid double
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxy6Apigateway6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server.
    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.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    SshHostKeys List<string>
    One or more server host key.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    AccessProxy6 string
    Access Proxy6.
    ApiGateway6 string
    Api Gateway6.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid float64
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxy6Apigateway6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server.
    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.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    SshHostKeys []string
    One or more server host key.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy6 String
    Access Proxy6.
    apiGateway6 String
    Api Gateway6.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Double
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxy6Apigateway6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server.
    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.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    sshHostKeys List<String>
    One or more server host key.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy6 string
    Access Proxy6.
    apiGateway6 string
    Api Gateway6.
    addrType string
    Type of address. Valid values: fqdn, ip.
    address string
    Address or address group of the real server.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain string
    Wildcard domain name of the real server.
    externalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid number
    Real server ID.
    healthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost string
    HTTP server domain name in HTTP header.
    ip string
    IPv6 address of the real server.
    mappedport string
    Port for communicating with the real server.
    objectFirewallAccessproxy6Apigateway6RealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server.
    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.
    sshClientCert string
    Set access-proxy SSH client certificate profile.
    sshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    sshHostKeys string[]
    One or more server host key.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    access_proxy6 str
    Access Proxy6.
    api_gateway6 str
    Api Gateway6.
    addr_type str
    Type of address. Valid values: fqdn, ip.
    address str
    Address or address group of the real server.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain str
    Wildcard domain name of the real server.
    external_auth str
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid float
    Real server ID.
    health_check str
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    health_check_proto str
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddown_interval str
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    http_host str
    HTTP server domain name in HTTP header.
    ip str
    IPv6 address of the real server.
    mappedport str
    Port for communicating with the real server.
    object_firewall_accessproxy6_apigateway6_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server.
    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_client_cert str
    Set access-proxy SSH client certificate profile.
    ssh_host_key_validation str
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    ssh_host_keys Sequence[str]
    One or more server host key.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translate_host str
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnel_encryption str
    Tunnel encryption. Valid values: disable, enable.
    type str
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy6 String
    Access Proxy6.
    apiGateway6 String
    Api Gateway6.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Number
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxy6Apigateway6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server.
    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.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    sshHostKeys List<String>
    One or more server host key.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Outputs

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

    Get an existing ObjectFirewallAccessproxy6Apigateway6Realservers 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?: ObjectFirewallAccessproxy6Apigateway6RealserversState, opts?: CustomResourceOptions): ObjectFirewallAccessproxy6Apigateway6Realservers
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_proxy6: Optional[str] = None,
            addr_type: Optional[str] = None,
            address: Optional[str] = None,
            adom: Optional[str] = None,
            api_gateway6: Optional[str] = None,
            domain: Optional[str] = None,
            external_auth: Optional[str] = None,
            fosid: Optional[float] = None,
            health_check: Optional[str] = None,
            health_check_proto: Optional[str] = None,
            holddown_interval: Optional[str] = None,
            http_host: Optional[str] = None,
            ip: Optional[str] = None,
            mappedport: Optional[str] = None,
            object_firewall_accessproxy6_apigateway6_realservers_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            ssh_client_cert: Optional[str] = None,
            ssh_host_key_validation: Optional[str] = None,
            ssh_host_keys: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            translate_host: Optional[str] = None,
            tunnel_encryption: Optional[str] = None,
            type: Optional[str] = None,
            weight: Optional[float] = None) -> ObjectFirewallAccessproxy6Apigateway6Realservers
    func GetObjectFirewallAccessproxy6Apigateway6Realservers(ctx *Context, name string, id IDInput, state *ObjectFirewallAccessproxy6Apigateway6RealserversState, opts ...ResourceOption) (*ObjectFirewallAccessproxy6Apigateway6Realservers, error)
    public static ObjectFirewallAccessproxy6Apigateway6Realservers Get(string name, Input<string> id, ObjectFirewallAccessproxy6Apigateway6RealserversState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAccessproxy6Apigateway6Realservers get(String name, Output<String> id, ObjectFirewallAccessproxy6Apigateway6RealserversState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers    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:
    AccessProxy6 string
    Access Proxy6.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApiGateway6 string
    Api Gateway6.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid double
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxy6Apigateway6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server.
    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.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    SshHostKeys List<string>
    One or more server host key.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    AccessProxy6 string
    Access Proxy6.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApiGateway6 string
    Api Gateway6.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid float64
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxy6Apigateway6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server.
    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.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    SshHostKeys []string
    One or more server host key.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy6 String
    Access Proxy6.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apiGateway6 String
    Api Gateway6.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Double
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxy6Apigateway6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server.
    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.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    sshHostKeys List<String>
    One or more server host key.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy6 string
    Access Proxy6.
    addrType string
    Type of address. Valid values: fqdn, ip.
    address string
    Address or address group of the real server.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apiGateway6 string
    Api Gateway6.
    domain string
    Wildcard domain name of the real server.
    externalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid number
    Real server ID.
    healthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost string
    HTTP server domain name in HTTP header.
    ip string
    IPv6 address of the real server.
    mappedport string
    Port for communicating with the real server.
    objectFirewallAccessproxy6Apigateway6RealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server.
    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.
    sshClientCert string
    Set access-proxy SSH client certificate profile.
    sshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    sshHostKeys string[]
    One or more server host key.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    access_proxy6 str
    Access Proxy6.
    addr_type str
    Type of address. Valid values: fqdn, ip.
    address str
    Address or address group of the real server.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    api_gateway6 str
    Api Gateway6.
    domain str
    Wildcard domain name of the real server.
    external_auth str
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid float
    Real server ID.
    health_check str
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    health_check_proto str
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddown_interval str
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    http_host str
    HTTP server domain name in HTTP header.
    ip str
    IPv6 address of the real server.
    mappedport str
    Port for communicating with the real server.
    object_firewall_accessproxy6_apigateway6_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server.
    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_client_cert str
    Set access-proxy SSH client certificate profile.
    ssh_host_key_validation str
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    ssh_host_keys Sequence[str]
    One or more server host key.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translate_host str
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnel_encryption str
    Tunnel encryption. Valid values: disable, enable.
    type str
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy6 String
    Access Proxy6.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apiGateway6 String
    Api Gateway6.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Number
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxy6Apigateway6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server.
    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.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    sshHostKeys List<String>
    One or more server host key.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Import

    ObjectFirewall AccessProxy6ApiGateway6Realservers can be imported using any of these accepted formats:

    Set import_options = [“access_proxy6=YOUR_VALUE”, “api_gateway6=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAccessproxy6Apigateway6Realservers:ObjectFirewallAccessproxy6Apigateway6Realservers labelname {{fosid}}
    

    $ 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