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

    This resource allows you to execute Check Point Route Redistribution To Ripng.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaRouteRedistributionToRipng("example", {from: {
        kernel: {
            allIpv6Routes: {
                enable: true,
            },
        },
    }});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaRouteRedistributionToRipng("example", from_={
        "kernel": {
            "all_ipv6_routes": {
                "enable": True,
            },
        },
    })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewGaiaRouteRedistributionToRipng(ctx, "example", &checkpoint.GaiaRouteRedistributionToRipngArgs{
    			From: &checkpoint.GaiaRouteRedistributionToRipngFromArgs{
    				Kernel: &checkpoint.GaiaRouteRedistributionToRipngFromKernelArgs{
    					AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs{
    						Enable: pulumi.Bool(true),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Checkpoint.GaiaRouteRedistributionToRipng("example", new()
        {
            From = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromArgs
            {
                Kernel = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromKernelArgs
                {
                    AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs
                    {
                        Enable = true,
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaRouteRedistributionToRipng;
    import com.pulumi.checkpoint.GaiaRouteRedistributionToRipngArgs;
    import com.pulumi.checkpoint.inputs.GaiaRouteRedistributionToRipngFromArgs;
    import com.pulumi.checkpoint.inputs.GaiaRouteRedistributionToRipngFromKernelArgs;
    import com.pulumi.checkpoint.inputs.GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new GaiaRouteRedistributionToRipng("example", GaiaRouteRedistributionToRipngArgs.builder()
                .from(GaiaRouteRedistributionToRipngFromArgs.builder()
                    .kernel(GaiaRouteRedistributionToRipngFromKernelArgs.builder()
                        .allIpv6Routes(GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs.builder()
                            .enable(true)
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaRouteRedistributionToRipng
        properties:
          from:
            kernel:
              allIpv6Routes:
                enable: true
    
    Example coming soon!
    

    Create GaiaRouteRedistributionToRipng Resource

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

    Constructor syntax

    new GaiaRouteRedistributionToRipng(name: string, args?: GaiaRouteRedistributionToRipngArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaRouteRedistributionToRipng(resource_name: str,
                                       args: Optional[GaiaRouteRedistributionToRipngArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaRouteRedistributionToRipng(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       debug: Optional[bool] = None,
                                       from_: Optional[GaiaRouteRedistributionToRipngFromArgs] = None,
                                       gaia_route_redistribution_to_ripng_id: Optional[str] = None,
                                       member_id: Optional[str] = None,
                                       reset: Optional[bool] = None)
    func NewGaiaRouteRedistributionToRipng(ctx *Context, name string, args *GaiaRouteRedistributionToRipngArgs, opts ...ResourceOption) (*GaiaRouteRedistributionToRipng, error)
    public GaiaRouteRedistributionToRipng(string name, GaiaRouteRedistributionToRipngArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaRouteRedistributionToRipng(String name, GaiaRouteRedistributionToRipngArgs args)
    public GaiaRouteRedistributionToRipng(String name, GaiaRouteRedistributionToRipngArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaRouteRedistributionToRipng
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiarouteredistributiontoripng" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaRouteRedistributionToRipngArgs
    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 GaiaRouteRedistributionToRipngArgs
    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 GaiaRouteRedistributionToRipngArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaRouteRedistributionToRipngArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaRouteRedistributionToRipngArgs
    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 gaiaRouteRedistributionToRipngResource = new Checkpoint.GaiaRouteRedistributionToRipng("gaiaRouteRedistributionToRipngResource", new()
    {
        Debug = false,
        From = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromArgs
        {
            Aggregate = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromAggregateArgs
            {
                AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromAggregateAllIpv6RoutesArgs
                {
                    Enable = false,
                    Metric = "string",
                },
                Networks = new[]
                {
                    new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromAggregateNetworkArgs
                    {
                        Address = "string",
                        Metric = "string",
                    },
                },
            },
            BgpAsNumbers = new[]
            {
                new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromBgpAsNumberArgs
                {
                    AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6RoutesArgs
                    {
                        Enable = false,
                        Metric = "string",
                    },
                    AsNumber = "string",
                    Networks = new[]
                    {
                        new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromBgpAsNumberNetworkArgs
                        {
                            Address = "string",
                            MatchType = "string",
                            Metric = "string",
                            Restrict = false,
                        },
                    },
                },
            },
            BgpAsPaths = new[]
            {
                new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromBgpAsPathArgs
                {
                    AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6RoutesArgs
                    {
                        Enable = false,
                        Metric = "string",
                    },
                    AspathRegex = "string",
                    Networks = new[]
                    {
                        new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromBgpAsPathNetworkArgs
                        {
                            Address = "string",
                            MatchType = "string",
                            Metric = "string",
                            Restrict = false,
                        },
                    },
                    Origin = "string",
                },
            },
            Interfaces = new[]
            {
                new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromInterfaceArgs
                {
                    Interface = "string",
                    Metric = "string",
                },
            },
            Ises = new[]
            {
                new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromIseArgs
                {
                    AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromIseAllIpv6RoutesArgs
                    {
                        Enable = false,
                        Metric = "string",
                    },
                    Level = "string",
                    Networks = new[]
                    {
                        new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromIseNetworkArgs
                        {
                            Address = "string",
                            MatchType = "string",
                            Metric = "string",
                            Restrict = false,
                        },
                    },
                },
            },
            Kernel = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromKernelArgs
            {
                AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs
                {
                    Enable = false,
                    Metric = "string",
                },
                Networks = new[]
                {
                    new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromKernelNetworkArgs
                    {
                        Address = "string",
                        MatchType = "string",
                        Metric = "string",
                        Restrict = false,
                    },
                },
            },
            NatPool = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromNatPoolArgs
            {
                AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromNatPoolAllIpv6RoutesArgs
                {
                    Enable = false,
                    Metric = "string",
                },
                Networks = new[]
                {
                    new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromNatPoolNetworkArgs
                    {
                        Address = "string",
                        Metric = "string",
                    },
                },
            },
            Ospf3ases = new[]
            {
                new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromOspf3aseArgs
                {
                    AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6RoutesArgs
                    {
                        Enable = false,
                        Metric = "string",
                    },
                    Instance = "string",
                    Networks = new[]
                    {
                        new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromOspf3aseNetworkArgs
                        {
                            Address = "string",
                            MatchType = "string",
                            Metric = "string",
                            Restrict = false,
                        },
                    },
                },
            },
            Ospf3s = new[]
            {
                new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromOspf3Args
                {
                    AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromOspf3AllIpv6RoutesArgs
                    {
                        Enable = false,
                        Metric = "string",
                    },
                    Instance = "string",
                    Networks = new[]
                    {
                        new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromOspf3NetworkArgs
                        {
                            Address = "string",
                            MatchType = "string",
                            Metric = "string",
                            Restrict = false,
                        },
                    },
                },
            },
            StaticRoute = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromStaticRouteArgs
            {
                AllIpv6Routes = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6RoutesArgs
                {
                    Enable = false,
                    Metric = "string",
                },
                Default6 = new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromStaticRouteDefault6Args
                {
                    Enable = false,
                    Metric = "string",
                },
                Networks = new[]
                {
                    new Checkpoint.Inputs.GaiaRouteRedistributionToRipngFromStaticRouteNetworkArgs
                    {
                        Address = "string",
                        Metric = "string",
                    },
                },
            },
        },
        GaiaRouteRedistributionToRipngId = "string",
        MemberId = "string",
        Reset = false,
    });
    
    example, err := checkpoint.NewGaiaRouteRedistributionToRipng(ctx, "gaiaRouteRedistributionToRipngResource", &checkpoint.GaiaRouteRedistributionToRipngArgs{
    	Debug: pulumi.Bool(false),
    	From: &checkpoint.GaiaRouteRedistributionToRipngFromArgs{
    		Aggregate: &checkpoint.GaiaRouteRedistributionToRipngFromAggregateArgs{
    			AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromAggregateAllIpv6RoutesArgs{
    				Enable: pulumi.Bool(false),
    				Metric: pulumi.String("string"),
    			},
    			Networks: checkpoint.GaiaRouteRedistributionToRipngFromAggregateNetworkArray{
    				&checkpoint.GaiaRouteRedistributionToRipngFromAggregateNetworkArgs{
    					Address: pulumi.String("string"),
    					Metric:  pulumi.String("string"),
    				},
    			},
    		},
    		BgpAsNumbers: checkpoint.GaiaRouteRedistributionToRipngFromBgpAsNumberArray{
    			&checkpoint.GaiaRouteRedistributionToRipngFromBgpAsNumberArgs{
    				AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6RoutesArgs{
    					Enable: pulumi.Bool(false),
    					Metric: pulumi.String("string"),
    				},
    				AsNumber: pulumi.String("string"),
    				Networks: checkpoint.GaiaRouteRedistributionToRipngFromBgpAsNumberNetworkArray{
    					&checkpoint.GaiaRouteRedistributionToRipngFromBgpAsNumberNetworkArgs{
    						Address:   pulumi.String("string"),
    						MatchType: pulumi.String("string"),
    						Metric:    pulumi.String("string"),
    						Restrict:  pulumi.Bool(false),
    					},
    				},
    			},
    		},
    		BgpAsPaths: checkpoint.GaiaRouteRedistributionToRipngFromBgpAsPathArray{
    			&checkpoint.GaiaRouteRedistributionToRipngFromBgpAsPathArgs{
    				AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6RoutesArgs{
    					Enable: pulumi.Bool(false),
    					Metric: pulumi.String("string"),
    				},
    				AspathRegex: pulumi.String("string"),
    				Networks: checkpoint.GaiaRouteRedistributionToRipngFromBgpAsPathNetworkArray{
    					&checkpoint.GaiaRouteRedistributionToRipngFromBgpAsPathNetworkArgs{
    						Address:   pulumi.String("string"),
    						MatchType: pulumi.String("string"),
    						Metric:    pulumi.String("string"),
    						Restrict:  pulumi.Bool(false),
    					},
    				},
    				Origin: pulumi.String("string"),
    			},
    		},
    		Interfaces: checkpoint.GaiaRouteRedistributionToRipngFromInterfaceArray{
    			&checkpoint.GaiaRouteRedistributionToRipngFromInterfaceArgs{
    				Interface: pulumi.String("string"),
    				Metric:    pulumi.String("string"),
    			},
    		},
    		Ises: checkpoint.GaiaRouteRedistributionToRipngFromIseArray{
    			&checkpoint.GaiaRouteRedistributionToRipngFromIseArgs{
    				AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromIseAllIpv6RoutesArgs{
    					Enable: pulumi.Bool(false),
    					Metric: pulumi.String("string"),
    				},
    				Level: pulumi.String("string"),
    				Networks: checkpoint.GaiaRouteRedistributionToRipngFromIseNetworkArray{
    					&checkpoint.GaiaRouteRedistributionToRipngFromIseNetworkArgs{
    						Address:   pulumi.String("string"),
    						MatchType: pulumi.String("string"),
    						Metric:    pulumi.String("string"),
    						Restrict:  pulumi.Bool(false),
    					},
    				},
    			},
    		},
    		Kernel: &checkpoint.GaiaRouteRedistributionToRipngFromKernelArgs{
    			AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs{
    				Enable: pulumi.Bool(false),
    				Metric: pulumi.String("string"),
    			},
    			Networks: checkpoint.GaiaRouteRedistributionToRipngFromKernelNetworkArray{
    				&checkpoint.GaiaRouteRedistributionToRipngFromKernelNetworkArgs{
    					Address:   pulumi.String("string"),
    					MatchType: pulumi.String("string"),
    					Metric:    pulumi.String("string"),
    					Restrict:  pulumi.Bool(false),
    				},
    			},
    		},
    		NatPool: &checkpoint.GaiaRouteRedistributionToRipngFromNatPoolArgs{
    			AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromNatPoolAllIpv6RoutesArgs{
    				Enable: pulumi.Bool(false),
    				Metric: pulumi.String("string"),
    			},
    			Networks: checkpoint.GaiaRouteRedistributionToRipngFromNatPoolNetworkArray{
    				&checkpoint.GaiaRouteRedistributionToRipngFromNatPoolNetworkArgs{
    					Address: pulumi.String("string"),
    					Metric:  pulumi.String("string"),
    				},
    			},
    		},
    		Ospf3ases: checkpoint.GaiaRouteRedistributionToRipngFromOspf3aseArray{
    			&checkpoint.GaiaRouteRedistributionToRipngFromOspf3aseArgs{
    				AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6RoutesArgs{
    					Enable: pulumi.Bool(false),
    					Metric: pulumi.String("string"),
    				},
    				Instance: pulumi.String("string"),
    				Networks: checkpoint.GaiaRouteRedistributionToRipngFromOspf3aseNetworkArray{
    					&checkpoint.GaiaRouteRedistributionToRipngFromOspf3aseNetworkArgs{
    						Address:   pulumi.String("string"),
    						MatchType: pulumi.String("string"),
    						Metric:    pulumi.String("string"),
    						Restrict:  pulumi.Bool(false),
    					},
    				},
    			},
    		},
    		Ospf3s: checkpoint.GaiaRouteRedistributionToRipngFromOspf3Array{
    			&checkpoint.GaiaRouteRedistributionToRipngFromOspf3Args{
    				AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromOspf3AllIpv6RoutesArgs{
    					Enable: pulumi.Bool(false),
    					Metric: pulumi.String("string"),
    				},
    				Instance: pulumi.String("string"),
    				Networks: checkpoint.GaiaRouteRedistributionToRipngFromOspf3NetworkArray{
    					&checkpoint.GaiaRouteRedistributionToRipngFromOspf3NetworkArgs{
    						Address:   pulumi.String("string"),
    						MatchType: pulumi.String("string"),
    						Metric:    pulumi.String("string"),
    						Restrict:  pulumi.Bool(false),
    					},
    				},
    			},
    		},
    		StaticRoute: &checkpoint.GaiaRouteRedistributionToRipngFromStaticRouteArgs{
    			AllIpv6Routes: &checkpoint.GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6RoutesArgs{
    				Enable: pulumi.Bool(false),
    				Metric: pulumi.String("string"),
    			},
    			Default6: &checkpoint.GaiaRouteRedistributionToRipngFromStaticRouteDefault6Args{
    				Enable: pulumi.Bool(false),
    				Metric: pulumi.String("string"),
    			},
    			Networks: checkpoint.GaiaRouteRedistributionToRipngFromStaticRouteNetworkArray{
    				&checkpoint.GaiaRouteRedistributionToRipngFromStaticRouteNetworkArgs{
    					Address: pulumi.String("string"),
    					Metric:  pulumi.String("string"),
    				},
    			},
    		},
    	},
    	GaiaRouteRedistributionToRipngId: pulumi.String("string"),
    	MemberId:                         pulumi.String("string"),
    	Reset:                            pulumi.Bool(false),
    })
    
    resource "checkpoint_gaiarouteredistributiontoripng" "gaiaRouteRedistributionToRipngResource" {
      debug = false
      from = {
        aggregate = {
          all_ipv6_routes = {
            enable = false
            metric = "string"
          }
          networks = [{
            "address" = "string"
            "metric"  = "string"
          }]
        }
        bgp_as_numbers = [{
          "allIpv6Routes" = {
            "enable" = false
            "metric" = "string"
          }
          "asNumber" = "string"
          "networks" = [{
            "address"   = "string"
            "matchType" = "string"
            "metric"    = "string"
            "restrict"  = false
          }]
        }]
        bgp_as_paths = [{
          "allIpv6Routes" = {
            "enable" = false
            "metric" = "string"
          }
          "aspathRegex" = "string"
          "networks" = [{
            "address"   = "string"
            "matchType" = "string"
            "metric"    = "string"
            "restrict"  = false
          }]
          "origin" = "string"
        }]
        interfaces = [{
          "interface" = "string"
          "metric"    = "string"
        }]
        ises = [{
          "allIpv6Routes" = {
            "enable" = false
            "metric" = "string"
          }
          "level" = "string"
          "networks" = [{
            "address"   = "string"
            "matchType" = "string"
            "metric"    = "string"
            "restrict"  = false
          }]
        }]
        kernel = {
          all_ipv6_routes = {
            enable = false
            metric = "string"
          }
          networks = [{
            "address"   = "string"
            "matchType" = "string"
            "metric"    = "string"
            "restrict"  = false
          }]
        }
        nat_pool = {
          all_ipv6_routes = {
            enable = false
            metric = "string"
          }
          networks = [{
            "address" = "string"
            "metric"  = "string"
          }]
        }
        ospf3ases = [{
          "allIpv6Routes" = {
            "enable" = false
            "metric" = "string"
          }
          "instance" = "string"
          "networks" = [{
            "address"   = "string"
            "matchType" = "string"
            "metric"    = "string"
            "restrict"  = false
          }]
        }]
        ospf3s = [{
          "allIpv6Routes" = {
            "enable" = false
            "metric" = "string"
          }
          "instance" = "string"
          "networks" = [{
            "address"   = "string"
            "matchType" = "string"
            "metric"    = "string"
            "restrict"  = false
          }]
        }]
        static_route = {
          all_ipv6_routes = {
            enable = false
            metric = "string"
          }
          default6 = {
            enable = false
            metric = "string"
          }
          networks = [{
            "address" = "string"
            "metric"  = "string"
          }]
        }
      }
      gaia_route_redistribution_to_ripng_id = "string"
      member_id                             = "string"
      reset                                 = false
    }
    
    var gaiaRouteRedistributionToRipngResource = new GaiaRouteRedistributionToRipng("gaiaRouteRedistributionToRipngResource", GaiaRouteRedistributionToRipngArgs.builder()
        .debug(false)
        .from(GaiaRouteRedistributionToRipngFromArgs.builder()
            .aggregate(GaiaRouteRedistributionToRipngFromAggregateArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromAggregateAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .networks(GaiaRouteRedistributionToRipngFromAggregateNetworkArgs.builder()
                    .address("string")
                    .metric("string")
                    .build())
                .build())
            .bgpAsNumbers(GaiaRouteRedistributionToRipngFromBgpAsNumberArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .asNumber("string")
                .networks(GaiaRouteRedistributionToRipngFromBgpAsNumberNetworkArgs.builder()
                    .address("string")
                    .matchType("string")
                    .metric("string")
                    .restrict(false)
                    .build())
                .build())
            .bgpAsPaths(GaiaRouteRedistributionToRipngFromBgpAsPathArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .aspathRegex("string")
                .networks(GaiaRouteRedistributionToRipngFromBgpAsPathNetworkArgs.builder()
                    .address("string")
                    .matchType("string")
                    .metric("string")
                    .restrict(false)
                    .build())
                .origin("string")
                .build())
            .interfaces(GaiaRouteRedistributionToRipngFromInterfaceArgs.builder()
                .interface_("string")
                .metric("string")
                .build())
            .ises(GaiaRouteRedistributionToRipngFromIseArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromIseAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .level("string")
                .networks(GaiaRouteRedistributionToRipngFromIseNetworkArgs.builder()
                    .address("string")
                    .matchType("string")
                    .metric("string")
                    .restrict(false)
                    .build())
                .build())
            .kernel(GaiaRouteRedistributionToRipngFromKernelArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .networks(GaiaRouteRedistributionToRipngFromKernelNetworkArgs.builder()
                    .address("string")
                    .matchType("string")
                    .metric("string")
                    .restrict(false)
                    .build())
                .build())
            .natPool(GaiaRouteRedistributionToRipngFromNatPoolArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromNatPoolAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .networks(GaiaRouteRedistributionToRipngFromNatPoolNetworkArgs.builder()
                    .address("string")
                    .metric("string")
                    .build())
                .build())
            .ospf3ases(GaiaRouteRedistributionToRipngFromOspf3aseArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .instance("string")
                .networks(GaiaRouteRedistributionToRipngFromOspf3aseNetworkArgs.builder()
                    .address("string")
                    .matchType("string")
                    .metric("string")
                    .restrict(false)
                    .build())
                .build())
            .ospf3s(GaiaRouteRedistributionToRipngFromOspf3Args.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromOspf3AllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .instance("string")
                .networks(GaiaRouteRedistributionToRipngFromOspf3NetworkArgs.builder()
                    .address("string")
                    .matchType("string")
                    .metric("string")
                    .restrict(false)
                    .build())
                .build())
            .staticRoute(GaiaRouteRedistributionToRipngFromStaticRouteArgs.builder()
                .allIpv6Routes(GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6RoutesArgs.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .default6(GaiaRouteRedistributionToRipngFromStaticRouteDefault6Args.builder()
                    .enable(false)
                    .metric("string")
                    .build())
                .networks(GaiaRouteRedistributionToRipngFromStaticRouteNetworkArgs.builder()
                    .address("string")
                    .metric("string")
                    .build())
                .build())
            .build())
        .gaiaRouteRedistributionToRipngId("string")
        .memberId("string")
        .reset(false)
        .build());
    
    gaia_route_redistribution_to_ripng_resource = checkpoint.GaiaRouteRedistributionToRipng("gaiaRouteRedistributionToRipngResource",
        debug=False,
        from_={
            "aggregate": {
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "networks": [{
                    "address": "string",
                    "metric": "string",
                }],
            },
            "bgp_as_numbers": [{
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "as_number": "string",
                "networks": [{
                    "address": "string",
                    "match_type": "string",
                    "metric": "string",
                    "restrict": False,
                }],
            }],
            "bgp_as_paths": [{
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "aspath_regex": "string",
                "networks": [{
                    "address": "string",
                    "match_type": "string",
                    "metric": "string",
                    "restrict": False,
                }],
                "origin": "string",
            }],
            "interfaces": [{
                "interface": "string",
                "metric": "string",
            }],
            "ises": [{
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "level": "string",
                "networks": [{
                    "address": "string",
                    "match_type": "string",
                    "metric": "string",
                    "restrict": False,
                }],
            }],
            "kernel": {
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "networks": [{
                    "address": "string",
                    "match_type": "string",
                    "metric": "string",
                    "restrict": False,
                }],
            },
            "nat_pool": {
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "networks": [{
                    "address": "string",
                    "metric": "string",
                }],
            },
            "ospf3ases": [{
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "instance": "string",
                "networks": [{
                    "address": "string",
                    "match_type": "string",
                    "metric": "string",
                    "restrict": False,
                }],
            }],
            "ospf3s": [{
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "instance": "string",
                "networks": [{
                    "address": "string",
                    "match_type": "string",
                    "metric": "string",
                    "restrict": False,
                }],
            }],
            "static_route": {
                "all_ipv6_routes": {
                    "enable": False,
                    "metric": "string",
                },
                "default6": {
                    "enable": False,
                    "metric": "string",
                },
                "networks": [{
                    "address": "string",
                    "metric": "string",
                }],
            },
        },
        gaia_route_redistribution_to_ripng_id="string",
        member_id="string",
        reset=False)
    
    const gaiaRouteRedistributionToRipngResource = new checkpoint.GaiaRouteRedistributionToRipng("gaiaRouteRedistributionToRipngResource", {
        debug: false,
        from: {
            aggregate: {
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                networks: [{
                    address: "string",
                    metric: "string",
                }],
            },
            bgpAsNumbers: [{
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                asNumber: "string",
                networks: [{
                    address: "string",
                    matchType: "string",
                    metric: "string",
                    restrict: false,
                }],
            }],
            bgpAsPaths: [{
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                aspathRegex: "string",
                networks: [{
                    address: "string",
                    matchType: "string",
                    metric: "string",
                    restrict: false,
                }],
                origin: "string",
            }],
            interfaces: [{
                "interface": "string",
                metric: "string",
            }],
            ises: [{
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                level: "string",
                networks: [{
                    address: "string",
                    matchType: "string",
                    metric: "string",
                    restrict: false,
                }],
            }],
            kernel: {
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                networks: [{
                    address: "string",
                    matchType: "string",
                    metric: "string",
                    restrict: false,
                }],
            },
            natPool: {
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                networks: [{
                    address: "string",
                    metric: "string",
                }],
            },
            ospf3ases: [{
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                instance: "string",
                networks: [{
                    address: "string",
                    matchType: "string",
                    metric: "string",
                    restrict: false,
                }],
            }],
            ospf3s: [{
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                instance: "string",
                networks: [{
                    address: "string",
                    matchType: "string",
                    metric: "string",
                    restrict: false,
                }],
            }],
            staticRoute: {
                allIpv6Routes: {
                    enable: false,
                    metric: "string",
                },
                default6: {
                    enable: false,
                    metric: "string",
                },
                networks: [{
                    address: "string",
                    metric: "string",
                }],
            },
        },
        gaiaRouteRedistributionToRipngId: "string",
        memberId: "string",
        reset: false,
    });
    
    type: checkpoint:GaiaRouteRedistributionToRipng
    properties:
        debug: false
        from:
            aggregate:
                allIpv6Routes:
                    enable: false
                    metric: string
                networks:
                    - address: string
                      metric: string
            bgpAsNumbers:
                - allIpv6Routes:
                    enable: false
                    metric: string
                  asNumber: string
                  networks:
                    - address: string
                      matchType: string
                      metric: string
                      restrict: false
            bgpAsPaths:
                - allIpv6Routes:
                    enable: false
                    metric: string
                  aspathRegex: string
                  networks:
                    - address: string
                      matchType: string
                      metric: string
                      restrict: false
                  origin: string
            interfaces:
                - interface: string
                  metric: string
            ises:
                - allIpv6Routes:
                    enable: false
                    metric: string
                  level: string
                  networks:
                    - address: string
                      matchType: string
                      metric: string
                      restrict: false
            kernel:
                allIpv6Routes:
                    enable: false
                    metric: string
                networks:
                    - address: string
                      matchType: string
                      metric: string
                      restrict: false
            natPool:
                allIpv6Routes:
                    enable: false
                    metric: string
                networks:
                    - address: string
                      metric: string
            ospf3ases:
                - allIpv6Routes:
                    enable: false
                    metric: string
                  instance: string
                  networks:
                    - address: string
                      matchType: string
                      metric: string
                      restrict: false
            ospf3s:
                - allIpv6Routes:
                    enable: false
                    metric: string
                  instance: string
                  networks:
                    - address: string
                      matchType: string
                      metric: string
                      restrict: false
            staticRoute:
                allIpv6Routes:
                    enable: false
                    metric: string
                default6:
                    enable: false
                    metric: string
                networks:
                    - address: string
                      metric: string
        gaiaRouteRedistributionToRipngId: string
        memberId: string
        reset: false
    

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

    Debug bool
    Enable debug logging for this resource.
    From GaiaRouteRedistributionToRipngFrom
    Configure policy for exporting routes to RIPng from blocks are documented below.
    GaiaRouteRedistributionToRipngId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Reset bool
    Removes RIPng Route Redistribution configuration
    Debug bool
    Enable debug logging for this resource.
    From GaiaRouteRedistributionToRipngFromArgs
    Configure policy for exporting routes to RIPng from blocks are documented below.
    GaiaRouteRedistributionToRipngId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Reset bool
    Removes RIPng Route Redistribution configuration
    debug bool
    Enable debug logging for this resource.
    from object
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaia_route_redistribution_to_ripng_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset bool
    Removes RIPng Route Redistribution configuration
    debug Boolean
    Enable debug logging for this resource.
    from GaiaRouteRedistributionToRipngFrom
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaiaRouteRedistributionToRipngId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset Boolean
    Removes RIPng Route Redistribution configuration
    debug boolean
    Enable debug logging for this resource.
    from GaiaRouteRedistributionToRipngFrom
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaiaRouteRedistributionToRipngId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset boolean
    Removes RIPng Route Redistribution configuration
    debug bool
    Enable debug logging for this resource.
    from_ GaiaRouteRedistributionToRipngFromArgs
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaia_route_redistribution_to_ripng_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset bool
    Removes RIPng Route Redistribution configuration
    debug Boolean
    Enable debug logging for this resource.
    from Property Map
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaiaRouteRedistributionToRipngId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset Boolean
    Removes RIPng Route Redistribution configuration

    Outputs

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

    Get an existing GaiaRouteRedistributionToRipng 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?: GaiaRouteRedistributionToRipngState, opts?: CustomResourceOptions): GaiaRouteRedistributionToRipng
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            from_: Optional[GaiaRouteRedistributionToRipngFromArgs] = None,
            gaia_route_redistribution_to_ripng_id: Optional[str] = None,
            member_id: Optional[str] = None,
            reset: Optional[bool] = None) -> GaiaRouteRedistributionToRipng
    func GetGaiaRouteRedistributionToRipng(ctx *Context, name string, id IDInput, state *GaiaRouteRedistributionToRipngState, opts ...ResourceOption) (*GaiaRouteRedistributionToRipng, error)
    public static GaiaRouteRedistributionToRipng Get(string name, Input<string> id, GaiaRouteRedistributionToRipngState? state, CustomResourceOptions? opts = null)
    public static GaiaRouteRedistributionToRipng get(String name, Output<String> id, GaiaRouteRedistributionToRipngState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaRouteRedistributionToRipng    get:      id: ${id}
    import {
      to = checkpoint_gaiarouteredistributiontoripng.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Debug bool
    Enable debug logging for this resource.
    From GaiaRouteRedistributionToRipngFrom
    Configure policy for exporting routes to RIPng from blocks are documented below.
    GaiaRouteRedistributionToRipngId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Reset bool
    Removes RIPng Route Redistribution configuration
    Debug bool
    Enable debug logging for this resource.
    From GaiaRouteRedistributionToRipngFromArgs
    Configure policy for exporting routes to RIPng from blocks are documented below.
    GaiaRouteRedistributionToRipngId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Reset bool
    Removes RIPng Route Redistribution configuration
    debug bool
    Enable debug logging for this resource.
    from object
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaia_route_redistribution_to_ripng_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset bool
    Removes RIPng Route Redistribution configuration
    debug Boolean
    Enable debug logging for this resource.
    from GaiaRouteRedistributionToRipngFrom
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaiaRouteRedistributionToRipngId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset Boolean
    Removes RIPng Route Redistribution configuration
    debug boolean
    Enable debug logging for this resource.
    from GaiaRouteRedistributionToRipngFrom
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaiaRouteRedistributionToRipngId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset boolean
    Removes RIPng Route Redistribution configuration
    debug bool
    Enable debug logging for this resource.
    from_ GaiaRouteRedistributionToRipngFromArgs
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaia_route_redistribution_to_ripng_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset bool
    Removes RIPng Route Redistribution configuration
    debug Boolean
    Enable debug logging for this resource.
    from Property Map
    Configure policy for exporting routes to RIPng from blocks are documented below.
    gaiaRouteRedistributionToRipngId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    reset Boolean
    Removes RIPng Route Redistribution configuration

    Supporting Types

    GaiaRouteRedistributionToRipngFrom, GaiaRouteRedistributionToRipngFromArgs

    Aggregate GaiaRouteRedistributionToRipngFromAggregate
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    BgpAsNumbers List<GaiaRouteRedistributionToRipngFromBgpAsNumber>
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    BgpAsPaths List<GaiaRouteRedistributionToRipngFromBgpAsPath>
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    Interfaces List<GaiaRouteRedistributionToRipngFromInterface>
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    Ises List<GaiaRouteRedistributionToRipngFromIse>
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    Kernel GaiaRouteRedistributionToRipngFromKernel
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    NatPool GaiaRouteRedistributionToRipngFromNatPool
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    Ospf3ases List<GaiaRouteRedistributionToRipngFromOspf3ase>
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    Ospf3s List<GaiaRouteRedistributionToRipngFromOspf3>
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    StaticRoute GaiaRouteRedistributionToRipngFromStaticRoute
    Redistribution of static routes into RIPng static_route blocks are documented below.
    Aggregate GaiaRouteRedistributionToRipngFromAggregate
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    BgpAsNumbers []GaiaRouteRedistributionToRipngFromBgpAsNumber
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    BgpAsPaths []GaiaRouteRedistributionToRipngFromBgpAsPath
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    Interfaces []GaiaRouteRedistributionToRipngFromInterface
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    Ises []GaiaRouteRedistributionToRipngFromIse
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    Kernel GaiaRouteRedistributionToRipngFromKernel
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    NatPool GaiaRouteRedistributionToRipngFromNatPool
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    Ospf3ases []GaiaRouteRedistributionToRipngFromOspf3ase
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    Ospf3s []GaiaRouteRedistributionToRipngFromOspf3
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    StaticRoute GaiaRouteRedistributionToRipngFromStaticRoute
    Redistribution of static routes into RIPng static_route blocks are documented below.
    aggregate object
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    bgp_as_numbers list(object)
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    bgp_as_paths list(object)
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    interfaces list(object)
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    ises list(object)
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    kernel object
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    nat_pool object
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    ospf3ases list(object)
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    ospf3s list(object)
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    static_route object
    Redistribution of static routes into RIPng static_route blocks are documented below.
    aggregate GaiaRouteRedistributionToRipngFromAggregate
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    bgpAsNumbers List<GaiaRouteRedistributionToRipngFromBgpAsNumber>
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    bgpAsPaths List<GaiaRouteRedistributionToRipngFromBgpAsPath>
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    interfaces List<GaiaRouteRedistributionToRipngFromInterface>
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    ises List<GaiaRouteRedistributionToRipngFromIse>
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    kernel GaiaRouteRedistributionToRipngFromKernel
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    natPool GaiaRouteRedistributionToRipngFromNatPool
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    ospf3ases List<GaiaRouteRedistributionToRipngFromOspf3ase>
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    ospf3s List<GaiaRouteRedistributionToRipngFromOspf3>
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    staticRoute GaiaRouteRedistributionToRipngFromStaticRoute
    Redistribution of static routes into RIPng static_route blocks are documented below.
    aggregate GaiaRouteRedistributionToRipngFromAggregate
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    bgpAsNumbers GaiaRouteRedistributionToRipngFromBgpAsNumber[]
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    bgpAsPaths GaiaRouteRedistributionToRipngFromBgpAsPath[]
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    interfaces GaiaRouteRedistributionToRipngFromInterface[]
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    ises GaiaRouteRedistributionToRipngFromIse[]
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    kernel GaiaRouteRedistributionToRipngFromKernel
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    natPool GaiaRouteRedistributionToRipngFromNatPool
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    ospf3ases GaiaRouteRedistributionToRipngFromOspf3ase[]
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    ospf3s GaiaRouteRedistributionToRipngFromOspf3[]
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    staticRoute GaiaRouteRedistributionToRipngFromStaticRoute
    Redistribution of static routes into RIPng static_route blocks are documented below.
    aggregate GaiaRouteRedistributionToRipngFromAggregate
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    bgp_as_numbers Sequence[GaiaRouteRedistributionToRipngFromBgpAsNumber]
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    bgp_as_paths Sequence[GaiaRouteRedistributionToRipngFromBgpAsPath]
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    interfaces Sequence[GaiaRouteRedistributionToRipngFromInterface]
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    ises Sequence[GaiaRouteRedistributionToRipngFromIse]
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    kernel GaiaRouteRedistributionToRipngFromKernel
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    nat_pool GaiaRouteRedistributionToRipngFromNatPool
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    ospf3ases Sequence[GaiaRouteRedistributionToRipngFromOspf3ase]
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    ospf3s Sequence[GaiaRouteRedistributionToRipngFromOspf3]
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    static_route GaiaRouteRedistributionToRipngFromStaticRoute
    Redistribution of static routes into RIPng static_route blocks are documented below.
    aggregate Property Map
    Specifies the aggregate route to redistribute into RIPng aggregate blocks are documented below.
    bgpAsNumbers List<Property Map>
    Configures Autonomous System numbers of the BGP group from which to export routes into RIPng bgp_as_number blocks are documented below.
    bgpAsPaths List<Property Map>
    Configures the redistribution of BGP routes, whose AS path matches a given regular expression into RIPng bgp_as_path blocks are documented below.
    interfaces List<Property Map>
    Configures the redistribution of all directly connected routes from an interface into RIPng interface blocks are documented below.
    ises List<Property Map>
    Configures the redistribution of IS-IS routes into RIPng isis blocks are documented below.
    kernel Property Map
    Redistribution of kernel routes into RIPng. Note: It may be inadvisable in certain cases to redistribute kernel routes into another protocol. Kernel routes usually exist upon startup of routed, before the routing table has settled, when error conditions or bad routes may be present. Use caution when configuring route redistribution from the kernel. kernel blocks are documented below.
    natPool Property Map
    Redistribution of NAT pools into RIPng nat_pool blocks are documented below.
    ospf3ases List<Property Map>
    Configures the redistribution of IPv6 OSPF Autonomous System External routes into RIPng ospf3ase blocks are documented below.
    ospf3s List<Property Map>
    Configures the redistribution of IPv6 OSPF routes into RIPng ospf3 blocks are documented below.
    staticRoute Property Map
    Redistribution of static routes into RIPng static_route blocks are documented below.

    GaiaRouteRedistributionToRipngFromAggregate, GaiaRouteRedistributionToRipngFromAggregateArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromAggregateAllIpv6Routes
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    Networks List<GaiaRouteRedistributionToRipngFromAggregateNetwork>
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromAggregateAllIpv6Routes
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    Networks []GaiaRouteRedistributionToRipngFromAggregateNetwork
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.
    all_ipv6_routes object
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    networks list(object)
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromAggregateAllIpv6Routes
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    networks List<GaiaRouteRedistributionToRipngFromAggregateNetwork>
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromAggregateAllIpv6Routes
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    networks GaiaRouteRedistributionToRipngFromAggregateNetwork[]
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromAggregateAllIpv6Routes
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    networks Sequence[GaiaRouteRedistributionToRipngFromAggregateNetwork]
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.
    allIpv6Routes Property Map
    Matches all IPv6 aggregate routes all_ipv6_routes blocks are documented below.
    networks List<Property Map>
    Matches specific IPv6 aggregate routes. The aggregate routes have to be already configured. network blocks are documented below.

    GaiaRouteRedistributionToRipngFromAggregateAllIpv6Routes, GaiaRouteRedistributionToRipngFromAggregateAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromAggregateNetwork, GaiaRouteRedistributionToRipngFromAggregateNetworkArgs

    Address string
    Specifies IPv6 network
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Address string
    Specifies IPv6 network
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address string
    Specifies IPv6 network
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address String
    Specifies IPv6 network
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    address string
    Specifies IPv6 network
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address str
    Specifies IPv6 network
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    address String
    Specifies IPv6 network
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule

    GaiaRouteRedistributionToRipngFromBgpAsNumber, GaiaRouteRedistributionToRipngFromBgpAsNumberArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    AsNumber string
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    Networks List<GaiaRouteRedistributionToRipngFromBgpAsNumberNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    AsNumber string
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    Networks []GaiaRouteRedistributionToRipngFromBgpAsNumberNetwork
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    as_number string
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    networks list(object)
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    asNumber String
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    networks List<GaiaRouteRedistributionToRipngFromBgpAsNumberNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    asNumber string
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    networks GaiaRouteRedistributionToRipngFromBgpAsNumberNetwork[]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    as_number str
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    networks Sequence[GaiaRouteRedistributionToRipngFromBgpAsNumberNetwork]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    asNumber String
    Configured Autonomous System Number. Valid Values are 1 - 4294967295 or 0.1 - 65535.65535. The ASN format can be changed to dotted or plain format using the following command 'set format asn dotted/plain'.
    networks List<Property Map>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.

    GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6Routes, GaiaRouteRedistributionToRipngFromBgpAsNumberAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromBgpAsNumberNetwork, GaiaRouteRedistributionToRipngFromBgpAsNumberNetworkArgs

    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    match_type string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    matchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address str
    Specifies IPv6 network
    match_type str
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted

    GaiaRouteRedistributionToRipngFromBgpAsPath, GaiaRouteRedistributionToRipngFromBgpAsPathArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    AspathRegex string
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    Networks List<GaiaRouteRedistributionToRipngFromBgpAsPathNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    Origin string
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    AspathRegex string
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    Networks []GaiaRouteRedistributionToRipngFromBgpAsPathNetwork
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    Origin string
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    aspath_regex string
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    networks list(object)
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    origin string
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.
    allIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    aspathRegex String
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    networks List<GaiaRouteRedistributionToRipngFromBgpAsPathNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    origin String
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.
    allIpv6Routes GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    aspathRegex string
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    networks GaiaRouteRedistributionToRipngFromBgpAsPathNetwork[]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    origin string
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    aspath_regex str
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    networks Sequence[GaiaRouteRedistributionToRipngFromBgpAsPathNetwork]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    origin str
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    aspathRegex String
    Configures the redistribution of BGP routes, whose AS path matches the given regular expression. Valid Values are regular expressions surrounded by double quotes ("). The regular expression can only have digits, a colon (:) and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
    networks List<Property Map>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    origin String
    Specifies the completeness of the AS path information. Only a single origin should be used with a regular expression. Any - Matches any routes, regardless of origin. IGP - Route was learned from an interior routing protocol and the AS path is probably complete. EGP - Route was learned from an exterior routing protocol that does not support AS paths and the path is probably incomplete. incomplete - Use when the AS path information is incomplete.

    GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6Routes, GaiaRouteRedistributionToRipngFromBgpAsPathAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromBgpAsPathNetwork, GaiaRouteRedistributionToRipngFromBgpAsPathNetworkArgs

    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    match_type string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    matchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address str
    Specifies IPv6 network
    match_type str
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted

    GaiaRouteRedistributionToRipngFromInterface, GaiaRouteRedistributionToRipngFromInterfaceArgs

    Interface string
    Specifies the name of the interface
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers
    Interface string
    Specifies the name of the interface
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers
    interface string
    Specifies the name of the interface
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers
    interface_ String
    Specifies the name of the interface
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers
    interface string
    Specifies the name of the interface
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers
    interface str
    Specifies the name of the interface
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers
    interface String
    Specifies the name of the interface
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers

    GaiaRouteRedistributionToRipngFromIse, GaiaRouteRedistributionToRipngFromIseArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromIseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Level string
    Specifies which IS-IS level the route redistribution is applied to
    Networks List<GaiaRouteRedistributionToRipngFromIseNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromIseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Level string
    Specifies which IS-IS level the route redistribution is applied to
    Networks []GaiaRouteRedistributionToRipngFromIseNetwork
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    level string
    Specifies which IS-IS level the route redistribution is applied to
    networks list(object)
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromIseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    level String
    Specifies which IS-IS level the route redistribution is applied to
    networks List<GaiaRouteRedistributionToRipngFromIseNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromIseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    level string
    Specifies which IS-IS level the route redistribution is applied to
    networks GaiaRouteRedistributionToRipngFromIseNetwork[]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromIseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    level str
    Specifies which IS-IS level the route redistribution is applied to
    networks Sequence[GaiaRouteRedistributionToRipngFromIseNetwork]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    level String
    Specifies which IS-IS level the route redistribution is applied to
    networks List<Property Map>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.

    GaiaRouteRedistributionToRipngFromIseAllIpv6Routes, GaiaRouteRedistributionToRipngFromIseAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromIseNetwork, GaiaRouteRedistributionToRipngFromIseNetworkArgs

    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    match_type string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    matchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address str
    Specifies IPv6 network
    match_type str
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted

    GaiaRouteRedistributionToRipngFromKernel, GaiaRouteRedistributionToRipngFromKernelArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromKernelAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Networks List<GaiaRouteRedistributionToRipngFromKernelNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromKernelAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Networks []GaiaRouteRedistributionToRipngFromKernelNetwork
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    networks list(object)
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromKernelAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    networks List<GaiaRouteRedistributionToRipngFromKernelNetwork>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromKernelAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    networks GaiaRouteRedistributionToRipngFromKernelNetwork[]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromKernelAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    networks Sequence[GaiaRouteRedistributionToRipngFromKernelNetwork]
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    networks List<Property Map>
    Applies this configuration to all routes from the given protocol described by a network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.

    GaiaRouteRedistributionToRipngFromKernelAllIpv6Routes, GaiaRouteRedistributionToRipngFromKernelAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromKernelNetwork, GaiaRouteRedistributionToRipngFromKernelNetworkArgs

    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    match_type string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    matchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address str
    Specifies IPv6 network
    match_type str
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted

    GaiaRouteRedistributionToRipngFromNatPool, GaiaRouteRedistributionToRipngFromNatPoolArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromNatPoolAllIpv6Routes
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    Networks List<GaiaRouteRedistributionToRipngFromNatPoolNetwork>
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromNatPoolAllIpv6Routes
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    Networks []GaiaRouteRedistributionToRipngFromNatPoolNetwork
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.
    all_ipv6_routes object
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    networks list(object)
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromNatPoolAllIpv6Routes
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    networks List<GaiaRouteRedistributionToRipngFromNatPoolNetwork>
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromNatPoolAllIpv6Routes
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    networks GaiaRouteRedistributionToRipngFromNatPoolNetwork[]
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromNatPoolAllIpv6Routes
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    networks Sequence[GaiaRouteRedistributionToRipngFromNatPoolNetwork]
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.
    allIpv6Routes Property Map
    Matches all IPv4 NAT pools all_ipv6_routes blocks are documented below.
    networks List<Property Map>
    Matches specific IPv6 NAT pools. The NAT pool has to be already configured. network blocks are documented below.

    GaiaRouteRedistributionToRipngFromNatPoolAllIpv6Routes, GaiaRouteRedistributionToRipngFromNatPoolAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromNatPoolNetwork, GaiaRouteRedistributionToRipngFromNatPoolNetworkArgs

    Address string
    Specifies IPv6 network
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Address string
    Specifies IPv6 network
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address string
    Specifies IPv6 network
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address String
    Specifies IPv6 network
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    address string
    Specifies IPv6 network
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address str
    Specifies IPv6 network
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    address String
    Specifies IPv6 network
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule

    GaiaRouteRedistributionToRipngFromOspf3, GaiaRouteRedistributionToRipngFromOspf3Args

    AllIpv6Routes GaiaRouteRedistributionToRipngFromOspf3AllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Instance string
    Redistribute routes from a specific OSPF instance
    Networks List<GaiaRouteRedistributionToRipngFromOspf3Network>
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromOspf3AllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Instance string
    Redistribute routes from a specific OSPF instance
    Networks []GaiaRouteRedistributionToRipngFromOspf3Network
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance string
    Redistribute routes from a specific OSPF instance
    networks list(object)
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromOspf3AllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance String
    Redistribute routes from a specific OSPF instance
    networks List<GaiaRouteRedistributionToRipngFromOspf3Network>
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromOspf3AllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance string
    Redistribute routes from a specific OSPF instance
    networks GaiaRouteRedistributionToRipngFromOspf3Network[]
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromOspf3AllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance str
    Redistribute routes from a specific OSPF instance
    networks Sequence[GaiaRouteRedistributionToRipngFromOspf3Network]
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance String
    Redistribute routes from a specific OSPF instance
    networks List<Property Map>
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.

    GaiaRouteRedistributionToRipngFromOspf3AllIpv6Routes, GaiaRouteRedistributionToRipngFromOspf3AllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromOspf3Network, GaiaRouteRedistributionToRipngFromOspf3NetworkArgs

    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    match_type string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    matchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address str
    Specifies IPv6 network
    match_type str
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted

    GaiaRouteRedistributionToRipngFromOspf3ase, GaiaRouteRedistributionToRipngFromOspf3aseArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Instance string
    Redistribute routes from a specific OSPF instance
    Networks List<GaiaRouteRedistributionToRipngFromOspf3aseNetwork>
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Instance string
    Redistribute routes from a specific OSPF instance
    Networks []GaiaRouteRedistributionToRipngFromOspf3aseNetwork
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance string
    Redistribute routes from a specific OSPF instance
    networks list(object)
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance String
    Redistribute routes from a specific OSPF instance
    networks List<GaiaRouteRedistributionToRipngFromOspf3aseNetwork>
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance string
    Redistribute routes from a specific OSPF instance
    networks GaiaRouteRedistributionToRipngFromOspf3aseNetwork[]
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance str
    Redistribute routes from a specific OSPF instance
    networks Sequence[GaiaRouteRedistributionToRipngFromOspf3aseNetwork]
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    instance String
    Redistribute routes from a specific OSPF instance
    networks List<Property Map>
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies. Note: When network objects are specified, previous objects will be overwritten network blocks are documented below.

    GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6Routes, GaiaRouteRedistributionToRipngFromOspf3aseAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromOspf3aseNetwork, GaiaRouteRedistributionToRipngFromOspf3aseNetworkArgs

    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    Address string
    Specifies IPv6 network
    MatchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    match_type string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address string
    Specifies IPv6 network
    matchType string
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address str
    Specifies IPv6 network
    match_type str
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict bool
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted
    address String
    Specifies IPv6 network
    matchType String
    Defines how routes are matched to the network. The match types are as follows: Match Type Description Normal Matches any route contained within the specified network Exact Matches only routes with the prefix and mask length exactly equal to the specified network Refines Matches only routes that are more specific than the specified network Range Matches any route whose IP prefix equals the specified network and whose mask length falls within the specified mask length range (Network needs to be IPv4 in order to specify this value)
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    restrict Boolean
    Specifies whether to accept or restrict routes that match the given rule. By default routes are accepted

    GaiaRouteRedistributionToRipngFromStaticRoute, GaiaRouteRedistributionToRipngFromStaticRouteArgs

    AllIpv6Routes GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Default6 GaiaRouteRedistributionToRipngFromStaticRouteDefault6
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    Networks List<GaiaRouteRedistributionToRipngFromStaticRouteNetwork>
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.
    AllIpv6Routes GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    Default6 GaiaRouteRedistributionToRipngFromStaticRouteDefault6
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    Networks []GaiaRouteRedistributionToRipngFromStaticRouteNetwork
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.
    all_ipv6_routes object
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    default6 object
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    networks list(object)
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    default6 GaiaRouteRedistributionToRipngFromStaticRouteDefault6
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    networks List<GaiaRouteRedistributionToRipngFromStaticRouteNetwork>
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.
    allIpv6Routes GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    default6 GaiaRouteRedistributionToRipngFromStaticRouteDefault6
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    networks GaiaRouteRedistributionToRipngFromStaticRouteNetwork[]
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.
    all_ipv6_routes GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6Routes
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    default6 GaiaRouteRedistributionToRipngFromStaticRouteDefault6
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    networks Sequence[GaiaRouteRedistributionToRipngFromStaticRouteNetwork]
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.
    allIpv6Routes Property Map
    Applies this route redistrution rule to all IPv6 routes from this protocol, unless a more specific route redistribution rule applies all_ipv6_routes blocks are documented below.
    default6 Property Map
    Applies this configuration to all routes from the given protocol described by an IPv6 network, unless a more specific route redistribution rule applies default6 blocks are documented below.
    networks List<Property Map>
    Matches specific IPv6 static routes. The static route has to be already configured. network blocks are documented below.

    GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6Routes, GaiaRouteRedistributionToRipngFromStaticRouteAllIpv6RoutesArgs

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromStaticRouteDefault6, GaiaRouteRedistributionToRipngFromStaticRouteDefault6Args

    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    Enable bool
    Enables or disables the metric value
    Metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule
    enable boolean
    Enables or disables the metric value
    metric string
    Specifies RIPng metric value to routes matching this rule
    enable bool
    Enables or disables the metric value
    metric str
    Specifies RIPng metric value to routes matching this rule
    enable Boolean
    Enables or disables the metric value
    metric String
    Specifies RIPng metric value to routes matching this rule

    GaiaRouteRedistributionToRipngFromStaticRouteNetwork, GaiaRouteRedistributionToRipngFromStaticRouteNetworkArgs

    Address string
    Specifies IPv6 network
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    Address string
    Specifies IPv6 network
    Metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address string
    Specifies IPv6 network
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address String
    Specifies IPv6 network
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule
    address string
    Specifies IPv6 network
    metric string
    Specifies the BGP metric to be added to routes redistributed via this rule
    address str
    Specifies IPv6 network
    metric str
    Specifies the BGP metric to be added to routes redistributed via this rule
    address String
    Specifies IPv6 network
    metric String
    Specifies the BGP metric to be added to routes redistributed via this rule

    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