1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaCommandSetBgp
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 GaiaCommandSetBgp Resource

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

    Constructor syntax

    new GaiaCommandSetBgp(name: string, args?: GaiaCommandSetBgpArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaCommandSetBgp(resource_name: str,
                          args: Optional[GaiaCommandSetBgpArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaCommandSetBgp(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          as_: Optional[str] = None,
                          cluster_id: Optional[str] = None,
                          confederation: Optional[GaiaCommandSetBgpConfederationArgs] = None,
                          dampening: Optional[GaiaCommandSetBgpDampeningArgs] = None,
                          debug: Optional[bool] = None,
                          default_med: Optional[str] = None,
                          default_route_gateway: Optional[str] = None,
                          enable_communities: Optional[bool] = None,
                          enable_ecmp: Optional[bool] = None,
                          enable_synchronization: Optional[bool] = None,
                          gaia_command_set_bgp_id: Optional[str] = None,
                          graceful_restart: Optional[GaiaCommandSetBgpGracefulRestartArgs] = None,
                          ping: Optional[GaiaCommandSetBgpPingArgs] = None,
                          routing_domain: Optional[GaiaCommandSetBgpRoutingDomainArgs] = None)
    func NewGaiaCommandSetBgp(ctx *Context, name string, args *GaiaCommandSetBgpArgs, opts ...ResourceOption) (*GaiaCommandSetBgp, error)
    public GaiaCommandSetBgp(string name, GaiaCommandSetBgpArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaCommandSetBgp(String name, GaiaCommandSetBgpArgs args)
    public GaiaCommandSetBgp(String name, GaiaCommandSetBgpArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaCommandSetBgp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiacommandsetbgp" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaCommandSetBgpArgs
    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 GaiaCommandSetBgpArgs
    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 GaiaCommandSetBgpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaCommandSetBgpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaCommandSetBgpArgs
    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 gaiaCommandSetBgpResource = new Checkpoint.GaiaCommandSetBgp("gaiaCommandSetBgpResource", new()
    {
        As = "string",
        ClusterId = "string",
        Confederation = new Checkpoint.Inputs.GaiaCommandSetBgpConfederationArgs
        {
            AspathLoopsPermitted = "string",
            Identifier = "string",
        },
        Dampening = new Checkpoint.Inputs.GaiaCommandSetBgpDampeningArgs
        {
            Enabled = false,
            KeepHistory = "string",
            MaxFlap = "string",
            ReachableDecay = "string",
            ReuseBelow = "string",
            SuppressAbove = "string",
            UnreachableDecay = "string",
        },
        Debug = false,
        DefaultMed = "string",
        DefaultRouteGateway = "string",
        EnableCommunities = false,
        EnableEcmp = false,
        EnableSynchronization = false,
        GaiaCommandSetBgpId = "string",
        GracefulRestart = new Checkpoint.Inputs.GaiaCommandSetBgpGracefulRestartArgs
        {
            RestartTime = "string",
            SelectionDeferralTime = "string",
        },
        Ping = new Checkpoint.Inputs.GaiaCommandSetBgpPingArgs
        {
            Count = "string",
            Interval = "string",
        },
        RoutingDomain = new Checkpoint.Inputs.GaiaCommandSetBgpRoutingDomainArgs
        {
            AspathLoopsPermitted = "string",
            Identifier = "string",
        },
    });
    
    example, err := checkpoint.NewGaiaCommandSetBgp(ctx, "gaiaCommandSetBgpResource", &checkpoint.GaiaCommandSetBgpArgs{
    	As:        pulumi.String("string"),
    	ClusterId: pulumi.String("string"),
    	Confederation: &checkpoint.GaiaCommandSetBgpConfederationTypeArgs{
    		AspathLoopsPermitted: pulumi.String("string"),
    		Identifier:           pulumi.String("string"),
    	},
    	Dampening: &checkpoint.GaiaCommandSetBgpDampeningArgs{
    		Enabled:          pulumi.Bool(false),
    		KeepHistory:      pulumi.String("string"),
    		MaxFlap:          pulumi.String("string"),
    		ReachableDecay:   pulumi.String("string"),
    		ReuseBelow:       pulumi.String("string"),
    		SuppressAbove:    pulumi.String("string"),
    		UnreachableDecay: pulumi.String("string"),
    	},
    	Debug:                 pulumi.Bool(false),
    	DefaultMed:            pulumi.String("string"),
    	DefaultRouteGateway:   pulumi.String("string"),
    	EnableCommunities:     pulumi.Bool(false),
    	EnableEcmp:            pulumi.Bool(false),
    	EnableSynchronization: pulumi.Bool(false),
    	GaiaCommandSetBgpId:   pulumi.String("string"),
    	GracefulRestart: &checkpoint.GaiaCommandSetBgpGracefulRestartArgs{
    		RestartTime:           pulumi.String("string"),
    		SelectionDeferralTime: pulumi.String("string"),
    	},
    	Ping: &checkpoint.GaiaCommandSetBgpPingArgs{
    		Count:    pulumi.String("string"),
    		Interval: pulumi.String("string"),
    	},
    	RoutingDomain: &checkpoint.GaiaCommandSetBgpRoutingDomainArgs{
    		AspathLoopsPermitted: pulumi.String("string"),
    		Identifier:           pulumi.String("string"),
    	},
    })
    
    resource "checkpoint_gaiacommandsetbgp" "gaiaCommandSetBgpResource" {
      as         = "string"
      cluster_id = "string"
      confederation = {
        aspath_loops_permitted = "string"
        identifier             = "string"
      }
      dampening = {
        enabled           = false
        keep_history      = "string"
        max_flap          = "string"
        reachable_decay   = "string"
        reuse_below       = "string"
        suppress_above    = "string"
        unreachable_decay = "string"
      }
      debug                   = false
      default_med             = "string"
      default_route_gateway   = "string"
      enable_communities      = false
      enable_ecmp             = false
      enable_synchronization  = false
      gaia_command_set_bgp_id = "string"
      graceful_restart = {
        restart_time            = "string"
        selection_deferral_time = "string"
      }
      ping = {
        count    = "string"
        interval = "string"
      }
      routing_domain = {
        aspath_loops_permitted = "string"
        identifier             = "string"
      }
    }
    
    var gaiaCommandSetBgpResource = new GaiaCommandSetBgp("gaiaCommandSetBgpResource", GaiaCommandSetBgpArgs.builder()
        .as("string")
        .clusterId("string")
        .confederation(GaiaCommandSetBgpConfederationArgs.builder()
            .aspathLoopsPermitted("string")
            .identifier("string")
            .build())
        .dampening(GaiaCommandSetBgpDampeningArgs.builder()
            .enabled(false)
            .keepHistory("string")
            .maxFlap("string")
            .reachableDecay("string")
            .reuseBelow("string")
            .suppressAbove("string")
            .unreachableDecay("string")
            .build())
        .debug(false)
        .defaultMed("string")
        .defaultRouteGateway("string")
        .enableCommunities(false)
        .enableEcmp(false)
        .enableSynchronization(false)
        .gaiaCommandSetBgpId("string")
        .gracefulRestart(GaiaCommandSetBgpGracefulRestartArgs.builder()
            .restartTime("string")
            .selectionDeferralTime("string")
            .build())
        .ping(GaiaCommandSetBgpPingArgs.builder()
            .count("string")
            .interval("string")
            .build())
        .routingDomain(GaiaCommandSetBgpRoutingDomainArgs.builder()
            .aspathLoopsPermitted("string")
            .identifier("string")
            .build())
        .build());
    
    gaia_command_set_bgp_resource = checkpoint.GaiaCommandSetBgp("gaiaCommandSetBgpResource",
        as_="string",
        cluster_id="string",
        confederation={
            "aspath_loops_permitted": "string",
            "identifier": "string",
        },
        dampening={
            "enabled": False,
            "keep_history": "string",
            "max_flap": "string",
            "reachable_decay": "string",
            "reuse_below": "string",
            "suppress_above": "string",
            "unreachable_decay": "string",
        },
        debug=False,
        default_med="string",
        default_route_gateway="string",
        enable_communities=False,
        enable_ecmp=False,
        enable_synchronization=False,
        gaia_command_set_bgp_id="string",
        graceful_restart={
            "restart_time": "string",
            "selection_deferral_time": "string",
        },
        ping={
            "count": "string",
            "interval": "string",
        },
        routing_domain={
            "aspath_loops_permitted": "string",
            "identifier": "string",
        })
    
    const gaiaCommandSetBgpResource = new checkpoint.GaiaCommandSetBgp("gaiaCommandSetBgpResource", {
        as: "string",
        clusterId: "string",
        confederation: {
            aspathLoopsPermitted: "string",
            identifier: "string",
        },
        dampening: {
            enabled: false,
            keepHistory: "string",
            maxFlap: "string",
            reachableDecay: "string",
            reuseBelow: "string",
            suppressAbove: "string",
            unreachableDecay: "string",
        },
        debug: false,
        defaultMed: "string",
        defaultRouteGateway: "string",
        enableCommunities: false,
        enableEcmp: false,
        enableSynchronization: false,
        gaiaCommandSetBgpId: "string",
        gracefulRestart: {
            restartTime: "string",
            selectionDeferralTime: "string",
        },
        ping: {
            count: "string",
            interval: "string",
        },
        routingDomain: {
            aspathLoopsPermitted: "string",
            identifier: "string",
        },
    });
    
    type: checkpoint:GaiaCommandSetBgp
    properties:
        as: string
        clusterId: string
        confederation:
            aspathLoopsPermitted: string
            identifier: string
        dampening:
            enabled: false
            keepHistory: string
            maxFlap: string
            reachableDecay: string
            reuseBelow: string
            suppressAbove: string
            unreachableDecay: string
        debug: false
        defaultMed: string
        defaultRouteGateway: string
        enableCommunities: false
        enableEcmp: false
        enableSynchronization: false
        gaiaCommandSetBgpId: string
        gracefulRestart:
            restartTime: string
            selectionDeferralTime: string
        ping:
            count: string
            interval: string
        routingDomain:
            aspathLoopsPermitted: string
            identifier: string
    

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

    As string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    ClusterId string
    Specifies the cluster-id used for route reflection.
    Confederation GaiaCommandSetBgpConfederation
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    Dampening GaiaCommandSetBgpDampening
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    Debug bool
    Enable debugging for this resource only.
    DefaultMed string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    DefaultRouteGateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    EnableCommunities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    EnableEcmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    EnableSynchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    GaiaCommandSetBgpId string
    GracefulRestart GaiaCommandSetBgpGracefulRestart
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    Ping GaiaCommandSetBgpPing
    Configures global settings for BGP ping. ping blocks are documented below.
    RoutingDomain GaiaCommandSetBgpRoutingDomain
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    As string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    ClusterId string
    Specifies the cluster-id used for route reflection.
    Confederation GaiaCommandSetBgpConfederationTypeArgs
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    Dampening GaiaCommandSetBgpDampeningArgs
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    Debug bool
    Enable debugging for this resource only.
    DefaultMed string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    DefaultRouteGateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    EnableCommunities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    EnableEcmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    EnableSynchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    GaiaCommandSetBgpId string
    GracefulRestart GaiaCommandSetBgpGracefulRestartArgs
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    Ping GaiaCommandSetBgpPingArgs
    Configures global settings for BGP ping. ping blocks are documented below.
    RoutingDomain GaiaCommandSetBgpRoutingDomainArgs
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    cluster_id string
    Specifies the cluster-id used for route reflection.
    confederation object
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening object
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug bool
    Enable debugging for this resource only.
    default_med string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    default_route_gateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enable_communities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enable_ecmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enable_synchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaia_command_set_bgp_id string
    graceful_restart object
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping object
    Configures global settings for BGP ping. ping blocks are documented below.
    routing_domain object
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as String
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    clusterId String
    Specifies the cluster-id used for route reflection.
    confederation GaiaCommandSetBgpConfederation
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening GaiaCommandSetBgpDampening
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug Boolean
    Enable debugging for this resource only.
    defaultMed String
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    defaultRouteGateway String
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enableCommunities Boolean
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enableEcmp Boolean
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enableSynchronization Boolean
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaiaCommandSetBgpId String
    gracefulRestart GaiaCommandSetBgpGracefulRestart
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping GaiaCommandSetBgpPing
    Configures global settings for BGP ping. ping blocks are documented below.
    routingDomain GaiaCommandSetBgpRoutingDomain
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    clusterId string
    Specifies the cluster-id used for route reflection.
    confederation GaiaCommandSetBgpConfederation
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening GaiaCommandSetBgpDampening
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug boolean
    Enable debugging for this resource only.
    defaultMed string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    defaultRouteGateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enableCommunities boolean
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enableEcmp boolean
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enableSynchronization boolean
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaiaCommandSetBgpId string
    gracefulRestart GaiaCommandSetBgpGracefulRestart
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping GaiaCommandSetBgpPing
    Configures global settings for BGP ping. ping blocks are documented below.
    routingDomain GaiaCommandSetBgpRoutingDomain
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as_ str
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    cluster_id str
    Specifies the cluster-id used for route reflection.
    confederation GaiaCommandSetBgpConfederationArgs
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening GaiaCommandSetBgpDampeningArgs
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug bool
    Enable debugging for this resource only.
    default_med str
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    default_route_gateway str
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enable_communities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enable_ecmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enable_synchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaia_command_set_bgp_id str
    graceful_restart GaiaCommandSetBgpGracefulRestartArgs
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping GaiaCommandSetBgpPingArgs
    Configures global settings for BGP ping. ping blocks are documented below.
    routing_domain GaiaCommandSetBgpRoutingDomainArgs
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as String
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    clusterId String
    Specifies the cluster-id used for route reflection.
    confederation Property Map
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening Property Map
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug Boolean
    Enable debugging for this resource only.
    defaultMed String
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    defaultRouteGateway String
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enableCommunities Boolean
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enableEcmp Boolean
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enableSynchronization Boolean
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaiaCommandSetBgpId String
    gracefulRestart Property Map
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping Property Map
    Configures global settings for BGP ping. ping blocks are documented below.
    routingDomain Property Map
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.

    Outputs

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

    Get an existing GaiaCommandSetBgp 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?: GaiaCommandSetBgpState, opts?: CustomResourceOptions): GaiaCommandSetBgp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            as_: Optional[str] = None,
            cluster_id: Optional[str] = None,
            confederation: Optional[GaiaCommandSetBgpConfederationArgs] = None,
            dampening: Optional[GaiaCommandSetBgpDampeningArgs] = None,
            debug: Optional[bool] = None,
            default_med: Optional[str] = None,
            default_route_gateway: Optional[str] = None,
            enable_communities: Optional[bool] = None,
            enable_ecmp: Optional[bool] = None,
            enable_synchronization: Optional[bool] = None,
            gaia_command_set_bgp_id: Optional[str] = None,
            graceful_restart: Optional[GaiaCommandSetBgpGracefulRestartArgs] = None,
            ping: Optional[GaiaCommandSetBgpPingArgs] = None,
            routing_domain: Optional[GaiaCommandSetBgpRoutingDomainArgs] = None) -> GaiaCommandSetBgp
    func GetGaiaCommandSetBgp(ctx *Context, name string, id IDInput, state *GaiaCommandSetBgpState, opts ...ResourceOption) (*GaiaCommandSetBgp, error)
    public static GaiaCommandSetBgp Get(string name, Input<string> id, GaiaCommandSetBgpState? state, CustomResourceOptions? opts = null)
    public static GaiaCommandSetBgp get(String name, Output<String> id, GaiaCommandSetBgpState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaCommandSetBgp    get:      id: ${id}
    import {
      to = checkpoint_gaiacommandsetbgp.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:
    As string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    ClusterId string
    Specifies the cluster-id used for route reflection.
    Confederation GaiaCommandSetBgpConfederation
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    Dampening GaiaCommandSetBgpDampening
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    Debug bool
    Enable debugging for this resource only.
    DefaultMed string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    DefaultRouteGateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    EnableCommunities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    EnableEcmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    EnableSynchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    GaiaCommandSetBgpId string
    GracefulRestart GaiaCommandSetBgpGracefulRestart
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    Ping GaiaCommandSetBgpPing
    Configures global settings for BGP ping. ping blocks are documented below.
    RoutingDomain GaiaCommandSetBgpRoutingDomain
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    As string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    ClusterId string
    Specifies the cluster-id used for route reflection.
    Confederation GaiaCommandSetBgpConfederationTypeArgs
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    Dampening GaiaCommandSetBgpDampeningArgs
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    Debug bool
    Enable debugging for this resource only.
    DefaultMed string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    DefaultRouteGateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    EnableCommunities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    EnableEcmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    EnableSynchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    GaiaCommandSetBgpId string
    GracefulRestart GaiaCommandSetBgpGracefulRestartArgs
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    Ping GaiaCommandSetBgpPingArgs
    Configures global settings for BGP ping. ping blocks are documented below.
    RoutingDomain GaiaCommandSetBgpRoutingDomainArgs
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    cluster_id string
    Specifies the cluster-id used for route reflection.
    confederation object
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening object
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug bool
    Enable debugging for this resource only.
    default_med string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    default_route_gateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enable_communities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enable_ecmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enable_synchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaia_command_set_bgp_id string
    graceful_restart object
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping object
    Configures global settings for BGP ping. ping blocks are documented below.
    routing_domain object
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as String
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    clusterId String
    Specifies the cluster-id used for route reflection.
    confederation GaiaCommandSetBgpConfederation
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening GaiaCommandSetBgpDampening
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug Boolean
    Enable debugging for this resource only.
    defaultMed String
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    defaultRouteGateway String
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enableCommunities Boolean
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enableEcmp Boolean
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enableSynchronization Boolean
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaiaCommandSetBgpId String
    gracefulRestart GaiaCommandSetBgpGracefulRestart
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping GaiaCommandSetBgpPing
    Configures global settings for BGP ping. ping blocks are documented below.
    routingDomain GaiaCommandSetBgpRoutingDomain
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as string
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    clusterId string
    Specifies the cluster-id used for route reflection.
    confederation GaiaCommandSetBgpConfederation
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening GaiaCommandSetBgpDampening
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug boolean
    Enable debugging for this resource only.
    defaultMed string
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    defaultRouteGateway string
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enableCommunities boolean
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enableEcmp boolean
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enableSynchronization boolean
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaiaCommandSetBgpId string
    gracefulRestart GaiaCommandSetBgpGracefulRestart
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping GaiaCommandSetBgpPing
    Configures global settings for BGP ping. ping blocks are documented below.
    routingDomain GaiaCommandSetBgpRoutingDomain
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as_ str
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    cluster_id str
    Specifies the cluster-id used for route reflection.
    confederation GaiaCommandSetBgpConfederationArgs
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening GaiaCommandSetBgpDampeningArgs
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug bool
    Enable debugging for this resource only.
    default_med str
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    default_route_gateway str
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enable_communities bool
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enable_ecmp bool
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enable_synchronization bool
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaia_command_set_bgp_id str
    graceful_restart GaiaCommandSetBgpGracefulRestartArgs
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping GaiaCommandSetBgpPingArgs
    Configures global settings for BGP ping. ping blocks are documented below.
    routing_domain GaiaCommandSetBgpRoutingDomainArgs
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.
    as String
    Autonomous System Number The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535 WARNING: Removing the AS number will result in all BGP configurations and any associated route-redistribution or inbound-route-filter configurations being removed.
    clusterId String
    Specifies the cluster-id used for route reflection.
    confederation Property Map
    Configure BGP Confederation parameters. A BGP Confederation is a single large AS that is divided into sub-AS's called Routing Domains. The Routing Domains are only visible within the Confederation; to the outside world, the entire Confederation appears as one AS. Confederations improve BGP performance for large AS's by reducing IBGP mesh size. IBGP is used within each Routing Domain, but between them, a modified form of eBGP is used which preserves route metrics and other BGP attributes. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. confederation blocks are documented below.
    dampening Property Map
    Weighted-route dampening minimizes the propagation of flapping routes across an internetwork. dampening blocks are documented below.
    debug Boolean
    Enable debugging for this resource only.
    defaultMed String
    Defines the Multi-Exit Discriminator metric (MED) used when advertising routes through BGP. If no value is specified, no metric is propagated. Any metrics configured in peer, Route Map, or route redistribution configurations will override the value configured here.
    defaultRouteGateway String
    A default route is generated if any BGP peer is up. This route has a higher rank than the default configured through static route configuration. If a specific BGP peer should not be considered for generating the default route, it should be explicitly suppressed via the peer-specific 'suppress-default-originate' configuration.
    enableCommunities Boolean
    This option controls whether or not community information is included in BGP advertisements. This option must be enabled in order to configure the routing policy to filter incoming or outgoing advertisements based on community information.
    enableEcmp Boolean
    Enables or disables ECMP (Equal-Cost Multi-Path) routing for IPv4 BGP routes.
    enableSynchronization Boolean
    Enabling this option directs Internal BGP (IBGP) peers to check for a matching route from IGP protocols before installing a route.
    gaiaCommandSetBgpId String
    gracefulRestart Property Map
    Configures global settings for BGP Graceful Restart. graceful_restart blocks are documented below.
    ping Property Map
    Configures global settings for BGP ping. ping blocks are documented below.
    routingDomain Property Map
    Configure Routing Domain parameters. In Confederation mode, the Routing Domain is the Confederation sub-AS. It acts as an independent AS within the Confederation, but is not visible outside the Confederation. The Routing Domain identifier (RDI) is the equivalent of its AS number. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. routing_domain blocks are documented below.

    Supporting Types

    GaiaCommandSetBgpConfederation, GaiaCommandSetBgpConfederationArgs

    AspathLoopsPermitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    Identifier string
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    AspathLoopsPermitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    Identifier string
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspath_loops_permitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier string
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspathLoopsPermitted String
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier String
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspathLoopsPermitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier string
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspath_loops_permitted str
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier str
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspathLoopsPermitted String
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier String
    Specifies the identifier for the entire Confederation. The Confederation identifier is used as the AS number in external BGP sessions, so it must be a globally unique, normally assigned AS number. Both the Confederation identifer and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535

    GaiaCommandSetBgpDampening, GaiaCommandSetBgpDampeningArgs

    Enabled bool
    Enable/disable weighted-route dampening.
    KeepHistory string
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    MaxFlap string
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    ReachableDecay string
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    ReuseBelow string
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    SuppressAbove string
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    UnreachableDecay string
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.
    Enabled bool
    Enable/disable weighted-route dampening.
    KeepHistory string
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    MaxFlap string
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    ReachableDecay string
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    ReuseBelow string
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    SuppressAbove string
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    UnreachableDecay string
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.
    enabled bool
    Enable/disable weighted-route dampening.
    keep_history string
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    max_flap string
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    reachable_decay string
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    reuse_below string
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    suppress_above string
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    unreachable_decay string
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.
    enabled Boolean
    Enable/disable weighted-route dampening.
    keepHistory String
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    maxFlap String
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    reachableDecay String
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    reuseBelow String
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    suppressAbove String
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    unreachableDecay String
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.
    enabled boolean
    Enable/disable weighted-route dampening.
    keepHistory string
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    maxFlap string
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    reachableDecay string
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    reuseBelow string
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    suppressAbove string
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    unreachableDecay string
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.
    enabled bool
    Enable/disable weighted-route dampening.
    keep_history str
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    max_flap str
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    reachable_decay str
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    reuse_below str
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    suppress_above str
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    unreachable_decay str
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.
    enabled Boolean
    Enable/disable weighted-route dampening.
    keepHistory String
    Specifies the period over which route flapping history for a given route is maintained. The default value is 1800.
    maxFlap String
    Specifies the upper limit of the instability accepted. The value must be higher than one plus the suppress-above value. The default value is 16.
    reachableDecay String
    Specifies the length of time (seconds) it takes for the instability metric to reach one half of its current value when the route is reachable. The default value is 300.
    reuseBelow String
    Specifies the value of the instability metric at which a suppressed but reachable route becomes unsuppressed. The value must be less than the suppress-above value. The default value is 2.
    suppressAbove String
    Specifies the value of the instability metric at which a route is suppressed. While suppressed, the route is neither installed, nor advertised as reachable. The default value is 3.
    unreachableDecay String
    Specifies the rate at which the instability metric is decayed when a route is unreachable. This value must be equal to or greater than the reachable decay. The default value is 900.

    GaiaCommandSetBgpGracefulRestart, GaiaCommandSetBgpGracefulRestartArgs

    RestartTime string
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    SelectionDeferralTime string
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.
    RestartTime string
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    SelectionDeferralTime string
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.
    restart_time string
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    selection_deferral_time string
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.
    restartTime String
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    selectionDeferralTime String
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.
    restartTime string
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    selectionDeferralTime string
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.
    restart_time str
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    selection_deferral_time str
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.
    restartTime String
    Specifies the time (seconds) that BGP peers of this router should keep the routes advertised to them while this router restarts. The default value is 360.
    selectionDeferralTime String
    Specifies the time (seconds) that this router will wait for the End-of-RIB notification from each of its BGP peers after a restart. The default value is 360.

    GaiaCommandSetBgpPing, GaiaCommandSetBgpPingArgs

    Count string
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    Interval string
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.
    Count string
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    Interval string
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.
    count string
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    interval string
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.
    count String
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    interval String
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.
    count string
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    interval string
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.
    count str
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    interval str
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.
    count String
    Set the number of failed pings to an individual BGP peer with ping enabled before BGP will drop that peer. This value is common across all peers. The default value is 3.
    interval String
    Set the interval between pings sent to all BGP peers with ping enabled. The default value is 2.

    GaiaCommandSetBgpRoutingDomain, GaiaCommandSetBgpRoutingDomainArgs

    AspathLoopsPermitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    Identifier string
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    AspathLoopsPermitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    Identifier string
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspath_loops_permitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier string
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspathLoopsPermitted String
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier String
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspathLoopsPermitted string
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier string
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspath_loops_permitted str
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier str
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535
    aspathLoopsPermitted String
    Specifies the number of times the Local AS can appear in an AS path for routes learned via BGP. Routes with numbers higher than the configured value are rejected. The default value is 1.
    identifier String
    In Confederation mode, the Routing Domain identifier (RDI) identifies the Routing Domain, or Confederation sub-AS, to which this router belongs. The RDI is used as the AS number for peers within the Confederation, while the Confederation identifier is used outside the Confederation. The RDI does not have to be globally unique, since it is never used outside the Confederation. Both the Confederation identifier and Routing Domain identifier must be configured before BGP can be configured on this router when Confederations are in use. An AS cannot be configured at the same time as the Confederation equivalents. The value can be one of the following: 'off' An integer from 1-4294967295 A float from 0.1-65535.65535

    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