1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementAciDataCenterServer
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementAciDataCenterServer

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    This resource allows you to execute Check Point Cisco APIC Data Center Server.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const testAci = new checkpoint.ManagementAciDataCenterServer("testAci", {
        password: "PASSWORD",
        urls: [
            "url1",
            "url2",
        ],
        username: "USERNAME",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    test_aci = checkpoint.ManagementAciDataCenterServer("testAci",
        password="PASSWORD",
        urls=[
            "url1",
            "url2",
        ],
        username="USERNAME")
    
    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.NewManagementAciDataCenterServer(ctx, "testAci", &checkpoint.ManagementAciDataCenterServerArgs{
    			Password: pulumi.String("PASSWORD"),
    			Urls: pulumi.StringArray{
    				pulumi.String("url1"),
    				pulumi.String("url2"),
    			},
    			Username: pulumi.String("USERNAME"),
    		})
    		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 testAci = new Checkpoint.ManagementAciDataCenterServer("testAci", new()
        {
            Password = "PASSWORD",
            Urls = new[]
            {
                "url1",
                "url2",
            },
            Username = "USERNAME",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementAciDataCenterServer;
    import com.pulumi.checkpoint.ManagementAciDataCenterServerArgs;
    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 testAci = new ManagementAciDataCenterServer("testAci", ManagementAciDataCenterServerArgs.builder()
                .password("PASSWORD")
                .urls(            
                    "url1",
                    "url2")
                .username("USERNAME")
                .build());
    
        }
    }
    
    resources:
      testAci:
        type: checkpoint:ManagementAciDataCenterServer
        properties:
          password: PASSWORD
          urls:
            - url1
            - url2
          username: USERNAME
    

    Create ManagementAciDataCenterServer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ManagementAciDataCenterServer(name: string, args: ManagementAciDataCenterServerArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementAciDataCenterServer(resource_name: str,
                                      args: ManagementAciDataCenterServerArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementAciDataCenterServer(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      urls: Optional[Sequence[str]] = None,
                                      username: Optional[str] = None,
                                      name: Optional[str] = None,
                                      ignore_errors: Optional[bool] = None,
                                      ignore_warnings: Optional[bool] = None,
                                      management_aci_data_center_server_id: Optional[str] = None,
                                      certificate_fingerprint: Optional[str] = None,
                                      password: Optional[str] = None,
                                      password_base64: Optional[str] = None,
                                      tags: Optional[Sequence[str]] = None,
                                      unsafe_auto_accept: Optional[bool] = None,
                                      comments: Optional[str] = None,
                                      color: Optional[str] = None)
    func NewManagementAciDataCenterServer(ctx *Context, name string, args ManagementAciDataCenterServerArgs, opts ...ResourceOption) (*ManagementAciDataCenterServer, error)
    public ManagementAciDataCenterServer(string name, ManagementAciDataCenterServerArgs args, CustomResourceOptions? opts = null)
    public ManagementAciDataCenterServer(String name, ManagementAciDataCenterServerArgs args)
    public ManagementAciDataCenterServer(String name, ManagementAciDataCenterServerArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementAciDataCenterServer
    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 ManagementAciDataCenterServerArgs
    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 ManagementAciDataCenterServerArgs
    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 ManagementAciDataCenterServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementAciDataCenterServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementAciDataCenterServerArgs
    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 managementAciDataCenterServerResource = new Checkpoint.ManagementAciDataCenterServer("managementAciDataCenterServerResource", new()
    {
        Urls = new[]
        {
            "string",
        },
        Username = "string",
        Name = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementAciDataCenterServerId = "string",
        CertificateFingerprint = "string",
        Password = "string",
        PasswordBase64 = "string",
        Tags = new[]
        {
            "string",
        },
        UnsafeAutoAccept = false,
        Comments = "string",
        Color = "string",
    });
    
    example, err := checkpoint.NewManagementAciDataCenterServer(ctx, "managementAciDataCenterServerResource", &checkpoint.ManagementAciDataCenterServerArgs{
    Urls: pulumi.StringArray{
    pulumi.String("string"),
    },
    Username: pulumi.String("string"),
    Name: pulumi.String("string"),
    IgnoreErrors: pulumi.Bool(false),
    IgnoreWarnings: pulumi.Bool(false),
    ManagementAciDataCenterServerId: pulumi.String("string"),
    CertificateFingerprint: pulumi.String("string"),
    Password: pulumi.String("string"),
    PasswordBase64: pulumi.String("string"),
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    UnsafeAutoAccept: pulumi.Bool(false),
    Comments: pulumi.String("string"),
    Color: pulumi.String("string"),
    })
    
    var managementAciDataCenterServerResource = new ManagementAciDataCenterServer("managementAciDataCenterServerResource", ManagementAciDataCenterServerArgs.builder()
        .urls("string")
        .username("string")
        .name("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementAciDataCenterServerId("string")
        .certificateFingerprint("string")
        .password("string")
        .passwordBase64("string")
        .tags("string")
        .unsafeAutoAccept(false)
        .comments("string")
        .color("string")
        .build());
    
    management_aci_data_center_server_resource = checkpoint.ManagementAciDataCenterServer("managementAciDataCenterServerResource",
        urls=["string"],
        username="string",
        name="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_aci_data_center_server_id="string",
        certificate_fingerprint="string",
        password="string",
        password_base64="string",
        tags=["string"],
        unsafe_auto_accept=False,
        comments="string",
        color="string")
    
    const managementAciDataCenterServerResource = new checkpoint.ManagementAciDataCenterServer("managementAciDataCenterServerResource", {
        urls: ["string"],
        username: "string",
        name: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementAciDataCenterServerId: "string",
        certificateFingerprint: "string",
        password: "string",
        passwordBase64: "string",
        tags: ["string"],
        unsafeAutoAccept: false,
        comments: "string",
        color: "string",
    });
    
    type: checkpoint:ManagementAciDataCenterServer
    properties:
        certificateFingerprint: string
        color: string
        comments: string
        ignoreErrors: false
        ignoreWarnings: false
        managementAciDataCenterServerId: string
        name: string
        password: string
        passwordBase64: string
        tags:
            - string
        unsafeAutoAccept: false
        urls:
            - string
        username: string
    

    ManagementAciDataCenterServer 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 ManagementAciDataCenterServer resource accepts the following input properties:

    Urls List<string>
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    Username string
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors 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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementAciDataCenterServerId string
    Name string
    Object name.
    Password string
    Password of the Cisco APIC server.
    PasswordBase64 string
    Password of the Cisco APIC server encoded in Base64.
    Tags List<string>
    Collection of tag identifiers. tags blocks are documented below.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    Urls []string
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    Username string
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors 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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementAciDataCenterServerId string
    Name string
    Object name.
    Password string
    Password of the Cisco APIC server.
    PasswordBase64 string
    Password of the Cisco APIC server encoded in Base64.
    Tags []string
    Collection of tag identifiers. tags blocks are documented below.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls List<String>
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username String
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors 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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementAciDataCenterServerId String
    name String
    Object name.
    password String
    Password of the Cisco APIC server.
    passwordBase64 String
    Password of the Cisco APIC server encoded in Base64.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls string[]
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username string
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors 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.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementAciDataCenterServerId string
    name string
    Object name.
    password string
    Password of the Cisco APIC server.
    passwordBase64 string
    Password of the Cisco APIC server encoded in Base64.
    tags string[]
    Collection of tag identifiers. tags blocks are documented below.
    unsafeAutoAccept boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls Sequence[str]
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username str
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificate_fingerprint str
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    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_aci_data_center_server_id str
    name str
    Object name.
    password str
    Password of the Cisco APIC server.
    password_base64 str
    Password of the Cisco APIC server encoded in Base64.
    tags Sequence[str]
    Collection of tag identifiers. tags blocks are documented below.
    unsafe_auto_accept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls List<String>
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username String
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors 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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementAciDataCenterServerId String
    name String
    Object name.
    password String
    Password of the Cisco APIC server.
    passwordBase64 String
    Password of the Cisco APIC server encoded in Base64.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementAciDataCenterServer 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 ManagementAciDataCenterServer Resource

    Get an existing ManagementAciDataCenterServer 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?: ManagementAciDataCenterServerState, opts?: CustomResourceOptions): ManagementAciDataCenterServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            certificate_fingerprint: Optional[str] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_aci_data_center_server_id: Optional[str] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            password_base64: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            unsafe_auto_accept: Optional[bool] = None,
            urls: Optional[Sequence[str]] = None,
            username: Optional[str] = None) -> ManagementAciDataCenterServer
    func GetManagementAciDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementAciDataCenterServerState, opts ...ResourceOption) (*ManagementAciDataCenterServer, error)
    public static ManagementAciDataCenterServer Get(string name, Input<string> id, ManagementAciDataCenterServerState? state, CustomResourceOptions? opts = null)
    public static ManagementAciDataCenterServer get(String name, Output<String> id, ManagementAciDataCenterServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementAciDataCenterServer    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.
    The following state arguments are supported:
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors 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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementAciDataCenterServerId string
    Name string
    Object name.
    Password string
    Password of the Cisco APIC server.
    PasswordBase64 string
    Password of the Cisco APIC server encoded in Base64.
    Tags List<string>
    Collection of tag identifiers. tags blocks are documented below.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    Urls List<string>
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    Username string
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors 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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementAciDataCenterServerId string
    Name string
    Object name.
    Password string
    Password of the Cisco APIC server.
    PasswordBase64 string
    Password of the Cisco APIC server encoded in Base64.
    Tags []string
    Collection of tag identifiers. tags blocks are documented below.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    Urls []string
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    Username string
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors 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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementAciDataCenterServerId String
    name String
    Object name.
    password String
    Password of the Cisco APIC server.
    passwordBase64 String
    Password of the Cisco APIC server encoded in Base64.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls List<String>
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username String
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors 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.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementAciDataCenterServerId string
    name string
    Object name.
    password string
    Password of the Cisco APIC server.
    passwordBase64 string
    Password of the Cisco APIC server encoded in Base64.
    tags string[]
    Collection of tag identifiers. tags blocks are documented below.
    unsafeAutoAccept boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls string[]
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username string
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificate_fingerprint str
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    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_aci_data_center_server_id str
    name str
    Object name.
    password str
    Password of the Cisco APIC server.
    password_base64 str
    Password of the Cisco APIC server encoded in Base64.
    tags Sequence[str]
    Collection of tag identifiers. tags blocks are documented below.
    unsafe_auto_accept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls Sequence[str]
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username str
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors 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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementAciDataCenterServerId String
    name String
    Object name.
    password String
    Password of the Cisco APIC server.
    passwordBase64 String
    Password of the Cisco APIC server encoded in Base64.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    urls List<String>
    Address of APIC cluster members. Example: http(s)://<host1 ip/url>.
    username String
    User ID of the Cisco APIC server. When using Login Domains use the following syntax:apic:<username>.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw