Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Use this data source to get information on an existing Check Point Address Range.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const addressRange = new checkpoint.ManagementAddressRange("address_range", {
name: "My Address Range",
ipv4AddressFirst: "1.1.1.1",
ipv4AddressLast: "2.2.2.2",
});
const dataAddressRange = checkpoint.getManagementDataAddressRangeOutput({
name: addressRange.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
address_range = checkpoint.ManagementAddressRange("address_range",
name="My Address Range",
ipv4_address_first="1.1.1.1",
ipv4_address_last="2.2.2.2")
data_address_range = checkpoint.get_management_data_address_range_output(name=address_range.name)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
addressRange, err := checkpoint.NewManagementAddressRange(ctx, "address_range", &checkpoint.ManagementAddressRangeArgs{
Name: pulumi.String("My Address Range"),
Ipv4AddressFirst: pulumi.String("1.1.1.1"),
Ipv4AddressLast: pulumi.String("2.2.2.2"),
})
if err != nil {
return err
}
_ = checkpoint.GetManagementDataAddressRangeOutput(ctx, checkpoint.GetManagementDataAddressRangeOutputArgs{
Name: addressRange.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var addressRange = new Checkpoint.ManagementAddressRange("address_range", new()
{
Name = "My Address Range",
Ipv4AddressFirst = "1.1.1.1",
Ipv4AddressLast = "2.2.2.2",
});
var dataAddressRange = Checkpoint.GetManagementDataAddressRange.Invoke(new()
{
Name = addressRange.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementAddressRange;
import com.pulumi.checkpoint.ManagementAddressRangeArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementDataAddressRangeArgs;
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 addressRange = new ManagementAddressRange("addressRange", ManagementAddressRangeArgs.builder()
.name("My Address Range")
.ipv4AddressFirst("1.1.1.1")
.ipv4AddressLast("2.2.2.2")
.build());
final var dataAddressRange = CheckpointFunctions.getManagementDataAddressRange(GetManagementDataAddressRangeArgs.builder()
.name(addressRange.name())
.build());
}
}
resources:
addressRange:
type: checkpoint:ManagementAddressRange
name: address_range
properties:
name: My Address Range
ipv4AddressFirst: 1.1.1.1
ipv4AddressLast: 2.2.2.2
variables:
dataAddressRange:
fn::invoke:
function: checkpoint:getManagementDataAddressRange
arguments:
name: ${addressRange.name}
Using getManagementDataAddressRange
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagementDataAddressRange(args: GetManagementDataAddressRangeArgs, opts?: InvokeOptions): Promise<GetManagementDataAddressRangeResult>
function getManagementDataAddressRangeOutput(args: GetManagementDataAddressRangeOutputArgs, opts?: InvokeOptions): Output<GetManagementDataAddressRangeResult>def get_management_data_address_range(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementDataAddressRangeResult
def get_management_data_address_range_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataAddressRangeResult]func GetManagementDataAddressRange(ctx *Context, args *GetManagementDataAddressRangeArgs, opts ...InvokeOption) (*GetManagementDataAddressRangeResult, error)
func GetManagementDataAddressRangeOutput(ctx *Context, args *GetManagementDataAddressRangeOutputArgs, opts ...InvokeOption) GetManagementDataAddressRangeResultOutput> Note: This function is named GetManagementDataAddressRange in the Go SDK.
public static class GetManagementDataAddressRange
{
public static Task<GetManagementDataAddressRangeResult> InvokeAsync(GetManagementDataAddressRangeArgs args, InvokeOptions? opts = null)
public static Output<GetManagementDataAddressRangeResult> Invoke(GetManagementDataAddressRangeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementDataAddressRangeResult> getManagementDataAddressRange(GetManagementDataAddressRangeArgs args, InvokeOptions options)
public static Output<GetManagementDataAddressRangeResult> getManagementDataAddressRange(GetManagementDataAddressRangeArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementDataAddressRange:getManagementDataAddressRange
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementDataAddressRange Result
The following output properties are available:
- Color string
- Comments string
- Groups List<string>
- Id string
- Ipv4Address
First string - Ipv4Address
Last string - Ipv6Address
First string - Ipv6Address
Last string - Nat
Settings List<GetManagement Data Address Range Nat Setting> - List<string>
- Name string
- Uid string
- Color string
- Comments string
- Groups []string
- Id string
- Ipv4Address
First string - Ipv4Address
Last string - Ipv6Address
First string - Ipv6Address
Last string - Nat
Settings []GetManagement Data Address Range Nat Setting - []string
- Name string
- Uid string
- color String
- comments String
- groups List<String>
- id String
- ipv4Address
First String - ipv4Address
Last String - ipv6Address
First String - ipv6Address
Last String - nat
Settings List<GetManagement Data Address Range Nat Setting> - List<String>
- name String
- uid String
- color string
- comments string
- groups string[]
- id string
- ipv4Address
First string - ipv4Address
Last string - ipv6Address
First string - ipv6Address
Last string - nat
Settings GetManagement Data Address Range Nat Setting[] - string[]
- name string
- uid string
- color str
- comments str
- groups Sequence[str]
- id str
- ipv4_
address_ strfirst - ipv4_
address_ strlast - ipv6_
address_ strfirst - ipv6_
address_ strlast - nat_
settings Sequence[GetManagement Data Address Range Nat Setting] - Sequence[str]
- name str
- uid str
- color String
- comments String
- groups List<String>
- id String
- ipv4Address
First String - ipv4Address
Last String - ipv6Address
First String - ipv6Address
Last String - nat
Settings List<Property Map> - List<String>
- name String
- uid String
Supporting Types
GetManagementDataAddressRangeNatSetting
- Auto
Rule bool - Whether to add automatic address translation rules.
- Hide
Behind string - Hide behind method. This parameter is not required in case "method" parameter is "static".
- Install
On string - Which gateway should apply the NAT translation.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Method string
- NAT translation method.
- Auto
Rule bool - Whether to add automatic address translation rules.
- Hide
Behind string - Hide behind method. This parameter is not required in case "method" parameter is "static".
- Install
On string - Which gateway should apply the NAT translation.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Method string
- NAT translation method.
- auto
Rule Boolean - Whether to add automatic address translation rules.
- hide
Behind String - Hide behind method. This parameter is not required in case "method" parameter is "static".
- install
On String - Which gateway should apply the NAT translation.
- ipv4Address String
- IPv4 address.
- ipv6Address String
- IPv6 address.
- method String
- NAT translation method.
- auto
Rule boolean - Whether to add automatic address translation rules.
- hide
Behind string - Hide behind method. This parameter is not required in case "method" parameter is "static".
- install
On string - Which gateway should apply the NAT translation.
- ipv4Address string
- IPv4 address.
- ipv6Address string
- IPv6 address.
- method string
- NAT translation method.
- auto_
rule bool - Whether to add automatic address translation rules.
- hide_
behind str - Hide behind method. This parameter is not required in case "method" parameter is "static".
- install_
on str - Which gateway should apply the NAT translation.
- ipv4_
address str - IPv4 address.
- ipv6_
address str - IPv6 address.
- method str
- NAT translation method.
- auto
Rule Boolean - Whether to add automatic address translation rules.
- hide
Behind String - Hide behind method. This parameter is not required in case "method" parameter is "static".
- install
On String - Which gateway should apply the NAT translation.
- ipv4Address String
- IPv4 address.
- ipv6Address String
- IPv6 address.
- method String
- NAT translation method.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
