1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementHost
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementHost

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    This resource allows you to add/update/delete Check Point Host.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementHost("example", {ipv4Address: "192.0.2.1"});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementHost("example", ipv4_address="192.0.2.1")
    
    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.NewManagementHost(ctx, "example", &checkpoint.ManagementHostArgs{
    			Ipv4Address: pulumi.String("192.0.2.1"),
    		})
    		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.ManagementHost("example", new()
        {
            Ipv4Address = "192.0.2.1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementHost;
    import com.pulumi.checkpoint.ManagementHostArgs;
    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 ManagementHost("example", ManagementHostArgs.builder()
                .ipv4Address("192.0.2.1")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementHost
        properties:
          ipv4Address: 192.0.2.1
    

    Create ManagementHost Resource

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

    Constructor syntax

    new ManagementHost(name: string, args?: ManagementHostArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementHost(resource_name: str,
                       args: Optional[ManagementHostArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementHost(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       color: Optional[str] = None,
                       comments: Optional[str] = None,
                       host_servers: Optional[ManagementHostHostServersArgs] = None,
                       ignore_errors: Optional[bool] = None,
                       ignore_warnings: Optional[bool] = None,
                       interfaces: Optional[Sequence[ManagementHostInterfaceArgs]] = None,
                       ipv4_address: Optional[str] = None,
                       ipv6_address: Optional[str] = None,
                       management_host_id: Optional[str] = None,
                       name: Optional[str] = None,
                       nat_settings: Optional[Mapping[str, str]] = None,
                       tags: Optional[Sequence[str]] = None)
    func NewManagementHost(ctx *Context, name string, args *ManagementHostArgs, opts ...ResourceOption) (*ManagementHost, error)
    public ManagementHost(string name, ManagementHostArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementHost(String name, ManagementHostArgs args)
    public ManagementHost(String name, ManagementHostArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementHost
    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 ManagementHostArgs
    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 ManagementHostArgs
    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 ManagementHostArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementHostArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementHostArgs
    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 managementHostResource = new Checkpoint.ManagementHost("managementHostResource", new()
    {
        Color = "string",
        Comments = "string",
        HostServers = new Checkpoint.Inputs.ManagementHostHostServersArgs
        {
            DnsServer = false,
            MailServer = false,
            WebServer = false,
            WebServerConfig = new Checkpoint.Inputs.ManagementHostHostServersWebServerConfigArgs
            {
                AdditionalPorts = new[]
                {
                    "string",
                },
                ApplicationEngines = new[]
                {
                    "string",
                },
                ListenStandardPort = false,
                OperatingSystem = "string",
                ProtectedBy = "string",
            },
        },
        IgnoreErrors = false,
        IgnoreWarnings = false,
        Interfaces = new[]
        {
            new Checkpoint.Inputs.ManagementHostInterfaceArgs
            {
                Color = "string",
                Comments = "string",
                IgnoreErrors = false,
                IgnoreWarnings = false,
                MaskLength4 = 0,
                MaskLength6 = 0,
                Name = "string",
                Subnet4 = "string",
                Subnet6 = "string",
            },
        },
        Ipv4Address = "string",
        Ipv6Address = "string",
        ManagementHostId = "string",
        Name = "string",
        NatSettings = 
        {
            { "string", "string" },
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementHost(ctx, "managementHostResource", &checkpoint.ManagementHostArgs{
    	Color:    pulumi.String("string"),
    	Comments: pulumi.String("string"),
    	HostServers: &checkpoint.ManagementHostHostServersArgs{
    		DnsServer:  pulumi.Bool(false),
    		MailServer: pulumi.Bool(false),
    		WebServer:  pulumi.Bool(false),
    		WebServerConfig: &checkpoint.ManagementHostHostServersWebServerConfigArgs{
    			AdditionalPorts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ApplicationEngines: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ListenStandardPort: pulumi.Bool(false),
    			OperatingSystem:    pulumi.String("string"),
    			ProtectedBy:        pulumi.String("string"),
    		},
    	},
    	IgnoreErrors:   pulumi.Bool(false),
    	IgnoreWarnings: pulumi.Bool(false),
    	Interfaces: checkpoint.ManagementHostInterfaceArray{
    		&checkpoint.ManagementHostInterfaceArgs{
    			Color:          pulumi.String("string"),
    			Comments:       pulumi.String("string"),
    			IgnoreErrors:   pulumi.Bool(false),
    			IgnoreWarnings: pulumi.Bool(false),
    			MaskLength4:    pulumi.Float64(0),
    			MaskLength6:    pulumi.Float64(0),
    			Name:           pulumi.String("string"),
    			Subnet4:        pulumi.String("string"),
    			Subnet6:        pulumi.String("string"),
    		},
    	},
    	Ipv4Address:      pulumi.String("string"),
    	Ipv6Address:      pulumi.String("string"),
    	ManagementHostId: pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	NatSettings: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var managementHostResource = new ManagementHost("managementHostResource", ManagementHostArgs.builder()
        .color("string")
        .comments("string")
        .hostServers(ManagementHostHostServersArgs.builder()
            .dnsServer(false)
            .mailServer(false)
            .webServer(false)
            .webServerConfig(ManagementHostHostServersWebServerConfigArgs.builder()
                .additionalPorts("string")
                .applicationEngines("string")
                .listenStandardPort(false)
                .operatingSystem("string")
                .protectedBy("string")
                .build())
            .build())
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .interfaces(ManagementHostInterfaceArgs.builder()
            .color("string")
            .comments("string")
            .ignoreErrors(false)
            .ignoreWarnings(false)
            .maskLength4(0)
            .maskLength6(0)
            .name("string")
            .subnet4("string")
            .subnet6("string")
            .build())
        .ipv4Address("string")
        .ipv6Address("string")
        .managementHostId("string")
        .name("string")
        .natSettings(Map.of("string", "string"))
        .tags("string")
        .build());
    
    management_host_resource = checkpoint.ManagementHost("managementHostResource",
        color="string",
        comments="string",
        host_servers={
            "dns_server": False,
            "mail_server": False,
            "web_server": False,
            "web_server_config": {
                "additional_ports": ["string"],
                "application_engines": ["string"],
                "listen_standard_port": False,
                "operating_system": "string",
                "protected_by": "string",
            },
        },
        ignore_errors=False,
        ignore_warnings=False,
        interfaces=[{
            "color": "string",
            "comments": "string",
            "ignore_errors": False,
            "ignore_warnings": False,
            "mask_length4": 0,
            "mask_length6": 0,
            "name": "string",
            "subnet4": "string",
            "subnet6": "string",
        }],
        ipv4_address="string",
        ipv6_address="string",
        management_host_id="string",
        name="string",
        nat_settings={
            "string": "string",
        },
        tags=["string"])
    
    const managementHostResource = new checkpoint.ManagementHost("managementHostResource", {
        color: "string",
        comments: "string",
        hostServers: {
            dnsServer: false,
            mailServer: false,
            webServer: false,
            webServerConfig: {
                additionalPorts: ["string"],
                applicationEngines: ["string"],
                listenStandardPort: false,
                operatingSystem: "string",
                protectedBy: "string",
            },
        },
        ignoreErrors: false,
        ignoreWarnings: false,
        interfaces: [{
            color: "string",
            comments: "string",
            ignoreErrors: false,
            ignoreWarnings: false,
            maskLength4: 0,
            maskLength6: 0,
            name: "string",
            subnet4: "string",
            subnet6: "string",
        }],
        ipv4Address: "string",
        ipv6Address: "string",
        managementHostId: "string",
        name: "string",
        natSettings: {
            string: "string",
        },
        tags: ["string"],
    });
    
    type: checkpoint:ManagementHost
    properties:
        color: string
        comments: string
        hostServers:
            dnsServer: false
            mailServer: false
            webServer: false
            webServerConfig:
                additionalPorts:
                    - string
                applicationEngines:
                    - string
                listenStandardPort: false
                operatingSystem: string
                protectedBy: string
        ignoreErrors: false
        ignoreWarnings: false
        interfaces:
            - color: string
              comments: string
              ignoreErrors: false
              ignoreWarnings: false
              maskLength4: 0
              maskLength6: 0
              name: string
              subnet4: string
              subnet6: string
        ipv4Address: string
        ipv6Address: string
        managementHostId: string
        name: string
        natSettings:
            string: string
        tags:
            - string
    

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

    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    HostServers ManagementHostHostServers
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    Interfaces List<ManagementHostInterface>
    Host interfaces. Host interfaces blocks are documented below.
    Ipv4Address string
    IPv4 address.
    Ipv6Address string
    IPv6 address.
    ManagementHostId string
    Name string
    Object name. Should be unique in the domain.
    NatSettings Dictionary<string, string>
    NAT settings. NAT settings blocks are documented below.
    Tags List<string>
    Collection of tag identifiers.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    HostServers ManagementHostHostServersArgs
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    Interfaces []ManagementHostInterfaceArgs
    Host interfaces. Host interfaces blocks are documented below.
    Ipv4Address string
    IPv4 address.
    Ipv6Address string
    IPv6 address.
    ManagementHostId string
    Name string
    Object name. Should be unique in the domain.
    NatSettings map[string]string
    NAT settings. NAT settings blocks are documented below.
    Tags []string
    Collection of tag identifiers.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    hostServers ManagementHostHostServers
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces List<ManagementHostInterface>
    Host interfaces. Host interfaces blocks are documented below.
    ipv4Address String
    IPv4 address.
    ipv6Address String
    IPv6 address.
    managementHostId String
    name String
    Object name. Should be unique in the domain.
    natSettings Map<String,String>
    NAT settings. NAT settings blocks are documented below.
    tags List<String>
    Collection of tag identifiers.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    hostServers ManagementHostHostServers
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces ManagementHostInterface[]
    Host interfaces. Host interfaces blocks are documented below.
    ipv4Address string
    IPv4 address.
    ipv6Address string
    IPv6 address.
    managementHostId string
    name string
    Object name. Should be unique in the domain.
    natSettings {[key: string]: string}
    NAT settings. NAT settings blocks are documented below.
    tags string[]
    Collection of tag identifiers.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    host_servers ManagementHostHostServersArgs
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces Sequence[ManagementHostInterfaceArgs]
    Host interfaces. Host interfaces blocks are documented below.
    ipv4_address str
    IPv4 address.
    ipv6_address str
    IPv6 address.
    management_host_id str
    name str
    Object name. Should be unique in the domain.
    nat_settings Mapping[str, str]
    NAT settings. NAT settings blocks are documented below.
    tags Sequence[str]
    Collection of tag identifiers.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    hostServers Property Map
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces List<Property Map>
    Host interfaces. Host interfaces blocks are documented below.
    ipv4Address String
    IPv4 address.
    ipv6Address String
    IPv6 address.
    managementHostId String
    name String
    Object name. Should be unique in the domain.
    natSettings Map<String>
    NAT settings. NAT settings blocks are documented below.
    tags List<String>
    Collection of tag identifiers.

    Outputs

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

    Get an existing ManagementHost 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?: ManagementHostState, opts?: CustomResourceOptions): ManagementHost
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            host_servers: Optional[ManagementHostHostServersArgs] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            interfaces: Optional[Sequence[ManagementHostInterfaceArgs]] = None,
            ipv4_address: Optional[str] = None,
            ipv6_address: Optional[str] = None,
            management_host_id: Optional[str] = None,
            name: Optional[str] = None,
            nat_settings: Optional[Mapping[str, str]] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementHost
    func GetManagementHost(ctx *Context, name string, id IDInput, state *ManagementHostState, opts ...ResourceOption) (*ManagementHost, error)
    public static ManagementHost Get(string name, Input<string> id, ManagementHostState? state, CustomResourceOptions? opts = null)
    public static ManagementHost get(String name, Output<String> id, ManagementHostState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementHost    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:
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    HostServers ManagementHostHostServers
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    Interfaces List<ManagementHostInterface>
    Host interfaces. Host interfaces blocks are documented below.
    Ipv4Address string
    IPv4 address.
    Ipv6Address string
    IPv6 address.
    ManagementHostId string
    Name string
    Object name. Should be unique in the domain.
    NatSettings Dictionary<string, string>
    NAT settings. NAT settings blocks are documented below.
    Tags List<string>
    Collection of tag identifiers.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    HostServers ManagementHostHostServersArgs
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    Interfaces []ManagementHostInterfaceArgs
    Host interfaces. Host interfaces blocks are documented below.
    Ipv4Address string
    IPv4 address.
    Ipv6Address string
    IPv6 address.
    ManagementHostId string
    Name string
    Object name. Should be unique in the domain.
    NatSettings map[string]string
    NAT settings. NAT settings blocks are documented below.
    Tags []string
    Collection of tag identifiers.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    hostServers ManagementHostHostServers
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces List<ManagementHostInterface>
    Host interfaces. Host interfaces blocks are documented below.
    ipv4Address String
    IPv4 address.
    ipv6Address String
    IPv6 address.
    managementHostId String
    name String
    Object name. Should be unique in the domain.
    natSettings Map<String,String>
    NAT settings. NAT settings blocks are documented below.
    tags List<String>
    Collection of tag identifiers.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    hostServers ManagementHostHostServers
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces ManagementHostInterface[]
    Host interfaces. Host interfaces blocks are documented below.
    ipv4Address string
    IPv4 address.
    ipv6Address string
    IPv6 address.
    managementHostId string
    name string
    Object name. Should be unique in the domain.
    natSettings {[key: string]: string}
    NAT settings. NAT settings blocks are documented below.
    tags string[]
    Collection of tag identifiers.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    host_servers ManagementHostHostServersArgs
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces Sequence[ManagementHostInterfaceArgs]
    Host interfaces. Host interfaces blocks are documented below.
    ipv4_address str
    IPv4 address.
    ipv6_address str
    IPv6 address.
    management_host_id str
    name str
    Object name. Should be unique in the domain.
    nat_settings Mapping[str, str]
    NAT settings. NAT settings blocks are documented below.
    tags Sequence[str]
    Collection of tag identifiers.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    hostServers Property Map
    Servers Configuration. Servers Configuration blocks are documented below.
    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.
    interfaces List<Property Map>
    Host interfaces. Host interfaces blocks are documented below.
    ipv4Address String
    IPv4 address.
    ipv6Address String
    IPv6 address.
    managementHostId String
    name String
    Object name. Should be unique in the domain.
    natSettings Map<String>
    NAT settings. NAT settings blocks are documented below.
    tags List<String>
    Collection of tag identifiers.

    Supporting Types

    ManagementHostHostServers, ManagementHostHostServersArgs

    DnsServer bool
    Gets True if this server is a DNS Server.
    MailServer bool
    Gets True if this server is a Mail Server.
    WebServer bool
    Gets True if this server is a Web Server.
    WebServerConfig ManagementHostHostServersWebServerConfig
    Web Server configuration. Web Server configuration blocks are documented below.
    DnsServer bool
    Gets True if this server is a DNS Server.
    MailServer bool
    Gets True if this server is a Mail Server.
    WebServer bool
    Gets True if this server is a Web Server.
    WebServerConfig ManagementHostHostServersWebServerConfig
    Web Server configuration. Web Server configuration blocks are documented below.
    dnsServer Boolean
    Gets True if this server is a DNS Server.
    mailServer Boolean
    Gets True if this server is a Mail Server.
    webServer Boolean
    Gets True if this server is a Web Server.
    webServerConfig ManagementHostHostServersWebServerConfig
    Web Server configuration. Web Server configuration blocks are documented below.
    dnsServer boolean
    Gets True if this server is a DNS Server.
    mailServer boolean
    Gets True if this server is a Mail Server.
    webServer boolean
    Gets True if this server is a Web Server.
    webServerConfig ManagementHostHostServersWebServerConfig
    Web Server configuration. Web Server configuration blocks are documented below.
    dns_server bool
    Gets True if this server is a DNS Server.
    mail_server bool
    Gets True if this server is a Mail Server.
    web_server bool
    Gets True if this server is a Web Server.
    web_server_config ManagementHostHostServersWebServerConfig
    Web Server configuration. Web Server configuration blocks are documented below.
    dnsServer Boolean
    Gets True if this server is a DNS Server.
    mailServer Boolean
    Gets True if this server is a Mail Server.
    webServer Boolean
    Gets True if this server is a Web Server.
    webServerConfig Property Map
    Web Server configuration. Web Server configuration blocks are documented below.

    ManagementHostHostServersWebServerConfig, ManagementHostHostServersWebServerConfigArgs

    AdditionalPorts List<string>
    Server additional ports.
    ApplicationEngines List<string>
    Application engines of this web server.
    ListenStandardPort bool
    "Whether server listens to standard port.
    OperatingSystem string
    Operating System.
    ProtectedBy string
    Network object which protects this server identified by the name or UID.
    AdditionalPorts []string
    Server additional ports.
    ApplicationEngines []string
    Application engines of this web server.
    ListenStandardPort bool
    "Whether server listens to standard port.
    OperatingSystem string
    Operating System.
    ProtectedBy string
    Network object which protects this server identified by the name or UID.
    additionalPorts List<String>
    Server additional ports.
    applicationEngines List<String>
    Application engines of this web server.
    listenStandardPort Boolean
    "Whether server listens to standard port.
    operatingSystem String
    Operating System.
    protectedBy String
    Network object which protects this server identified by the name or UID.
    additionalPorts string[]
    Server additional ports.
    applicationEngines string[]
    Application engines of this web server.
    listenStandardPort boolean
    "Whether server listens to standard port.
    operatingSystem string
    Operating System.
    protectedBy string
    Network object which protects this server identified by the name or UID.
    additional_ports Sequence[str]
    Server additional ports.
    application_engines Sequence[str]
    Application engines of this web server.
    listen_standard_port bool
    "Whether server listens to standard port.
    operating_system str
    Operating System.
    protected_by str
    Network object which protects this server identified by the name or UID.
    additionalPorts List<String>
    Server additional ports.
    applicationEngines List<String>
    Application engines of this web server.
    listenStandardPort Boolean
    "Whether server listens to standard port.
    operatingSystem String
    Operating System.
    protectedBy String
    Network object which protects this server identified by the name or UID.

    ManagementHostInterface, ManagementHostInterfaceArgs

    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.
    MaskLength4 double
    IPv4 network mask length.
    MaskLength6 double
    IPv6 network mask length.
    Name string
    Object name. Should be unique in the domain.
    Subnet4 string
    IPv4 network address.
    Subnet6 string
    IPv6 network address.
    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.
    MaskLength4 float64
    IPv4 network mask length.
    MaskLength6 float64
    IPv6 network mask length.
    Name string
    Object name. Should be unique in the domain.
    Subnet4 string
    IPv4 network address.
    Subnet6 string
    IPv6 network address.
    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.
    maskLength4 Double
    IPv4 network mask length.
    maskLength6 Double
    IPv6 network mask length.
    name String
    Object name. Should be unique in the domain.
    subnet4 String
    IPv4 network address.
    subnet6 String
    IPv6 network address.
    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.
    maskLength4 number
    IPv4 network mask length.
    maskLength6 number
    IPv6 network mask length.
    name string
    Object name. Should be unique in the domain.
    subnet4 string
    IPv4 network address.
    subnet6 string
    IPv6 network address.
    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.
    mask_length4 float
    IPv4 network mask length.
    mask_length6 float
    IPv6 network mask length.
    name str
    Object name. Should be unique in the domain.
    subnet4 str
    IPv4 network address.
    subnet6 str
    IPv6 network address.
    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.
    maskLength4 Number
    IPv4 network mask length.
    maskLength6 Number
    IPv6 network mask length.
    name String
    Object name. Should be unique in the domain.
    subnet4 String
    IPv4 network address.
    subnet6 String
    IPv6 network address.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw