1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaCommandSetBgpExternal
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    Create GaiaCommandSetBgpExternal Resource

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

    Constructor syntax

    new GaiaCommandSetBgpExternal(name: string, args: GaiaCommandSetBgpExternalArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaCommandSetBgpExternal(resource_name: str,
                                  args: GaiaCommandSetBgpExternalArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaCommandSetBgpExternal(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  remote_as: Optional[str] = None,
                                  debug: Optional[bool] = None,
                                  description: Optional[str] = None,
                                  enabled: Optional[bool] = None,
                                  export_routemap_lists: Optional[Sequence[GaiaCommandSetBgpExternalExportRoutemapListArgs]] = None,
                                  gaia_command_set_bgp_external_id: Optional[str] = None,
                                  import_routemap_lists: Optional[Sequence[GaiaCommandSetBgpExternalImportRoutemapListArgs]] = None,
                                  inject_routemap_lists: Optional[Sequence[GaiaCommandSetBgpExternalInjectRoutemapListArgs]] = None,
                                  local_address: Optional[str] = None,
                                  outdelay: Optional[str] = None)
    func NewGaiaCommandSetBgpExternal(ctx *Context, name string, args GaiaCommandSetBgpExternalArgs, opts ...ResourceOption) (*GaiaCommandSetBgpExternal, error)
    public GaiaCommandSetBgpExternal(string name, GaiaCommandSetBgpExternalArgs args, CustomResourceOptions? opts = null)
    public GaiaCommandSetBgpExternal(String name, GaiaCommandSetBgpExternalArgs args)
    public GaiaCommandSetBgpExternal(String name, GaiaCommandSetBgpExternalArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaCommandSetBgpExternal
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiacommandsetbgpexternal" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaCommandSetBgpExternalArgs
    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 GaiaCommandSetBgpExternalArgs
    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 GaiaCommandSetBgpExternalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaCommandSetBgpExternalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaCommandSetBgpExternalArgs
    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 gaiaCommandSetBgpExternalResource = new Checkpoint.GaiaCommandSetBgpExternal("gaiaCommandSetBgpExternalResource", new()
    {
        RemoteAs = "string",
        Debug = false,
        Description = "string",
        Enabled = false,
        ExportRoutemapLists = new[]
        {
            new Checkpoint.Inputs.GaiaCommandSetBgpExternalExportRoutemapListArgs
            {
                ConditionalRoutemap = new Checkpoint.Inputs.GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemapArgs
                {
                    Condition = "string",
                    Name = "string",
                },
                Family = "string",
                Name = "string",
                Preference = 0,
            },
        },
        GaiaCommandSetBgpExternalId = "string",
        ImportRoutemapLists = new[]
        {
            new Checkpoint.Inputs.GaiaCommandSetBgpExternalImportRoutemapListArgs
            {
                Family = "string",
                Name = "string",
                Preference = 0,
            },
        },
        InjectRoutemapLists = new[]
        {
            new Checkpoint.Inputs.GaiaCommandSetBgpExternalInjectRoutemapListArgs
            {
                AnyPassRoutemap = "string",
                Family = "string",
                Name = "string",
                Preference = 0,
            },
        },
        LocalAddress = "string",
        Outdelay = "string",
    });
    
    example, err := checkpoint.NewGaiaCommandSetBgpExternal(ctx, "gaiaCommandSetBgpExternalResource", &checkpoint.GaiaCommandSetBgpExternalArgs{
    	RemoteAs:    pulumi.String("string"),
    	Debug:       pulumi.Bool(false),
    	Description: pulumi.String("string"),
    	Enabled:     pulumi.Bool(false),
    	ExportRoutemapLists: checkpoint.GaiaCommandSetBgpExternalExportRoutemapListArray{
    		&checkpoint.GaiaCommandSetBgpExternalExportRoutemapListArgs{
    			ConditionalRoutemap: &checkpoint.GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemapArgs{
    				Condition: pulumi.String("string"),
    				Name:      pulumi.String("string"),
    			},
    			Family:     pulumi.String("string"),
    			Name:       pulumi.String("string"),
    			Preference: pulumi.Float64(0),
    		},
    	},
    	GaiaCommandSetBgpExternalId: pulumi.String("string"),
    	ImportRoutemapLists: checkpoint.GaiaCommandSetBgpExternalImportRoutemapListArray{
    		&checkpoint.GaiaCommandSetBgpExternalImportRoutemapListArgs{
    			Family:     pulumi.String("string"),
    			Name:       pulumi.String("string"),
    			Preference: pulumi.Float64(0),
    		},
    	},
    	InjectRoutemapLists: checkpoint.GaiaCommandSetBgpExternalInjectRoutemapListArray{
    		&checkpoint.GaiaCommandSetBgpExternalInjectRoutemapListArgs{
    			AnyPassRoutemap: pulumi.String("string"),
    			Family:          pulumi.String("string"),
    			Name:            pulumi.String("string"),
    			Preference:      pulumi.Float64(0),
    		},
    	},
    	LocalAddress: pulumi.String("string"),
    	Outdelay:     pulumi.String("string"),
    })
    
    resource "checkpoint_gaiacommandsetbgpexternal" "gaiaCommandSetBgpExternalResource" {
      remote_as   = "string"
      debug       = false
      description = "string"
      enabled     = false
      export_routemap_lists {
        conditional_routemap = {
          condition = "string"
          name      = "string"
        }
        family     = "string"
        name       = "string"
        preference = 0
      }
      gaia_command_set_bgp_external_id = "string"
      import_routemap_lists {
        family     = "string"
        name       = "string"
        preference = 0
      }
      inject_routemap_lists {
        any_pass_routemap = "string"
        family            = "string"
        name              = "string"
        preference        = 0
      }
      local_address = "string"
      outdelay      = "string"
    }
    
    var gaiaCommandSetBgpExternalResource = new GaiaCommandSetBgpExternal("gaiaCommandSetBgpExternalResource", GaiaCommandSetBgpExternalArgs.builder()
        .remoteAs("string")
        .debug(false)
        .description("string")
        .enabled(false)
        .exportRoutemapLists(GaiaCommandSetBgpExternalExportRoutemapListArgs.builder()
            .conditionalRoutemap(GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemapArgs.builder()
                .condition("string")
                .name("string")
                .build())
            .family("string")
            .name("string")
            .preference(0.0)
            .build())
        .gaiaCommandSetBgpExternalId("string")
        .importRoutemapLists(GaiaCommandSetBgpExternalImportRoutemapListArgs.builder()
            .family("string")
            .name("string")
            .preference(0.0)
            .build())
        .injectRoutemapLists(GaiaCommandSetBgpExternalInjectRoutemapListArgs.builder()
            .anyPassRoutemap("string")
            .family("string")
            .name("string")
            .preference(0.0)
            .build())
        .localAddress("string")
        .outdelay("string")
        .build());
    
    gaia_command_set_bgp_external_resource = checkpoint.GaiaCommandSetBgpExternal("gaiaCommandSetBgpExternalResource",
        remote_as="string",
        debug=False,
        description="string",
        enabled=False,
        export_routemap_lists=[{
            "conditional_routemap": {
                "condition": "string",
                "name": "string",
            },
            "family": "string",
            "name": "string",
            "preference": float(0),
        }],
        gaia_command_set_bgp_external_id="string",
        import_routemap_lists=[{
            "family": "string",
            "name": "string",
            "preference": float(0),
        }],
        inject_routemap_lists=[{
            "any_pass_routemap": "string",
            "family": "string",
            "name": "string",
            "preference": float(0),
        }],
        local_address="string",
        outdelay="string")
    
    const gaiaCommandSetBgpExternalResource = new checkpoint.GaiaCommandSetBgpExternal("gaiaCommandSetBgpExternalResource", {
        remoteAs: "string",
        debug: false,
        description: "string",
        enabled: false,
        exportRoutemapLists: [{
            conditionalRoutemap: {
                condition: "string",
                name: "string",
            },
            family: "string",
            name: "string",
            preference: 0,
        }],
        gaiaCommandSetBgpExternalId: "string",
        importRoutemapLists: [{
            family: "string",
            name: "string",
            preference: 0,
        }],
        injectRoutemapLists: [{
            anyPassRoutemap: "string",
            family: "string",
            name: "string",
            preference: 0,
        }],
        localAddress: "string",
        outdelay: "string",
    });
    
    type: checkpoint:GaiaCommandSetBgpExternal
    properties:
        debug: false
        description: string
        enabled: false
        exportRoutemapLists:
            - conditionalRoutemap:
                condition: string
                name: string
              family: string
              name: string
              preference: 0
        gaiaCommandSetBgpExternalId: string
        importRoutemapLists:
            - family: string
              name: string
              preference: 0
        injectRoutemapLists:
            - anyPassRoutemap: string
              family: string
              name: string
              preference: 0
        localAddress: string
        outdelay: string
        remoteAs: string
    

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

    RemoteAs string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    Debug bool
    Enable debugging for this resource only.
    Description string
    Adds a brief description of the peer group.
    Enabled bool
    Enable/disable the peer group for the specified AS.
    ExportRoutemapLists List<GaiaCommandSetBgpExternalExportRoutemapList>
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    GaiaCommandSetBgpExternalId string
    ImportRoutemapLists List<GaiaCommandSetBgpExternalImportRoutemapList>
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    InjectRoutemapLists List<GaiaCommandSetBgpExternalInjectRoutemapList>
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    LocalAddress string
    Configures the address to be used on the local end of the TCP connection.
    Outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    RemoteAs string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    Debug bool
    Enable debugging for this resource only.
    Description string
    Adds a brief description of the peer group.
    Enabled bool
    Enable/disable the peer group for the specified AS.
    ExportRoutemapLists []GaiaCommandSetBgpExternalExportRoutemapListArgs
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    GaiaCommandSetBgpExternalId string
    ImportRoutemapLists []GaiaCommandSetBgpExternalImportRoutemapListArgs
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    InjectRoutemapLists []GaiaCommandSetBgpExternalInjectRoutemapListArgs
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    LocalAddress string
    Configures the address to be used on the local end of the TCP connection.
    Outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remote_as string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug bool
    Enable debugging for this resource only.
    description string
    Adds a brief description of the peer group.
    enabled bool
    Enable/disable the peer group for the specified AS.
    export_routemap_lists list(object)
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaia_command_set_bgp_external_id string
    import_routemap_lists list(object)
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    inject_routemap_lists list(object)
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    local_address string
    Configures the address to be used on the local end of the TCP connection.
    outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remoteAs String
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug Boolean
    Enable debugging for this resource only.
    description String
    Adds a brief description of the peer group.
    enabled Boolean
    Enable/disable the peer group for the specified AS.
    exportRoutemapLists List<GaiaCommandSetBgpExternalExportRoutemapList>
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaiaCommandSetBgpExternalId String
    importRoutemapLists List<GaiaCommandSetBgpExternalImportRoutemapList>
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    injectRoutemapLists List<GaiaCommandSetBgpExternalInjectRoutemapList>
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    localAddress String
    Configures the address to be used on the local end of the TCP connection.
    outdelay String
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remoteAs string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug boolean
    Enable debugging for this resource only.
    description string
    Adds a brief description of the peer group.
    enabled boolean
    Enable/disable the peer group for the specified AS.
    exportRoutemapLists GaiaCommandSetBgpExternalExportRoutemapList[]
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaiaCommandSetBgpExternalId string
    importRoutemapLists GaiaCommandSetBgpExternalImportRoutemapList[]
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    injectRoutemapLists GaiaCommandSetBgpExternalInjectRoutemapList[]
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    localAddress string
    Configures the address to be used on the local end of the TCP connection.
    outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remote_as str
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug bool
    Enable debugging for this resource only.
    description str
    Adds a brief description of the peer group.
    enabled bool
    Enable/disable the peer group for the specified AS.
    export_routemap_lists Sequence[GaiaCommandSetBgpExternalExportRoutemapListArgs]
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaia_command_set_bgp_external_id str
    import_routemap_lists Sequence[GaiaCommandSetBgpExternalImportRoutemapListArgs]
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    inject_routemap_lists Sequence[GaiaCommandSetBgpExternalInjectRoutemapListArgs]
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    local_address str
    Configures the address to be used on the local end of the TCP connection.
    outdelay str
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remoteAs String
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug Boolean
    Enable debugging for this resource only.
    description String
    Adds a brief description of the peer group.
    enabled Boolean
    Enable/disable the peer group for the specified AS.
    exportRoutemapLists List<Property Map>
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaiaCommandSetBgpExternalId String
    importRoutemapLists List<Property Map>
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    injectRoutemapLists List<Property Map>
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    localAddress String
    Configures the address to be used on the local end of the TCP connection.
    outdelay String
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.

    Outputs

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

    Get an existing GaiaCommandSetBgpExternal 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?: GaiaCommandSetBgpExternalState, opts?: CustomResourceOptions): GaiaCommandSetBgpExternal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            description: Optional[str] = None,
            enabled: Optional[bool] = None,
            export_routemap_lists: Optional[Sequence[GaiaCommandSetBgpExternalExportRoutemapListArgs]] = None,
            gaia_command_set_bgp_external_id: Optional[str] = None,
            import_routemap_lists: Optional[Sequence[GaiaCommandSetBgpExternalImportRoutemapListArgs]] = None,
            inject_routemap_lists: Optional[Sequence[GaiaCommandSetBgpExternalInjectRoutemapListArgs]] = None,
            local_address: Optional[str] = None,
            outdelay: Optional[str] = None,
            remote_as: Optional[str] = None) -> GaiaCommandSetBgpExternal
    func GetGaiaCommandSetBgpExternal(ctx *Context, name string, id IDInput, state *GaiaCommandSetBgpExternalState, opts ...ResourceOption) (*GaiaCommandSetBgpExternal, error)
    public static GaiaCommandSetBgpExternal Get(string name, Input<string> id, GaiaCommandSetBgpExternalState? state, CustomResourceOptions? opts = null)
    public static GaiaCommandSetBgpExternal get(String name, Output<String> id, GaiaCommandSetBgpExternalState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaCommandSetBgpExternal    get:      id: ${id}
    import {
      to = checkpoint_gaiacommandsetbgpexternal.example
      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:
    Debug bool
    Enable debugging for this resource only.
    Description string
    Adds a brief description of the peer group.
    Enabled bool
    Enable/disable the peer group for the specified AS.
    ExportRoutemapLists List<GaiaCommandSetBgpExternalExportRoutemapList>
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    GaiaCommandSetBgpExternalId string
    ImportRoutemapLists List<GaiaCommandSetBgpExternalImportRoutemapList>
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    InjectRoutemapLists List<GaiaCommandSetBgpExternalInjectRoutemapList>
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    LocalAddress string
    Configures the address to be used on the local end of the TCP connection.
    Outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    RemoteAs string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    Debug bool
    Enable debugging for this resource only.
    Description string
    Adds a brief description of the peer group.
    Enabled bool
    Enable/disable the peer group for the specified AS.
    ExportRoutemapLists []GaiaCommandSetBgpExternalExportRoutemapListArgs
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    GaiaCommandSetBgpExternalId string
    ImportRoutemapLists []GaiaCommandSetBgpExternalImportRoutemapListArgs
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    InjectRoutemapLists []GaiaCommandSetBgpExternalInjectRoutemapListArgs
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    LocalAddress string
    Configures the address to be used on the local end of the TCP connection.
    Outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    RemoteAs string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug bool
    Enable debugging for this resource only.
    description string
    Adds a brief description of the peer group.
    enabled bool
    Enable/disable the peer group for the specified AS.
    export_routemap_lists list(object)
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaia_command_set_bgp_external_id string
    import_routemap_lists list(object)
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    inject_routemap_lists list(object)
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    local_address string
    Configures the address to be used on the local end of the TCP connection.
    outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remote_as string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug Boolean
    Enable debugging for this resource only.
    description String
    Adds a brief description of the peer group.
    enabled Boolean
    Enable/disable the peer group for the specified AS.
    exportRoutemapLists List<GaiaCommandSetBgpExternalExportRoutemapList>
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaiaCommandSetBgpExternalId String
    importRoutemapLists List<GaiaCommandSetBgpExternalImportRoutemapList>
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    injectRoutemapLists List<GaiaCommandSetBgpExternalInjectRoutemapList>
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    localAddress String
    Configures the address to be used on the local end of the TCP connection.
    outdelay String
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remoteAs String
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug boolean
    Enable debugging for this resource only.
    description string
    Adds a brief description of the peer group.
    enabled boolean
    Enable/disable the peer group for the specified AS.
    exportRoutemapLists GaiaCommandSetBgpExternalExportRoutemapList[]
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaiaCommandSetBgpExternalId string
    importRoutemapLists GaiaCommandSetBgpExternalImportRoutemapList[]
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    injectRoutemapLists GaiaCommandSetBgpExternalInjectRoutemapList[]
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    localAddress string
    Configures the address to be used on the local end of the TCP connection.
    outdelay string
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remoteAs string
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug bool
    Enable debugging for this resource only.
    description str
    Adds a brief description of the peer group.
    enabled bool
    Enable/disable the peer group for the specified AS.
    export_routemap_lists Sequence[GaiaCommandSetBgpExternalExportRoutemapListArgs]
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaia_command_set_bgp_external_id str
    import_routemap_lists Sequence[GaiaCommandSetBgpExternalImportRoutemapListArgs]
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    inject_routemap_lists Sequence[GaiaCommandSetBgpExternalInjectRoutemapListArgs]
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    local_address str
    Configures the address to be used on the local end of the TCP connection.
    outdelay str
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remote_as str
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535
    debug Boolean
    Enable debugging for this resource only.
    description String
    Adds a brief description of the peer group.
    enabled Boolean
    Enable/disable the peer group for the specified AS.
    exportRoutemapLists List<Property Map>
    Configure export policy for the given BGP peer group or peer. export_routemap_list blocks are documented below.
    gaiaCommandSetBgpExternalId String
    importRoutemapLists List<Property Map>
    Configure import policy for the given BGP peer group. import_routemap_list blocks are documented below.
    injectRoutemapLists List<Property Map>
    Configure conditional route injection for a routemap inject_routemap_list blocks are documented below.
    localAddress String
    Configures the address to be used on the local end of the TCP connection.
    outdelay String
    Specifies the length of time (seconds) that a route must be present in the routing database before it is redistributed to BGP.
    remoteAs String
    The Autonomous System number of the peer group to configure.The value can be one of the following: An integer from 1-4294967295 A float from 0.1-65535.65535

    Supporting Types

    GaiaCommandSetBgpExternalExportRoutemapList, GaiaCommandSetBgpExternalExportRoutemapListArgs

    ConditionalRoutemap GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemap
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    Family string
    Describes which family of routes this routemap will be applied to.
    Name string
    Name of the routemap
    Preference double
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    ConditionalRoutemap GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemap
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    Family string
    Describes which family of routes this routemap will be applied to.
    Name string
    Name of the routemap
    Preference float64
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    conditional_routemap object
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    family string
    Describes which family of routes this routemap will be applied to.
    name string
    Name of the routemap
    preference number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    conditionalRoutemap GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemap
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    family String
    Describes which family of routes this routemap will be applied to.
    name String
    Name of the routemap
    preference Double
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    conditionalRoutemap GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemap
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    family string
    Describes which family of routes this routemap will be applied to.
    name string
    Name of the routemap
    preference number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    conditional_routemap GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemap
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    family str
    Describes which family of routes this routemap will be applied to.
    name str
    Name of the routemap
    preference float
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    conditionalRoutemap Property Map
    Condition to apply to the routemap conditional_routemap blocks are documented below.
    family String
    Describes which family of routes this routemap will be applied to.
    name String
    Name of the routemap
    preference Number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.

    GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemap, GaiaCommandSetBgpExternalExportRoutemapListConditionalRoutemapArgs

    Condition string
    The condition can be any-pass or no-pass
    Name string
    The name of the routemap condition
    Condition string
    The condition can be any-pass or no-pass
    Name string
    The name of the routemap condition
    condition string
    The condition can be any-pass or no-pass
    name string
    The name of the routemap condition
    condition String
    The condition can be any-pass or no-pass
    name String
    The name of the routemap condition
    condition string
    The condition can be any-pass or no-pass
    name string
    The name of the routemap condition
    condition str
    The condition can be any-pass or no-pass
    name str
    The name of the routemap condition
    condition String
    The condition can be any-pass or no-pass
    name String
    The name of the routemap condition

    GaiaCommandSetBgpExternalImportRoutemapList, GaiaCommandSetBgpExternalImportRoutemapListArgs

    Family string
    Describes which family of routes this routemap will be applied to.
    Name string
    Name of the routemap
    Preference double
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    Family string
    Describes which family of routes this routemap will be applied to.
    Name string
    Name of the routemap
    Preference float64
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    family string
    Describes which family of routes this routemap will be applied to.
    name string
    Name of the routemap
    preference number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    family String
    Describes which family of routes this routemap will be applied to.
    name String
    Name of the routemap
    preference Double
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    family string
    Describes which family of routes this routemap will be applied to.
    name string
    Name of the routemap
    preference number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    family str
    Describes which family of routes this routemap will be applied to.
    name str
    Name of the routemap
    preference float
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    family String
    Describes which family of routes this routemap will be applied to.
    name String
    Name of the routemap
    preference Number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.

    GaiaCommandSetBgpExternalInjectRoutemapList, GaiaCommandSetBgpExternalInjectRoutemapListArgs

    AnyPassRoutemap string
    The name of the any-pass-routemap that will be the condition for injection
    Family string
    Describes which family of routes this routemap will be applied to.
    Name string
    The name of the inject routemap
    Preference double
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    AnyPassRoutemap string
    The name of the any-pass-routemap that will be the condition for injection
    Family string
    Describes which family of routes this routemap will be applied to.
    Name string
    The name of the inject routemap
    Preference float64
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    any_pass_routemap string
    The name of the any-pass-routemap that will be the condition for injection
    family string
    Describes which family of routes this routemap will be applied to.
    name string
    The name of the inject routemap
    preference number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    anyPassRoutemap String
    The name of the any-pass-routemap that will be the condition for injection
    family String
    Describes which family of routes this routemap will be applied to.
    name String
    The name of the inject routemap
    preference Double
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    anyPassRoutemap string
    The name of the any-pass-routemap that will be the condition for injection
    family string
    Describes which family of routes this routemap will be applied to.
    name string
    The name of the inject routemap
    preference number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    any_pass_routemap str
    The name of the any-pass-routemap that will be the condition for injection
    family str
    Describes which family of routes this routemap will be applied to.
    name str
    The name of the inject routemap
    preference float
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.
    anyPassRoutemap String
    The name of the any-pass-routemap that will be the condition for injection
    family String
    Describes which family of routes this routemap will be applied to.
    name String
    The name of the inject routemap
    preference Number
    Preference for the routemap. Routemaps are evaluated in order of increasing preference value.

    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.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial