1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. getManagementServicenowCmdbDataCenterServer
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
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 dictionary
    data "checkpoint_get_management_servicenow_cmdb_data_center_server" "name" {
        # arguments
    }

    The following arguments are supported:

    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    id str
    name str
    Object name.
    uid str
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.

    getManagementServicenowCmdbDataCenterServer Result

    The following output properties are available:

    CertificateFingerprint string
    Color string
    Comments string
    Hostname string
    Id string
    Tags List<string>
    UnsafeAutoAccept bool
    Username string
    Name string
    Uid string
    CertificateFingerprint string
    Color string
    Comments string
    Hostname string
    Id string
    Tags []string
    UnsafeAutoAccept bool
    Username string
    Name string
    Uid string
    certificate_fingerprint string
    color string
    comments string
    hostname string
    id string
    tags list(string)
    unsafe_auto_accept bool
    username string
    name string
    uid string
    certificateFingerprint String
    color String
    comments String
    hostname String
    id String
    tags List<String>
    unsafeAutoAccept Boolean
    username String
    name String
    uid String
    certificateFingerprint string
    color string
    comments string
    hostname string
    id string
    tags string[]
    unsafeAutoAccept boolean
    username string
    name string
    uid string
    certificateFingerprint String
    color String
    comments String
    hostname String
    id String
    tags List<String>
    unsafeAutoAccept Boolean
    username String
    name String
    uid String

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.3.0
    published on Thursday, Jul 30, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial