checkpoint.ManagementHost
Explore with Pulumi AI
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.
- Host
Servers ManagementHost Host Servers - 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
List<Management
Host Interface> - Host interfaces. Host interfaces blocks are documented below.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Management
Host stringId - Name string
- Object name. Should be unique in the domain.
- Nat
Settings Dictionary<string, string> - NAT settings. NAT settings blocks are documented below.
- List<string>
- Collection of tag identifiers.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Host
Servers ManagementHost Host Servers Args - 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
[]Management
Host Interface Args - Host interfaces. Host interfaces blocks are documented below.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Management
Host stringId - Name string
- Object name. Should be unique in the domain.
- Nat
Settings map[string]string - NAT settings. NAT settings blocks are documented below.
- []string
- Collection of tag identifiers.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- host
Servers ManagementHost Host Servers - Servers Configuration. Servers Configuration blocks are documented below.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- interfaces
List<Management
Host Interface> - Host interfaces. Host interfaces blocks are documented below.
- ipv4Address String
- IPv4 address.
- ipv6Address String
- IPv6 address.
- management
Host StringId - name String
- Object name. Should be unique in the domain.
- nat
Settings Map<String,String> - NAT settings. NAT settings blocks are documented below.
- List<String>
- Collection of tag identifiers.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- host
Servers ManagementHost Host Servers - Servers Configuration. Servers Configuration blocks are documented below.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- interfaces
Management
Host Interface[] - Host interfaces. Host interfaces blocks are documented below.
- ipv4Address string
- IPv4 address.
- ipv6Address string
- IPv6 address.
- management
Host stringId - name string
- Object name. Should be unique in the domain.
- nat
Settings {[key: string]: string} - NAT settings. NAT settings blocks are documented below.
- string[]
- Collection of tag identifiers.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- host_
servers ManagementHost Host Servers Args - 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[Management
Host Interface Args] - Host interfaces. Host interfaces blocks are documented below.
- ipv4_
address str - IPv4 address.
- ipv6_
address str - IPv6 address.
- management_
host_ strid - name str
- Object name. Should be unique in the domain.
- nat_
settings Mapping[str, str] - NAT settings. NAT settings blocks are documented below.
- Sequence[str]
- Collection of tag identifiers.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- host
Servers Property Map - Servers Configuration. Servers Configuration blocks are documented below.
- ignore
Errors 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.
- ignore
Warnings 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.
- management
Host StringId - name String
- Object name. Should be unique in the domain.
- nat
Settings Map<String> - NAT settings. NAT settings blocks are documented below.
- 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.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Host
Servers ManagementHost Host Servers - 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
List<Management
Host Interface> - Host interfaces. Host interfaces blocks are documented below.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Management
Host stringId - Name string
- Object name. Should be unique in the domain.
- Nat
Settings Dictionary<string, string> - NAT settings. NAT settings blocks are documented below.
- List<string>
- Collection of tag identifiers.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Host
Servers ManagementHost Host Servers Args - 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
[]Management
Host Interface Args - Host interfaces. Host interfaces blocks are documented below.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Management
Host stringId - Name string
- Object name. Should be unique in the domain.
- Nat
Settings map[string]string - NAT settings. NAT settings blocks are documented below.
- []string
- Collection of tag identifiers.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- host
Servers ManagementHost Host Servers - Servers Configuration. Servers Configuration blocks are documented below.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- interfaces
List<Management
Host Interface> - Host interfaces. Host interfaces blocks are documented below.
- ipv4Address String
- IPv4 address.
- ipv6Address String
- IPv6 address.
- management
Host StringId - name String
- Object name. Should be unique in the domain.
- nat
Settings Map<String,String> - NAT settings. NAT settings blocks are documented below.
- List<String>
- Collection of tag identifiers.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- host
Servers ManagementHost Host Servers - Servers Configuration. Servers Configuration blocks are documented below.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- interfaces
Management
Host Interface[] - Host interfaces. Host interfaces blocks are documented below.
- ipv4Address string
- IPv4 address.
- ipv6Address string
- IPv6 address.
- management
Host stringId - name string
- Object name. Should be unique in the domain.
- nat
Settings {[key: string]: string} - NAT settings. NAT settings blocks are documented below.
- string[]
- Collection of tag identifiers.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- host_
servers ManagementHost Host Servers Args - 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[Management
Host Interface Args] - Host interfaces. Host interfaces blocks are documented below.
- ipv4_
address str - IPv4 address.
- ipv6_
address str - IPv6 address.
- management_
host_ strid - name str
- Object name. Should be unique in the domain.
- nat_
settings Mapping[str, str] - NAT settings. NAT settings blocks are documented below.
- Sequence[str]
- Collection of tag identifiers.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- host
Servers Property Map - Servers Configuration. Servers Configuration blocks are documented below.
- ignore
Errors 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.
- ignore
Warnings 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.
- management
Host StringId - name String
- Object name. Should be unique in the domain.
- nat
Settings Map<String> - NAT settings. NAT settings blocks are documented below.
- List<String>
- Collection of tag identifiers.
Supporting Types
ManagementHostHostServers, ManagementHostHostServersArgs
- 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 ManagementConfig Host Host Servers Web Server Config - 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 ManagementConfig Host Host Servers Web Server Config - Web Server configuration. Web Server configuration blocks are documented below.
- dns
Server Boolean - Gets True if this server is a DNS Server.
- mail
Server Boolean - Gets True if this server is a Mail Server.
- web
Server Boolean - Gets True if this server is a Web Server.
- web
Server ManagementConfig Host Host Servers Web Server Config - Web Server configuration. Web Server configuration blocks are documented below.
- dns
Server boolean - Gets True if this server is a DNS Server.
- mail
Server boolean - Gets True if this server is a Mail Server.
- web
Server boolean - Gets True if this server is a Web Server.
- web
Server ManagementConfig Host Host Servers Web Server Config - 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_ Managementconfig Host Host Servers Web Server Config - Web Server configuration. Web Server configuration blocks are documented below.
- dns
Server Boolean - Gets True if this server is a DNS Server.
- mail
Server Boolean - Gets True if this server is a Mail Server.
- web
Server Boolean - Gets True if this server is a Web Server.
- web
Server Property MapConfig - Web Server configuration. Web Server configuration blocks are documented below.
ManagementHostHostServersWebServerConfig, ManagementHostHostServersWebServerConfigArgs
- Additional
Ports List<string> - Server additional ports.
- Application
Engines List<string> - Application engines of this web server.
- Listen
Standard boolPort - "Whether server listens to standard port.
- Operating
System string - Operating System.
- Protected
By string - Network object which protects this server identified by the name or UID.
- Additional
Ports []string - Server additional ports.
- Application
Engines []string - Application engines of this web server.
- Listen
Standard boolPort - "Whether server listens to standard port.
- Operating
System string - Operating System.
- Protected
By string - Network object which protects this server identified by the name or UID.
- additional
Ports List<String> - Server additional ports.
- application
Engines List<String> - Application engines of this web server.
- listen
Standard BooleanPort - "Whether server listens to standard port.
- operating
System String - Operating System.
- protected
By String - Network object which protects this server identified by the name or UID.
- additional
Ports string[] - Server additional ports.
- application
Engines string[] - Application engines of this web server.
- listen
Standard booleanPort - "Whether server listens to standard port.
- operating
System string - Operating System.
- protected
By 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_ boolport - "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.
- additional
Ports List<String> - Server additional ports.
- application
Engines List<String> - Application engines of this web server.
- listen
Standard BooleanPort - "Whether server listens to standard port.
- operating
System String - Operating System.
- protected
By 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.
- 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 double - IPv4 network mask length.
- Mask
Length6 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.
- 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 float64 - IPv4 network mask length.
- Mask
Length6 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- mask
Length4 Double - IPv4 network mask length.
- mask
Length6 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.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- mask
Length4 number - IPv4 network mask length.
- mask
Length6 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- mask
Length4 Number - IPv4 network mask length.
- mask
Length6 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.