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

fortimanager.ObjectIcapServer

Explore with Pulumi AI

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

    Configure ICAP servers.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectIcapServer("trname", {
        ipAddress: "192.168.1.1",
        ipVersion: "4",
        maxConnections: 100,
        port: 1344,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectIcapServer("trname",
        ip_address="192.168.1.1",
        ip_version="4",
        max_connections=100,
        port=1344)
    
    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.NewObjectIcapServer(ctx, "trname", &fortimanager.ObjectIcapServerArgs{
    			IpAddress:      pulumi.String("192.168.1.1"),
    			IpVersion:      pulumi.String("4"),
    			MaxConnections: pulumi.Float64(100),
    			Port:           pulumi.Float64(1344),
    		})
    		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.ObjectIcapServer("trname", new()
        {
            IpAddress = "192.168.1.1",
            IpVersion = "4",
            MaxConnections = 100,
            Port = 1344,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectIcapServer;
    import com.pulumi.fortimanager.ObjectIcapServerArgs;
    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 ObjectIcapServer("trname", ObjectIcapServerArgs.builder()
                .ipAddress("192.168.1.1")
                .ipVersion("4")
                .maxConnections(100)
                .port(1344)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectIcapServer
        properties:
          ipAddress: 192.168.1.1
          ipVersion: '4'
          maxConnections: 100
          port: 1344
    

    Create ObjectIcapServer Resource

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

    Constructor syntax

    new ObjectIcapServer(name: string, args?: ObjectIcapServerArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectIcapServer(resource_name: str,
                         args: Optional[ObjectIcapServerArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectIcapServer(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         addr_type: Optional[str] = None,
                         adom: Optional[str] = None,
                         fqdn: Optional[str] = None,
                         healthcheck: Optional[str] = None,
                         healthcheck_service: Optional[str] = None,
                         ip6_address: Optional[str] = None,
                         ip_address: Optional[str] = None,
                         ip_version: Optional[str] = None,
                         max_connections: Optional[float] = None,
                         name: Optional[str] = None,
                         object_icap_server_id: Optional[str] = None,
                         port: Optional[float] = None,
                         scopetype: Optional[str] = None,
                         secure: Optional[str] = None,
                         ssl_cert: Optional[str] = None)
    func NewObjectIcapServer(ctx *Context, name string, args *ObjectIcapServerArgs, opts ...ResourceOption) (*ObjectIcapServer, error)
    public ObjectIcapServer(string name, ObjectIcapServerArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectIcapServer(String name, ObjectIcapServerArgs args)
    public ObjectIcapServer(String name, ObjectIcapServerArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectIcapServer
    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 ObjectIcapServerArgs
    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 ObjectIcapServerArgs
    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 ObjectIcapServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectIcapServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectIcapServerArgs
    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 objectIcapServerResource = new Fortimanager.ObjectIcapServer("objectIcapServerResource", new()
    {
        AddrType = "string",
        Adom = "string",
        Fqdn = "string",
        Healthcheck = "string",
        HealthcheckService = "string",
        Ip6Address = "string",
        IpAddress = "string",
        IpVersion = "string",
        MaxConnections = 0,
        Name = "string",
        ObjectIcapServerId = "string",
        Port = 0,
        Scopetype = "string",
        Secure = "string",
        SslCert = "string",
    });
    
    example, err := fortimanager.NewObjectIcapServer(ctx, "objectIcapServerResource", &fortimanager.ObjectIcapServerArgs{
    AddrType: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Fqdn: pulumi.String("string"),
    Healthcheck: pulumi.String("string"),
    HealthcheckService: pulumi.String("string"),
    Ip6Address: pulumi.String("string"),
    IpAddress: pulumi.String("string"),
    IpVersion: pulumi.String("string"),
    MaxConnections: pulumi.Float64(0),
    Name: pulumi.String("string"),
    ObjectIcapServerId: pulumi.String("string"),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Secure: pulumi.String("string"),
    SslCert: pulumi.String("string"),
    })
    
    var objectIcapServerResource = new ObjectIcapServer("objectIcapServerResource", ObjectIcapServerArgs.builder()
        .addrType("string")
        .adom("string")
        .fqdn("string")
        .healthcheck("string")
        .healthcheckService("string")
        .ip6Address("string")
        .ipAddress("string")
        .ipVersion("string")
        .maxConnections(0)
        .name("string")
        .objectIcapServerId("string")
        .port(0)
        .scopetype("string")
        .secure("string")
        .sslCert("string")
        .build());
    
    object_icap_server_resource = fortimanager.ObjectIcapServer("objectIcapServerResource",
        addr_type="string",
        adom="string",
        fqdn="string",
        healthcheck="string",
        healthcheck_service="string",
        ip6_address="string",
        ip_address="string",
        ip_version="string",
        max_connections=0,
        name="string",
        object_icap_server_id="string",
        port=0,
        scopetype="string",
        secure="string",
        ssl_cert="string")
    
    const objectIcapServerResource = new fortimanager.ObjectIcapServer("objectIcapServerResource", {
        addrType: "string",
        adom: "string",
        fqdn: "string",
        healthcheck: "string",
        healthcheckService: "string",
        ip6Address: "string",
        ipAddress: "string",
        ipVersion: "string",
        maxConnections: 0,
        name: "string",
        objectIcapServerId: "string",
        port: 0,
        scopetype: "string",
        secure: "string",
        sslCert: "string",
    });
    
    type: fortimanager:ObjectIcapServer
    properties:
        addrType: string
        adom: string
        fqdn: string
        healthcheck: string
        healthcheckService: string
        ip6Address: string
        ipAddress: string
        ipVersion: string
        maxConnections: 0
        name: string
        objectIcapServerId: string
        port: 0
        scopetype: string
        secure: string
        sslCert: string
    

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

    AddrType string
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fqdn string
    ICAP remote server Fully Qualified Domain Name (FQDN).
    Healthcheck string
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    HealthcheckService string
    ICAP Service name to use for health checks.
    Ip6Address string
    IPv6 address of the ICAP server.
    IpAddress string
    IPv4 address of the ICAP server.
    IpVersion string
    IP version. Valid values: 4, 6.
    MaxConnections double
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    Name string
    Server name.
    ObjectIcapServerId string
    an identifier for the resource with format {{name}}.
    Port double
    ICAP server port.
    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.
    Secure string
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    SslCert string
    CA certificate name.
    AddrType string
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fqdn string
    ICAP remote server Fully Qualified Domain Name (FQDN).
    Healthcheck string
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    HealthcheckService string
    ICAP Service name to use for health checks.
    Ip6Address string
    IPv6 address of the ICAP server.
    IpAddress string
    IPv4 address of the ICAP server.
    IpVersion string
    IP version. Valid values: 4, 6.
    MaxConnections float64
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    Name string
    Server name.
    ObjectIcapServerId string
    an identifier for the resource with format {{name}}.
    Port float64
    ICAP server port.
    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.
    Secure string
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    SslCert string
    CA certificate name.
    addrType String
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn String
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck String
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheckService String
    ICAP Service name to use for health checks.
    ip6Address String
    IPv6 address of the ICAP server.
    ipAddress String
    IPv4 address of the ICAP server.
    ipVersion String
    IP version. Valid values: 4, 6.
    maxConnections Double
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name String
    Server name.
    objectIcapServerId String
    an identifier for the resource with format {{name}}.
    port Double
    ICAP server port.
    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.
    secure String
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    sslCert String
    CA certificate name.
    addrType string
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn string
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck string
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheckService string
    ICAP Service name to use for health checks.
    ip6Address string
    IPv6 address of the ICAP server.
    ipAddress string
    IPv4 address of the ICAP server.
    ipVersion string
    IP version. Valid values: 4, 6.
    maxConnections number
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name string
    Server name.
    objectIcapServerId string
    an identifier for the resource with format {{name}}.
    port number
    ICAP server port.
    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.
    secure string
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    sslCert string
    CA certificate name.
    addr_type str
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn str
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck str
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheck_service str
    ICAP Service name to use for health checks.
    ip6_address str
    IPv6 address of the ICAP server.
    ip_address str
    IPv4 address of the ICAP server.
    ip_version str
    IP version. Valid values: 4, 6.
    max_connections float
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name str
    Server name.
    object_icap_server_id str
    an identifier for the resource with format {{name}}.
    port float
    ICAP server port.
    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.
    secure str
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    ssl_cert str
    CA certificate name.
    addrType String
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn String
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck String
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheckService String
    ICAP Service name to use for health checks.
    ip6Address String
    IPv6 address of the ICAP server.
    ipAddress String
    IPv4 address of the ICAP server.
    ipVersion String
    IP version. Valid values: 4, 6.
    maxConnections Number
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name String
    Server name.
    objectIcapServerId String
    an identifier for the resource with format {{name}}.
    port Number
    ICAP server port.
    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.
    secure String
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    sslCert String
    CA certificate name.

    Outputs

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

    Get an existing ObjectIcapServer 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?: ObjectIcapServerState, opts?: CustomResourceOptions): ObjectIcapServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            addr_type: Optional[str] = None,
            adom: Optional[str] = None,
            fqdn: Optional[str] = None,
            healthcheck: Optional[str] = None,
            healthcheck_service: Optional[str] = None,
            ip6_address: Optional[str] = None,
            ip_address: Optional[str] = None,
            ip_version: Optional[str] = None,
            max_connections: Optional[float] = None,
            name: Optional[str] = None,
            object_icap_server_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            secure: Optional[str] = None,
            ssl_cert: Optional[str] = None) -> ObjectIcapServer
    func GetObjectIcapServer(ctx *Context, name string, id IDInput, state *ObjectIcapServerState, opts ...ResourceOption) (*ObjectIcapServer, error)
    public static ObjectIcapServer Get(string name, Input<string> id, ObjectIcapServerState? state, CustomResourceOptions? opts = null)
    public static ObjectIcapServer get(String name, Output<String> id, ObjectIcapServerState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectIcapServer    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:
    AddrType string
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fqdn string
    ICAP remote server Fully Qualified Domain Name (FQDN).
    Healthcheck string
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    HealthcheckService string
    ICAP Service name to use for health checks.
    Ip6Address string
    IPv6 address of the ICAP server.
    IpAddress string
    IPv4 address of the ICAP server.
    IpVersion string
    IP version. Valid values: 4, 6.
    MaxConnections double
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    Name string
    Server name.
    ObjectIcapServerId string
    an identifier for the resource with format {{name}}.
    Port double
    ICAP server port.
    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.
    Secure string
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    SslCert string
    CA certificate name.
    AddrType string
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fqdn string
    ICAP remote server Fully Qualified Domain Name (FQDN).
    Healthcheck string
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    HealthcheckService string
    ICAP Service name to use for health checks.
    Ip6Address string
    IPv6 address of the ICAP server.
    IpAddress string
    IPv4 address of the ICAP server.
    IpVersion string
    IP version. Valid values: 4, 6.
    MaxConnections float64
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    Name string
    Server name.
    ObjectIcapServerId string
    an identifier for the resource with format {{name}}.
    Port float64
    ICAP server port.
    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.
    Secure string
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    SslCert string
    CA certificate name.
    addrType String
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn String
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck String
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheckService String
    ICAP Service name to use for health checks.
    ip6Address String
    IPv6 address of the ICAP server.
    ipAddress String
    IPv4 address of the ICAP server.
    ipVersion String
    IP version. Valid values: 4, 6.
    maxConnections Double
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name String
    Server name.
    objectIcapServerId String
    an identifier for the resource with format {{name}}.
    port Double
    ICAP server port.
    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.
    secure String
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    sslCert String
    CA certificate name.
    addrType string
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn string
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck string
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheckService string
    ICAP Service name to use for health checks.
    ip6Address string
    IPv6 address of the ICAP server.
    ipAddress string
    IPv4 address of the ICAP server.
    ipVersion string
    IP version. Valid values: 4, 6.
    maxConnections number
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name string
    Server name.
    objectIcapServerId string
    an identifier for the resource with format {{name}}.
    port number
    ICAP server port.
    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.
    secure string
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    sslCert string
    CA certificate name.
    addr_type str
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn str
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck str
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheck_service str
    ICAP Service name to use for health checks.
    ip6_address str
    IPv6 address of the ICAP server.
    ip_address str
    IPv4 address of the ICAP server.
    ip_version str
    IP version. Valid values: 4, 6.
    max_connections float
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name str
    Server name.
    object_icap_server_id str
    an identifier for the resource with format {{name}}.
    port float
    ICAP server port.
    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.
    secure str
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    ssl_cert str
    CA certificate name.
    addrType String
    Address type of the remote ICAP server: IPv4, IPv6 or FQDN. Valid values: fqdn, ip4, ip6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fqdn String
    ICAP remote server Fully Qualified Domain Name (FQDN).
    healthcheck String
    Enable/disable ICAP remote server health checking. Attempts to connect to the remote ICAP server to verify that the server is operating normally. Valid values: disable, enable.
    healthcheckService String
    ICAP Service name to use for health checks.
    ip6Address String
    IPv6 address of the ICAP server.
    ipAddress String
    IPv4 address of the ICAP server.
    ipVersion String
    IP version. Valid values: 4, 6.
    maxConnections Number
    Maximum number of concurrent connections to ICAP server. Must not be less than wad-worker-count.
    name String
    Server name.
    objectIcapServerId String
    an identifier for the resource with format {{name}}.
    port Number
    ICAP server port.
    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.
    secure String
    Enable/disable secure connection to ICAP server. Valid values: disable, enable.
    sslCert String
    CA certificate name.

    Import

    ObjectIcap Server can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectIcapServer:ObjectIcapServer 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