1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementIfMapServer
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw

checkpoint.ManagementIfMapServer

Explore with Pulumi AI

checkpoint logo
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw

    This resource allows you to execute Check Point If Map Server.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementIfMapServer("example", {
        host: "TestHost",
        monitoredIps: [{
            firstIp: "0.0.0.0",
            lastIp: "0.0.0.0",
        }],
        path: "path",
        port: 1,
        version: "2",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementIfMapServer("example",
        host="TestHost",
        monitored_ips=[{
            "first_ip": "0.0.0.0",
            "last_ip": "0.0.0.0",
        }],
        path="path",
        port=1,
        version="2")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementIfMapServer(ctx, "example", &checkpoint.ManagementIfMapServerArgs{
    			Host: pulumi.String("TestHost"),
    			MonitoredIps: checkpoint.ManagementIfMapServerMonitoredIpArray{
    				&checkpoint.ManagementIfMapServerMonitoredIpArgs{
    					FirstIp: pulumi.String("0.0.0.0"),
    					LastIp:  pulumi.String("0.0.0.0"),
    				},
    			},
    			Path:    pulumi.String("path"),
    			Port:    pulumi.Float64(1),
    			Version: pulumi.String("2"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Checkpoint.ManagementIfMapServer("example", new()
        {
            Host = "TestHost",
            MonitoredIps = new[]
            {
                new Checkpoint.Inputs.ManagementIfMapServerMonitoredIpArgs
                {
                    FirstIp = "0.0.0.0",
                    LastIp = "0.0.0.0",
                },
            },
            Path = "path",
            Port = 1,
            Version = "2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementIfMapServer;
    import com.pulumi.checkpoint.ManagementIfMapServerArgs;
    import com.pulumi.checkpoint.inputs.ManagementIfMapServerMonitoredIpArgs;
    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 example = new ManagementIfMapServer("example", ManagementIfMapServerArgs.builder()
                .host("TestHost")
                .monitoredIps(ManagementIfMapServerMonitoredIpArgs.builder()
                    .firstIp("0.0.0.0")
                    .lastIp("0.0.0.0")
                    .build())
                .path("path")
                .port(1)
                .version("2")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementIfMapServer
        properties:
          host: TestHost
          monitoredIps:
            - firstIp: 0.0.0.0
              lastIp: 0.0.0.0
          path: path
          port: 1
          version: '2'
    

    Create ManagementIfMapServer Resource

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

    Constructor syntax

    new ManagementIfMapServer(name: string, args: ManagementIfMapServerArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementIfMapServer(resource_name: str,
                              args: ManagementIfMapServerArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementIfMapServer(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              host: Optional[str] = None,
                              monitored_ips: Optional[Sequence[ManagementIfMapServerMonitoredIpArgs]] = None,
                              management_if_map_server_id: Optional[str] = None,
                              comments: Optional[str] = None,
                              ignore_errors: Optional[bool] = None,
                              ignore_warnings: Optional[bool] = None,
                              authentication: Optional[ManagementIfMapServerAuthenticationArgs] = None,
                              color: Optional[str] = None,
                              name: Optional[str] = None,
                              path: Optional[str] = None,
                              port: Optional[float] = None,
                              query_whole_ranges: Optional[bool] = None,
                              tags: Optional[Sequence[str]] = None,
                              version: Optional[str] = None)
    func NewManagementIfMapServer(ctx *Context, name string, args ManagementIfMapServerArgs, opts ...ResourceOption) (*ManagementIfMapServer, error)
    public ManagementIfMapServer(string name, ManagementIfMapServerArgs args, CustomResourceOptions? opts = null)
    public ManagementIfMapServer(String name, ManagementIfMapServerArgs args)
    public ManagementIfMapServer(String name, ManagementIfMapServerArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementIfMapServer
    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 ManagementIfMapServerArgs
    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 ManagementIfMapServerArgs
    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 ManagementIfMapServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementIfMapServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementIfMapServerArgs
    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 managementIfMapServerResource = new Checkpoint.ManagementIfMapServer("managementIfMapServerResource", new()
    {
        Host = "string",
        MonitoredIps = new[]
        {
            new Checkpoint.Inputs.ManagementIfMapServerMonitoredIpArgs
            {
                FirstIp = "string",
                LastIp = "string",
            },
        },
        ManagementIfMapServerId = "string",
        Comments = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        Authentication = new Checkpoint.Inputs.ManagementIfMapServerAuthenticationArgs
        {
            AuthenticationMethod = "string",
            Password = "string",
            Username = "string",
        },
        Color = "string",
        Name = "string",
        Path = "string",
        Port = 0,
        QueryWholeRanges = false,
        Tags = new[]
        {
            "string",
        },
        Version = "string",
    });
    
    example, err := checkpoint.NewManagementIfMapServer(ctx, "managementIfMapServerResource", &checkpoint.ManagementIfMapServerArgs{
    	Host: pulumi.String("string"),
    	MonitoredIps: checkpoint.ManagementIfMapServerMonitoredIpArray{
    		&checkpoint.ManagementIfMapServerMonitoredIpArgs{
    			FirstIp: pulumi.String("string"),
    			LastIp:  pulumi.String("string"),
    		},
    	},
    	ManagementIfMapServerId: pulumi.String("string"),
    	Comments:                pulumi.String("string"),
    	IgnoreErrors:            pulumi.Bool(false),
    	IgnoreWarnings:          pulumi.Bool(false),
    	Authentication: &checkpoint.ManagementIfMapServerAuthenticationArgs{
    		AuthenticationMethod: pulumi.String("string"),
    		Password:             pulumi.String("string"),
    		Username:             pulumi.String("string"),
    	},
    	Color:            pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	Path:             pulumi.String("string"),
    	Port:             pulumi.Float64(0),
    	QueryWholeRanges: pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Version: pulumi.String("string"),
    })
    
    var managementIfMapServerResource = new ManagementIfMapServer("managementIfMapServerResource", ManagementIfMapServerArgs.builder()
        .host("string")
        .monitoredIps(ManagementIfMapServerMonitoredIpArgs.builder()
            .firstIp("string")
            .lastIp("string")
            .build())
        .managementIfMapServerId("string")
        .comments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .authentication(ManagementIfMapServerAuthenticationArgs.builder()
            .authenticationMethod("string")
            .password("string")
            .username("string")
            .build())
        .color("string")
        .name("string")
        .path("string")
        .port(0.0)
        .queryWholeRanges(false)
        .tags("string")
        .version("string")
        .build());
    
    management_if_map_server_resource = checkpoint.ManagementIfMapServer("managementIfMapServerResource",
        host="string",
        monitored_ips=[{
            "first_ip": "string",
            "last_ip": "string",
        }],
        management_if_map_server_id="string",
        comments="string",
        ignore_errors=False,
        ignore_warnings=False,
        authentication={
            "authentication_method": "string",
            "password": "string",
            "username": "string",
        },
        color="string",
        name="string",
        path="string",
        port=0,
        query_whole_ranges=False,
        tags=["string"],
        version="string")
    
    const managementIfMapServerResource = new checkpoint.ManagementIfMapServer("managementIfMapServerResource", {
        host: "string",
        monitoredIps: [{
            firstIp: "string",
            lastIp: "string",
        }],
        managementIfMapServerId: "string",
        comments: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        authentication: {
            authenticationMethod: "string",
            password: "string",
            username: "string",
        },
        color: "string",
        name: "string",
        path: "string",
        port: 0,
        queryWholeRanges: false,
        tags: ["string"],
        version: "string",
    });
    
    type: checkpoint:ManagementIfMapServer
    properties:
        authentication:
            authenticationMethod: string
            password: string
            username: string
        color: string
        comments: string
        host: string
        ignoreErrors: false
        ignoreWarnings: false
        managementIfMapServerId: string
        monitoredIps:
            - firstIp: string
              lastIp: string
        name: string
        path: string
        port: 0
        queryWholeRanges: false
        tags:
            - string
        version: string
    

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

    Host string
    Host that is IF-MAP server. Identified by name or UID.
    MonitoredIps List<ManagementIfMapServerMonitoredIp>
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    Authentication ManagementIfMapServerAuthentication
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementIfMapServerId string
    Name string
    Object name.
    Path string
    N/A
    Port double
    IF-MAP server port number.
    QueryWholeRanges bool
    Indicate whether to query whole ranges instead of single IP.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Version string
    IF-MAP version.
    Host string
    Host that is IF-MAP server. Identified by name or UID.
    MonitoredIps []ManagementIfMapServerMonitoredIpArgs
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    Authentication ManagementIfMapServerAuthenticationArgs
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementIfMapServerId string
    Name string
    Object name.
    Path string
    N/A
    Port float64
    IF-MAP server port number.
    QueryWholeRanges bool
    Indicate whether to query whole ranges instead of single IP.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    Version string
    IF-MAP version.
    host String
    Host that is IF-MAP server. Identified by name or UID.
    monitoredIps List<ManagementIfMapServerMonitoredIp>
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    authentication ManagementIfMapServerAuthentication
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementIfMapServerId String
    name String
    Object name.
    path String
    N/A
    port Double
    IF-MAP server port number.
    queryWholeRanges Boolean
    Indicate whether to query whole ranges instead of single IP.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    version String
    IF-MAP version.
    host string
    Host that is IF-MAP server. Identified by name or UID.
    monitoredIps ManagementIfMapServerMonitoredIp[]
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    authentication ManagementIfMapServerAuthentication
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementIfMapServerId string
    name string
    Object name.
    path string
    N/A
    port number
    IF-MAP server port number.
    queryWholeRanges boolean
    Indicate whether to query whole ranges instead of single IP.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    version string
    IF-MAP version.
    host str
    Host that is IF-MAP server. Identified by name or UID.
    monitored_ips Sequence[ManagementIfMapServerMonitoredIpArgs]
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    authentication ManagementIfMapServerAuthenticationArgs
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_if_map_server_id str
    name str
    Object name.
    path str
    N/A
    port float
    IF-MAP server port number.
    query_whole_ranges bool
    Indicate whether to query whole ranges instead of single IP.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    version str
    IF-MAP version.
    host String
    Host that is IF-MAP server. Identified by name or UID.
    monitoredIps List<Property Map>
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    authentication Property Map
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementIfMapServerId String
    name String
    Object name.
    path String
    N/A
    port Number
    IF-MAP server port number.
    queryWholeRanges Boolean
    Indicate whether to query whole ranges instead of single IP.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    version String
    IF-MAP version.

    Outputs

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

    Get an existing ManagementIfMapServer 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?: ManagementIfMapServerState, opts?: CustomResourceOptions): ManagementIfMapServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication: Optional[ManagementIfMapServerAuthenticationArgs] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            host: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_if_map_server_id: Optional[str] = None,
            monitored_ips: Optional[Sequence[ManagementIfMapServerMonitoredIpArgs]] = None,
            name: Optional[str] = None,
            path: Optional[str] = None,
            port: Optional[float] = None,
            query_whole_ranges: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None,
            version: Optional[str] = None) -> ManagementIfMapServer
    func GetManagementIfMapServer(ctx *Context, name string, id IDInput, state *ManagementIfMapServerState, opts ...ResourceOption) (*ManagementIfMapServer, error)
    public static ManagementIfMapServer Get(string name, Input<string> id, ManagementIfMapServerState? state, CustomResourceOptions? opts = null)
    public static ManagementIfMapServer get(String name, Output<String> id, ManagementIfMapServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementIfMapServer    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:
    Authentication ManagementIfMapServerAuthentication
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Host string
    Host that is IF-MAP server. Identified by name or UID.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementIfMapServerId string
    MonitoredIps List<ManagementIfMapServerMonitoredIp>
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    Name string
    Object name.
    Path string
    N/A
    Port double
    IF-MAP server port number.
    QueryWholeRanges bool
    Indicate whether to query whole ranges instead of single IP.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Version string
    IF-MAP version.
    Authentication ManagementIfMapServerAuthenticationArgs
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Host string
    Host that is IF-MAP server. Identified by name or UID.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementIfMapServerId string
    MonitoredIps []ManagementIfMapServerMonitoredIpArgs
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    Name string
    Object name.
    Path string
    N/A
    Port float64
    IF-MAP server port number.
    QueryWholeRanges bool
    Indicate whether to query whole ranges instead of single IP.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    Version string
    IF-MAP version.
    authentication ManagementIfMapServerAuthentication
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    host String
    Host that is IF-MAP server. Identified by name or UID.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementIfMapServerId String
    monitoredIps List<ManagementIfMapServerMonitoredIp>
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    name String
    Object name.
    path String
    N/A
    port Double
    IF-MAP server port number.
    queryWholeRanges Boolean
    Indicate whether to query whole ranges instead of single IP.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    version String
    IF-MAP version.
    authentication ManagementIfMapServerAuthentication
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    host string
    Host that is IF-MAP server. Identified by name or UID.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementIfMapServerId string
    monitoredIps ManagementIfMapServerMonitoredIp[]
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    name string
    Object name.
    path string
    N/A
    port number
    IF-MAP server port number.
    queryWholeRanges boolean
    Indicate whether to query whole ranges instead of single IP.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    version string
    IF-MAP version.
    authentication ManagementIfMapServerAuthenticationArgs
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    host str
    Host that is IF-MAP server. Identified by name or UID.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_if_map_server_id str
    monitored_ips Sequence[ManagementIfMapServerMonitoredIpArgs]
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    name str
    Object name.
    path str
    N/A
    port float
    IF-MAP server port number.
    query_whole_ranges bool
    Indicate whether to query whole ranges instead of single IP.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    version str
    IF-MAP version.
    authentication Property Map
    Authentication configuration for the IF-MAP server. authentication blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    host String
    Host that is IF-MAP server. Identified by name or UID.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementIfMapServerId String
    monitoredIps List<Property Map>
    IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
    name String
    Object name.
    path String
    N/A
    port Number
    IF-MAP server port number.
    queryWholeRanges Boolean
    Indicate whether to query whole ranges instead of single IP.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    version String
    IF-MAP version.

    Supporting Types

    ManagementIfMapServerAuthentication, ManagementIfMapServerAuthenticationArgs

    AuthenticationMethod string
    Authentication method for the IF-MAP server.
    Password string
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    Username string
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    AuthenticationMethod string
    Authentication method for the IF-MAP server.
    Password string
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    Username string
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    authenticationMethod String
    Authentication method for the IF-MAP server.
    password String
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    username String
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    authenticationMethod string
    Authentication method for the IF-MAP server.
    password string
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    username string
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    authentication_method str
    Authentication method for the IF-MAP server.
    password str
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    username str
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    authenticationMethod String
    Authentication method for the IF-MAP server.
    password String
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.
    username String
    Username for the IF-MAP server authentication. Required only when 'authentication-method' is set to 'basic'.

    ManagementIfMapServerMonitoredIp, ManagementIfMapServerMonitoredIpArgs

    FirstIp string
    First IPv4 address in the range to be monitored.
    LastIp string
    Last IPv4 address in the range to be monitored.
    FirstIp string
    First IPv4 address in the range to be monitored.
    LastIp string
    Last IPv4 address in the range to be monitored.
    firstIp String
    First IPv4 address in the range to be monitored.
    lastIp String
    Last IPv4 address in the range to be monitored.
    firstIp string
    First IPv4 address in the range to be monitored.
    lastIp string
    Last IPv4 address in the range to be monitored.
    first_ip str
    First IPv4 address in the range to be monitored.
    last_ip str
    Last IPv4 address in the range to be monitored.
    firstIp String
    First IPv4 address in the range to be monitored.
    lastIp String
    Last IPv4 address in the range to be monitored.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw