checkpoint.ManagementIfMapServer
Explore with Pulumi AI
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.
- Monitored
Ips List<ManagementIf Map Server Monitored Ip> - IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
- Authentication
Management
If Map Server Authentication - 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.
- 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 stringMap Server Id - Name string
- Object name.
- Path string
- N/A
- Port double
- IF-MAP server port number.
- Query
Whole boolRanges - Indicate whether to query whole ranges instead of single IP.
- 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.
- Monitored
Ips []ManagementIf Map Server Monitored Ip Args - IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
- Authentication
Management
If Map Server Authentication Args - 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.
- 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 stringMap Server Id - Name string
- Object name.
- Path string
- N/A
- Port float64
- IF-MAP server port number.
- Query
Whole boolRanges - Indicate whether to query whole ranges instead of single IP.
- []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.
- monitored
Ips List<ManagementIf Map Server Monitored Ip> - IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
- authentication
Management
If Map Server Authentication - 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.
- 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.
- management
If StringMap Server Id - name String
- Object name.
- path String
- N/A
- port Double
- IF-MAP server port number.
- query
Whole BooleanRanges - Indicate whether to query whole ranges instead of single IP.
- 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.
- monitored
Ips ManagementIf Map Server Monitored Ip[] - IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
- authentication
Management
If Map Server Authentication - 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.
- 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.
- management
If stringMap Server Id - name string
- Object name.
- path string
- N/A
- port number
- IF-MAP server port number.
- query
Whole booleanRanges - Indicate whether to query whole ranges instead of single IP.
- 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[ManagementIf Map Server Monitored Ip Args] - IP ranges to be monitored by the IF-MAP client. monitored_ips blocks are documented below.
- authentication
Management
If Map Server Authentication Args - 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_ strmap_ server_ id - name str
- Object name.
- path str
- N/A
- port float
- IF-MAP server port number.
- query_
whole_ boolranges - Indicate whether to query whole ranges instead of single IP.
- 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.
- monitored
Ips 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.
- 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.
- management
If StringMap Server Id - name String
- Object name.
- path String
- N/A
- port Number
- IF-MAP server port number.
- query
Whole BooleanRanges - Indicate whether to query whole ranges instead of single IP.
- 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.
- Authentication
Management
If Map Server Authentication - 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.
- 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 stringMap Server Id - Monitored
Ips List<ManagementIf Map Server Monitored Ip> - 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.
- Query
Whole boolRanges - Indicate whether to query whole ranges instead of single IP.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Version string
- IF-MAP version.
- Authentication
Management
If Map Server Authentication Args - 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.
- 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 stringMap Server Id - Monitored
Ips []ManagementIf Map Server Monitored Ip Args - 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.
- Query
Whole boolRanges - Indicate whether to query whole ranges instead of single IP.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Version string
- IF-MAP version.
- authentication
Management
If Map Server Authentication - 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.
- 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.
- management
If StringMap Server Id - monitored
Ips List<ManagementIf Map Server Monitored Ip> - 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.
- query
Whole BooleanRanges - Indicate whether to query whole ranges instead of single IP.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- version String
- IF-MAP version.
- authentication
Management
If Map Server Authentication - 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.
- 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.
- management
If stringMap Server Id - monitored
Ips ManagementIf Map Server Monitored Ip[] - 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.
- query
Whole booleanRanges - Indicate whether to query whole ranges instead of single IP.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- version string
- IF-MAP version.
- authentication
Management
If Map Server Authentication Args - 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_ strmap_ server_ id - monitored_
ips Sequence[ManagementIf Map Server Monitored Ip Args] - 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_ boolranges - Indicate whether to query whole ranges instead of single IP.
- 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.
- 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.
- management
If StringMap Server Id - monitored
Ips 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.
- query
Whole BooleanRanges - Indicate whether to query whole ranges instead of single IP.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- version String
- IF-MAP version.
Supporting Types
ManagementIfMapServerAuthentication, ManagementIfMapServerAuthenticationArgs
- Authentication
Method 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 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 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 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'.
- authentication
Method 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
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.