@@ -581,6 +581,10 @@ func dataSourceRouterBgp() *schema.Resource {
581581 Type : schema .TypeString ,
582582 Computed : true ,
583583 },
584+ "filter_list_in_vpnv4" : & schema.Schema {
585+ Type : schema .TypeString ,
586+ Computed : true ,
587+ },
584588 "filter_list_out" : & schema.Schema {
585589 Type : schema .TypeString ,
586590 Computed : true ,
@@ -589,6 +593,10 @@ func dataSourceRouterBgp() *schema.Resource {
589593 Type : schema .TypeString ,
590594 Computed : true ,
591595 },
596+ "filter_list_out_vpnv4" : & schema.Schema {
597+ Type : schema .TypeString ,
598+ Computed : true ,
599+ },
592600 "interface" : & schema.Schema {
593601 Type : schema .TypeString ,
594602 Computed : true ,
@@ -1138,6 +1146,10 @@ func dataSourceRouterBgp() *schema.Resource {
11381146 Type : schema .TypeString ,
11391147 Computed : true ,
11401148 },
1149+ "filter_list_in_vpnv4" : & schema.Schema {
1150+ Type : schema .TypeString ,
1151+ Computed : true ,
1152+ },
11411153 "filter_list_out" : & schema.Schema {
11421154 Type : schema .TypeString ,
11431155 Computed : true ,
@@ -1146,6 +1158,10 @@ func dataSourceRouterBgp() *schema.Resource {
11461158 Type : schema .TypeString ,
11471159 Computed : true ,
11481160 },
1161+ "filter_list_out_vpnv4" : & schema.Schema {
1162+ Type : schema .TypeString ,
1163+ Computed : true ,
1164+ },
11491165 "interface" : & schema.Schema {
11501166 Type : schema .TypeString ,
11511167 Computed : true ,
@@ -2483,6 +2499,11 @@ func dataSourceFlattenRouterBgpNeighbor(v interface{}, d *schema.ResourceData, p
24832499 tmp ["filter_list_in6" ] = dataSourceFlattenRouterBgpNeighborFilterListIn6 (i ["filter-list-in6" ], d , pre_append )
24842500 }
24852501
2502+ pre_append = pre + "." + strconv .Itoa (con ) + "." + "filter_list_in_vpnv4"
2503+ if _ , ok := i ["filter-list-in-vpnv4" ]; ok {
2504+ tmp ["filter_list_in_vpnv4" ] = dataSourceFlattenRouterBgpNeighborFilterListInVpnv4 (i ["filter-list-in-vpnv4" ], d , pre_append )
2505+ }
2506+
24862507 pre_append = pre + "." + strconv .Itoa (con ) + "." + "filter_list_out"
24872508 if _ , ok := i ["filter-list-out" ]; ok {
24882509 tmp ["filter_list_out" ] = dataSourceFlattenRouterBgpNeighborFilterListOut (i ["filter-list-out" ], d , pre_append )
@@ -2493,6 +2514,11 @@ func dataSourceFlattenRouterBgpNeighbor(v interface{}, d *schema.ResourceData, p
24932514 tmp ["filter_list_out6" ] = dataSourceFlattenRouterBgpNeighborFilterListOut6 (i ["filter-list-out6" ], d , pre_append )
24942515 }
24952516
2517+ pre_append = pre + "." + strconv .Itoa (con ) + "." + "filter_list_out_vpnv4"
2518+ if _ , ok := i ["filter-list-out-vpnv4" ]; ok {
2519+ tmp ["filter_list_out_vpnv4" ] = dataSourceFlattenRouterBgpNeighborFilterListOutVpnv4 (i ["filter-list-out-vpnv4" ], d , pre_append )
2520+ }
2521+
24962522 pre_append = pre + "." + strconv .Itoa (con ) + "." + "interface"
24972523 if _ , ok := i ["interface" ]; ok {
24982524 tmp ["interface" ] = dataSourceFlattenRouterBgpNeighborInterface (i ["interface" ], d , pre_append )
@@ -3069,6 +3095,10 @@ func dataSourceFlattenRouterBgpNeighborFilterListIn6(v interface{}, d *schema.Re
30693095 return v
30703096}
30713097
3098+ func dataSourceFlattenRouterBgpNeighborFilterListInVpnv4 (v interface {}, d * schema.ResourceData , pre string ) interface {} {
3099+ return v
3100+ }
3101+
30723102func dataSourceFlattenRouterBgpNeighborFilterListOut (v interface {}, d * schema.ResourceData , pre string ) interface {} {
30733103 return v
30743104}
@@ -3077,6 +3107,10 @@ func dataSourceFlattenRouterBgpNeighborFilterListOut6(v interface{}, d *schema.R
30773107 return v
30783108}
30793109
3110+ func dataSourceFlattenRouterBgpNeighborFilterListOutVpnv4 (v interface {}, d * schema.ResourceData , pre string ) interface {} {
3111+ return v
3112+ }
3113+
30803114func dataSourceFlattenRouterBgpNeighborInterface (v interface {}, d * schema.ResourceData , pre string ) interface {} {
30813115 return v
30823116}
@@ -3775,6 +3809,11 @@ func dataSourceFlattenRouterBgpNeighborGroup(v interface{}, d *schema.ResourceDa
37753809 tmp ["filter_list_in6" ] = dataSourceFlattenRouterBgpNeighborGroupFilterListIn6 (i ["filter-list-in6" ], d , pre_append )
37763810 }
37773811
3812+ pre_append = pre + "." + strconv .Itoa (con ) + "." + "filter_list_in_vpnv4"
3813+ if _ , ok := i ["filter-list-in-vpnv4" ]; ok {
3814+ tmp ["filter_list_in_vpnv4" ] = dataSourceFlattenRouterBgpNeighborGroupFilterListInVpnv4 (i ["filter-list-in-vpnv4" ], d , pre_append )
3815+ }
3816+
37783817 pre_append = pre + "." + strconv .Itoa (con ) + "." + "filter_list_out"
37793818 if _ , ok := i ["filter-list-out" ]; ok {
37803819 tmp ["filter_list_out" ] = dataSourceFlattenRouterBgpNeighborGroupFilterListOut (i ["filter-list-out" ], d , pre_append )
@@ -3785,6 +3824,11 @@ func dataSourceFlattenRouterBgpNeighborGroup(v interface{}, d *schema.ResourceDa
37853824 tmp ["filter_list_out6" ] = dataSourceFlattenRouterBgpNeighborGroupFilterListOut6 (i ["filter-list-out6" ], d , pre_append )
37863825 }
37873826
3827+ pre_append = pre + "." + strconv .Itoa (con ) + "." + "filter_list_out_vpnv4"
3828+ if _ , ok := i ["filter-list-out-vpnv4" ]; ok {
3829+ tmp ["filter_list_out_vpnv4" ] = dataSourceFlattenRouterBgpNeighborGroupFilterListOutVpnv4 (i ["filter-list-out-vpnv4" ], d , pre_append )
3830+ }
3831+
37883832 pre_append = pre + "." + strconv .Itoa (con ) + "." + "interface"
37893833 if _ , ok := i ["interface" ]; ok {
37903834 tmp ["interface" ] = dataSourceFlattenRouterBgpNeighborGroupInterface (i ["interface" ], d , pre_append )
@@ -4351,6 +4395,10 @@ func dataSourceFlattenRouterBgpNeighborGroupFilterListIn6(v interface{}, d *sche
43514395 return v
43524396}
43534397
4398+ func dataSourceFlattenRouterBgpNeighborGroupFilterListInVpnv4 (v interface {}, d * schema.ResourceData , pre string ) interface {} {
4399+ return v
4400+ }
4401+
43544402func dataSourceFlattenRouterBgpNeighborGroupFilterListOut (v interface {}, d * schema.ResourceData , pre string ) interface {} {
43554403 return v
43564404}
@@ -4359,6 +4407,10 @@ func dataSourceFlattenRouterBgpNeighborGroupFilterListOut6(v interface{}, d *sch
43594407 return v
43604408}
43614409
4410+ func dataSourceFlattenRouterBgpNeighborGroupFilterListOutVpnv4 (v interface {}, d * schema.ResourceData , pre string ) interface {} {
4411+ return v
4412+ }
4413+
43624414func dataSourceFlattenRouterBgpNeighborGroupInterface (v interface {}, d * schema.ResourceData , pre string ) interface {} {
43634415 return v
43644416}
0 commit comments