checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
checkpoint.getManagementSecuremoteDnsServer
Explore with Pulumi AI
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
Use this data source to get information on an existing SecurRemote DNS Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const dataSecuremoteDnsServer = checkpoint.getManagementSecuremoteDnsServer({
name: "TestSecuRemoteDNSSever",
});
import pulumi
import pulumi_checkpoint as checkpoint
data_securemote_dns_server = checkpoint.get_management_securemote_dns_server(name="TestSecuRemoteDNSSever")
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.LookupManagementSecuremoteDnsServer(ctx, &checkpoint.LookupManagementSecuremoteDnsServerArgs{
Name: pulumi.StringRef("TestSecuRemoteDNSSever"),
}, nil)
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 dataSecuremoteDnsServer = Checkpoint.GetManagementSecuremoteDnsServer.Invoke(new()
{
Name = "TestSecuRemoteDNSSever",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementSecuremoteDnsServerArgs;
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) {
final var dataSecuremoteDnsServer = CheckpointFunctions.getManagementSecuremoteDnsServer(GetManagementSecuremoteDnsServerArgs.builder()
.name("TestSecuRemoteDNSSever")
.build());
}
}
variables:
dataSecuremoteDnsServer:
fn::invoke:
function: checkpoint:getManagementSecuremoteDnsServer
arguments:
name: TestSecuRemoteDNSSever
Using getManagementSecuremoteDnsServer
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 getManagementSecuremoteDnsServer(args: GetManagementSecuremoteDnsServerArgs, opts?: InvokeOptions): Promise<GetManagementSecuremoteDnsServerResult>
function getManagementSecuremoteDnsServerOutput(args: GetManagementSecuremoteDnsServerOutputArgs, opts?: InvokeOptions): Output<GetManagementSecuremoteDnsServerResult>
def get_management_securemote_dns_server(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementSecuremoteDnsServerResult
def get_management_securemote_dns_server_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementSecuremoteDnsServerResult]
func LookupManagementSecuremoteDnsServer(ctx *Context, args *LookupManagementSecuremoteDnsServerArgs, opts ...InvokeOption) (*LookupManagementSecuremoteDnsServerResult, error)
func LookupManagementSecuremoteDnsServerOutput(ctx *Context, args *LookupManagementSecuremoteDnsServerOutputArgs, opts ...InvokeOption) LookupManagementSecuremoteDnsServerResultOutput
> Note: This function is named LookupManagementSecuremoteDnsServer
in the Go SDK.
public static class GetManagementSecuremoteDnsServer
{
public static Task<GetManagementSecuremoteDnsServerResult> InvokeAsync(GetManagementSecuremoteDnsServerArgs args, InvokeOptions? opts = null)
public static Output<GetManagementSecuremoteDnsServerResult> Invoke(GetManagementSecuremoteDnsServerInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagementSecuremoteDnsServerResult> getManagementSecuremoteDnsServer(GetManagementSecuremoteDnsServerArgs args, InvokeOptions options)
public static Output<GetManagementSecuremoteDnsServerResult> getManagementSecuremoteDnsServer(GetManagementSecuremoteDnsServerArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementSecuremoteDnsServer:getManagementSecuremoteDnsServer
arguments:
# arguments dictionary
The following arguments are supported:
getManagementSecuremoteDnsServer Result
The following output properties are available:
Supporting Types
GetManagementSecuremoteDnsServerDomain
- Domain
Suffix string - DNS Domain suffix.
- Maximum
Prefix doubleLabel Count - Maximum number of matching labels preceding the suffix.
- Domain
Suffix string - DNS Domain suffix.
- Maximum
Prefix float64Label Count - Maximum number of matching labels preceding the suffix.
- domain
Suffix String - DNS Domain suffix.
- maximum
Prefix DoubleLabel Count - Maximum number of matching labels preceding the suffix.
- domain
Suffix string - DNS Domain suffix.
- maximum
Prefix numberLabel Count - Maximum number of matching labels preceding the suffix.
- domain_
suffix str - DNS Domain suffix.
- maximum_
prefix_ floatlabel_ count - Maximum number of matching labels preceding the suffix.
- domain
Suffix String - DNS Domain suffix.
- maximum
Prefix NumberLabel Count - Maximum number of matching labels preceding the suffix.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw