Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
Use this data source to get information on an existing Check Point ServiceNow CMDB Data Center Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const testServicenowCmdb = new checkpoint.ManagementServicenowCmdbDataCenterServer("testServicenowCmdb", {
name: "MY-SERVICENOW-CMDB",
hostname: "instance.service-now.com",
username: "admin",
password: "MY-PASSWORD",
});
const dataServicenowCmdbDataCenterServer = checkpoint.getManagementServicenowCmdbDataCenterServerOutput({
name: testServicenowCmdb.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
test_servicenow_cmdb = checkpoint.ManagementServicenowCmdbDataCenterServer("testServicenowCmdb",
name="MY-SERVICENOW-CMDB",
hostname="instance.service-now.com",
username="admin",
password="MY-PASSWORD")
data_servicenow_cmdb_data_center_server = checkpoint.get_management_servicenow_cmdb_data_center_server_output(name=test_servicenow_cmdb.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 {
testServicenowCmdb, err := checkpoint.NewManagementServicenowCmdbDataCenterServer(ctx, "testServicenowCmdb", &checkpoint.ManagementServicenowCmdbDataCenterServerArgs{
Name: pulumi.String("MY-SERVICENOW-CMDB"),
Hostname: pulumi.String("instance.service-now.com"),
Username: pulumi.String("admin"),
Password: pulumi.String("MY-PASSWORD"),
})
if err != nil {
return err
}
_ = checkpoint.LookupManagementServicenowCmdbDataCenterServerOutput(ctx, checkpoint.GetManagementServicenowCmdbDataCenterServerOutputArgs{
Name: testServicenowCmdb.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var testServicenowCmdb = new Checkpoint.ManagementServicenowCmdbDataCenterServer("testServicenowCmdb", new()
{
Name = "MY-SERVICENOW-CMDB",
Hostname = "instance.service-now.com",
Username = "admin",
Password = "MY-PASSWORD",
});
var dataServicenowCmdbDataCenterServer = Checkpoint.GetManagementServicenowCmdbDataCenterServer.Invoke(new()
{
Name = testServicenowCmdb.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementServicenowCmdbDataCenterServer;
import com.pulumi.checkpoint.ManagementServicenowCmdbDataCenterServerArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementServicenowCmdbDataCenterServerArgs;
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 testServicenowCmdb = new ManagementServicenowCmdbDataCenterServer("testServicenowCmdb", ManagementServicenowCmdbDataCenterServerArgs.builder()
.name("MY-SERVICENOW-CMDB")
.hostname("instance.service-now.com")
.username("admin")
.password("MY-PASSWORD")
.build());
final var dataServicenowCmdbDataCenterServer = CheckpointFunctions.getManagementServicenowCmdbDataCenterServer(GetManagementServicenowCmdbDataCenterServerArgs.builder()
.name(testServicenowCmdb.name())
.build());
}
}
resources:
testServicenowCmdb:
type: checkpoint:ManagementServicenowCmdbDataCenterServer
properties:
name: MY-SERVICENOW-CMDB
hostname: instance.service-now.com
username: admin
password: MY-PASSWORD
variables:
dataServicenowCmdbDataCenterServer:
fn::invoke:
function: checkpoint:getManagementServicenowCmdbDataCenterServer
arguments:
name: ${testServicenowCmdb.name}
Example coming soon!
Using getManagementServicenowCmdbDataCenterServer
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 getManagementServicenowCmdbDataCenterServer(args: GetManagementServicenowCmdbDataCenterServerArgs, opts?: InvokeOptions): Promise<GetManagementServicenowCmdbDataCenterServerResult>
function getManagementServicenowCmdbDataCenterServerOutput(args: GetManagementServicenowCmdbDataCenterServerOutputArgs, opts?: InvokeOptions): Output<GetManagementServicenowCmdbDataCenterServerResult>def get_management_servicenow_cmdb_data_center_server(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementServicenowCmdbDataCenterServerResult
def get_management_servicenow_cmdb_data_center_server_output(id: pulumi.Input[Optional[str]] = None,
name: pulumi.Input[Optional[str]] = None,
uid: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementServicenowCmdbDataCenterServerResult]func LookupManagementServicenowCmdbDataCenterServer(ctx *Context, args *LookupManagementServicenowCmdbDataCenterServerArgs, opts ...InvokeOption) (*LookupManagementServicenowCmdbDataCenterServerResult, error)
func LookupManagementServicenowCmdbDataCenterServerOutput(ctx *Context, args *LookupManagementServicenowCmdbDataCenterServerOutputArgs, opts ...InvokeOption) LookupManagementServicenowCmdbDataCenterServerResultOutput> Note: This function is named LookupManagementServicenowCmdbDataCenterServer in the Go SDK.
public static class GetManagementServicenowCmdbDataCenterServer
{
public static Task<GetManagementServicenowCmdbDataCenterServerResult> InvokeAsync(GetManagementServicenowCmdbDataCenterServerArgs args, InvokeOptions? opts = null)
public static Output<GetManagementServicenowCmdbDataCenterServerResult> Invoke(GetManagementServicenowCmdbDataCenterServerInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementServicenowCmdbDataCenterServerResult> getManagementServicenowCmdbDataCenterServer(GetManagementServicenowCmdbDataCenterServerArgs args, InvokeOptions options)
public static Output<GetManagementServicenowCmdbDataCenterServerResult> getManagementServicenowCmdbDataCenterServer(GetManagementServicenowCmdbDataCenterServerArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementServicenowCmdbDataCenterServer:getManagementServicenowCmdbDataCenterServer
arguments:
# arguments dictionarydata "checkpoint_get_management_servicenow_cmdb_data_center_server" "name" {
# arguments
}The following arguments are supported:
getManagementServicenowCmdbDataCenterServer Result
The following output properties are available:
- Certificate
Fingerprint string - Color string
- Comments string
- Hostname string
- Id string
- List<string>
- Unsafe
Auto boolAccept - Username string
- Name string
- Uid string
- Certificate
Fingerprint string - Color string
- Comments string
- Hostname string
- Id string
- []string
- Unsafe
Auto boolAccept - Username string
- Name string
- Uid string
- certificate_
fingerprint string - color string
- comments string
- hostname string
- id string
- list(string)
- unsafe_
auto_ boolaccept - username string
- name string
- uid string
- certificate
Fingerprint String - color String
- comments String
- hostname String
- id String
- List<String>
- unsafe
Auto BooleanAccept - username String
- name String
- uid String
- certificate
Fingerprint string - color string
- comments string
- hostname string
- id string
- string[]
- unsafe
Auto booleanAccept - username string
- name string
- uid string
- certificate_
fingerprint str - color str
- comments str
- hostname str
- id str
- Sequence[str]
- unsafe_
auto_ boolaccept - username str
- name str
- uid str
- certificate
Fingerprint String - color String
- comments String
- hostname String
- id String
- List<String>
- unsafe
Auto BooleanAccept - username String
- name String
- uid String
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw