BgpAddressFamilyProfile data source
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Look up bgp address family profile by its ID.
const scmBgpAddressFamilyProfileDs = scm.getBgpAddressFamilyProfile({
id: "83ccef34-c29a-4e88-a99b-d0355440174e",
});
export const scmBgpAddressFamilyProfileDsResults = {
id: scmBgpAddressFamilyProfileDs.then(scmBgpAddressFamilyProfileDs => scmBgpAddressFamilyProfileDs.id),
name: scmBgpAddressFamilyProfileDs.then(scmBgpAddressFamilyProfileDs => scmBgpAddressFamilyProfileDs.name),
ipv4: scmBgpAddressFamilyProfileDs.then(scmBgpAddressFamilyProfileDs => scmBgpAddressFamilyProfileDs.ipv4),
folder: scmBgpAddressFamilyProfileDs.then(scmBgpAddressFamilyProfileDs => scmBgpAddressFamilyProfileDs.folder),
};
import pulumi
import pulumi_scm as scm
# Look up bgp address family profile by its ID.
scm_bgp_address_family_profile_ds = scm.get_bgp_address_family_profile(id="83ccef34-c29a-4e88-a99b-d0355440174e")
pulumi.export("scmBgpAddressFamilyProfileDsResults", {
"id": scm_bgp_address_family_profile_ds.id,
"name": scm_bgp_address_family_profile_ds.name,
"ipv4": scm_bgp_address_family_profile_ds.ipv4,
"folder": scm_bgp_address_family_profile_ds.folder,
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Look up bgp address family profile by its ID.
scmBgpAddressFamilyProfileDs, err := scm.LookupBgpAddressFamilyProfile(ctx, &scm.LookupBgpAddressFamilyProfileArgs{
Id: "83ccef34-c29a-4e88-a99b-d0355440174e",
}, nil)
if err != nil {
return err
}
ctx.Export("scmBgpAddressFamilyProfileDsResults", pulumi.Map{
"id": scmBgpAddressFamilyProfileDs.Id,
"name": scmBgpAddressFamilyProfileDs.Name,
"ipv4": scmBgpAddressFamilyProfileDs.Ipv4,
"folder": scmBgpAddressFamilyProfileDs.Folder,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Look up bgp address family profile by its ID.
var scmBgpAddressFamilyProfileDs = Scm.GetBgpAddressFamilyProfile.Invoke(new()
{
Id = "83ccef34-c29a-4e88-a99b-d0355440174e",
});
return new Dictionary<string, object?>
{
["scmBgpAddressFamilyProfileDsResults"] =
{
{ "id", scmBgpAddressFamilyProfileDs.Apply(getBgpAddressFamilyProfileResult => getBgpAddressFamilyProfileResult.Id) },
{ "name", scmBgpAddressFamilyProfileDs.Apply(getBgpAddressFamilyProfileResult => getBgpAddressFamilyProfileResult.Name) },
{ "ipv4", scmBgpAddressFamilyProfileDs.Apply(getBgpAddressFamilyProfileResult => getBgpAddressFamilyProfileResult.Ipv4) },
{ "folder", scmBgpAddressFamilyProfileDs.Apply(getBgpAddressFamilyProfileResult => getBgpAddressFamilyProfileResult.Folder) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScmFunctions;
import com.pulumi.scm.inputs.GetBgpAddressFamilyProfileArgs;
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) {
// Look up bgp address family profile by its ID.
final var scmBgpAddressFamilyProfileDs = ScmFunctions.getBgpAddressFamilyProfile(GetBgpAddressFamilyProfileArgs.builder()
.id("83ccef34-c29a-4e88-a99b-d0355440174e")
.build());
ctx.export("scmBgpAddressFamilyProfileDsResults", Map.ofEntries(
Map.entry("id", scmBgpAddressFamilyProfileDs.id()),
Map.entry("name", scmBgpAddressFamilyProfileDs.name()),
Map.entry("ipv4", scmBgpAddressFamilyProfileDs.ipv4()),
Map.entry("folder", scmBgpAddressFamilyProfileDs.folder())
));
}
}
variables:
# Look up bgp address family profile by its ID.
scmBgpAddressFamilyProfileDs:
fn::invoke:
function: scm:getBgpAddressFamilyProfile
arguments:
id: 83ccef34-c29a-4e88-a99b-d0355440174e
outputs:
# Output various attributes from the found bgp address family profile to verify the lookups were successful.
scmBgpAddressFamilyProfileDsResults:
id: ${scmBgpAddressFamilyProfileDs.id}
name: ${scmBgpAddressFamilyProfileDs.name}
ipv4: ${scmBgpAddressFamilyProfileDs.ipv4}
folder: ${scmBgpAddressFamilyProfileDs.folder}
Using getBgpAddressFamilyProfile
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBgpAddressFamilyProfile(args: GetBgpAddressFamilyProfileArgs, opts?: InvokeOptions): Promise<GetBgpAddressFamilyProfileResult>
function getBgpAddressFamilyProfileOutput(args: GetBgpAddressFamilyProfileOutputArgs, opts?: InvokeOptions): Output<GetBgpAddressFamilyProfileResult>def get_bgp_address_family_profile(device: Optional[str] = None,
folder: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBgpAddressFamilyProfileResult
def get_bgp_address_family_profile_output(device: Optional[pulumi.Input[str]] = None,
folder: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBgpAddressFamilyProfileResult]func LookupBgpAddressFamilyProfile(ctx *Context, args *LookupBgpAddressFamilyProfileArgs, opts ...InvokeOption) (*LookupBgpAddressFamilyProfileResult, error)
func LookupBgpAddressFamilyProfileOutput(ctx *Context, args *LookupBgpAddressFamilyProfileOutputArgs, opts ...InvokeOption) LookupBgpAddressFamilyProfileResultOutput> Note: This function is named LookupBgpAddressFamilyProfile in the Go SDK.
public static class GetBgpAddressFamilyProfile
{
public static Task<GetBgpAddressFamilyProfileResult> InvokeAsync(GetBgpAddressFamilyProfileArgs args, InvokeOptions? opts = null)
public static Output<GetBgpAddressFamilyProfileResult> Invoke(GetBgpAddressFamilyProfileInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetBgpAddressFamilyProfileResult> getBgpAddressFamilyProfile(GetBgpAddressFamilyProfileArgs args, InvokeOptions options)
public static Output<GetBgpAddressFamilyProfileResult> getBgpAddressFamilyProfile(GetBgpAddressFamilyProfileArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getBgpAddressFamilyProfile:getBgpAddressFamilyProfile
arguments:
# arguments dictionaryThe following arguments are supported:
getBgpAddressFamilyProfile Result
The following output properties are available:
Supporting Types
GetBgpAddressFamilyProfileIpv4
- multicast Property Map
- Multicast
- unicast Property Map
- Unicast
GetBgpAddressFamilyProfileIpv4Multicast
- Add
Path GetBgp Address Family Profile Ipv4Multicast Add Path - Add path
- Allowas
In GetBgp Address Family Profile Ipv4Multicast Allowas In - Allowas in
- As
Override bool - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- Default
Originate bool - Originate default route?
- Default
Originate stringMap - Default originate route map
- Enable bool
- Enable?
- Maximum
Prefix GetBgp Address Family Profile Ipv4Multicast Maximum Prefix - Maximum prefix
- Next
Hop GetBgp Address Family Profile Ipv4Multicast Next Hop - Next hop
- Orf
Get
Bgp Address Family Profile Ipv4Multicast Orf - Orf
- Remove
Private GetAs Bgp Address Family Profile Ipv4Multicast Remove Private As - Remove private a s
- Route
Reflector boolClient - Route reflector client?
- Send
Community GetBgp Address Family Profile Ipv4Multicast Send Community - Send community
- Soft
Reconfig boolWith Stored Info - Soft reconfiguration of peer with stored routes?
- Add
Path GetBgp Address Family Profile Ipv4Multicast Add Path - Add path
- Allowas
In GetBgp Address Family Profile Ipv4Multicast Allowas In - Allowas in
- As
Override bool - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- Default
Originate bool - Originate default route?
- Default
Originate stringMap - Default originate route map
- Enable bool
- Enable?
- Maximum
Prefix GetBgp Address Family Profile Ipv4Multicast Maximum Prefix - Maximum prefix
- Next
Hop GetBgp Address Family Profile Ipv4Multicast Next Hop - Next hop
- Orf
Get
Bgp Address Family Profile Ipv4Multicast Orf - Orf
- Remove
Private GetAs Bgp Address Family Profile Ipv4Multicast Remove Private As - Remove private a s
- Route
Reflector boolClient - Route reflector client?
- Send
Community GetBgp Address Family Profile Ipv4Multicast Send Community - Send community
- Soft
Reconfig boolWith Stored Info - Soft reconfiguration of peer with stored routes?
- add
Path GetBgp Address Family Profile Ipv4Multicast Add Path - Add path
- allowas
In GetBgp Address Family Profile Ipv4Multicast Allowas In - Allowas in
- as
Override Boolean - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default
Originate Boolean - Originate default route?
- default
Originate StringMap - Default originate route map
- enable Boolean
- Enable?
- maximum
Prefix GetBgp Address Family Profile Ipv4Multicast Maximum Prefix - Maximum prefix
- next
Hop GetBgp Address Family Profile Ipv4Multicast Next Hop - Next hop
- orf
Get
Bgp Address Family Profile Ipv4Multicast Orf - Orf
- remove
Private GetAs Bgp Address Family Profile Ipv4Multicast Remove Private As - Remove private a s
- route
Reflector BooleanClient - Route reflector client?
- send
Community GetBgp Address Family Profile Ipv4Multicast Send Community - Send community
- soft
Reconfig BooleanWith Stored Info - Soft reconfiguration of peer with stored routes?
- add
Path GetBgp Address Family Profile Ipv4Multicast Add Path - Add path
- allowas
In GetBgp Address Family Profile Ipv4Multicast Allowas In - Allowas in
- as
Override boolean - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default
Originate boolean - Originate default route?
- default
Originate stringMap - Default originate route map
- enable boolean
- Enable?
- maximum
Prefix GetBgp Address Family Profile Ipv4Multicast Maximum Prefix - Maximum prefix
- next
Hop GetBgp Address Family Profile Ipv4Multicast Next Hop - Next hop
- orf
Get
Bgp Address Family Profile Ipv4Multicast Orf - Orf
- remove
Private GetAs Bgp Address Family Profile Ipv4Multicast Remove Private As - Remove private a s
- route
Reflector booleanClient - Route reflector client?
- send
Community GetBgp Address Family Profile Ipv4Multicast Send Community - Send community
- soft
Reconfig booleanWith Stored Info - Soft reconfiguration of peer with stored routes?
- add_
path GetBgp Address Family Profile Ipv4Multicast Add Path - Add path
- allowas_
in GetBgp Address Family Profile Ipv4Multicast Allowas In - Allowas in
- as_
override bool - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default_
originate bool - Originate default route?
- default_
originate_ strmap - Default originate route map
- enable bool
- Enable?
- maximum_
prefix GetBgp Address Family Profile Ipv4Multicast Maximum Prefix - Maximum prefix
- next_
hop GetBgp Address Family Profile Ipv4Multicast Next Hop - Next hop
- orf
Get
Bgp Address Family Profile Ipv4Multicast Orf - Orf
- remove_
private_ Getas Bgp Address Family Profile Ipv4Multicast Remove Private As - Remove private a s
- route_
reflector_ boolclient - Route reflector client?
- send_
community GetBgp Address Family Profile Ipv4Multicast Send Community - Send community
- soft_
reconfig_ boolwith_ stored_ info - Soft reconfiguration of peer with stored routes?
- add
Path Property Map - Add path
- allowas
In Property Map - Allowas in
- as
Override Boolean - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default
Originate Boolean - Originate default route?
- default
Originate StringMap - Default originate route map
- enable Boolean
- Enable?
- maximum
Prefix Property Map - Maximum prefix
- next
Hop Property Map - Next hop
- orf Property Map
- Orf
- remove
Private Property MapAs - Remove private a s
- route
Reflector BooleanClient - Route reflector client?
- send
Community Property Map - Send community
- soft
Reconfig BooleanWith Stored Info - Soft reconfiguration of peer with stored routes?
GetBgpAddressFamilyProfileIpv4MulticastAddPath
- Tx
All boolPaths - Advertise all paths to peer?
- Tx
Bestpath boolPer As - Tx bestpath per a s
- Tx
All boolPaths - Advertise all paths to peer?
- Tx
Bestpath boolPer As - Tx bestpath per a s
- tx
All BooleanPaths - Advertise all paths to peer?
- tx
Bestpath BooleanPer As - Tx bestpath per a s
- tx
All booleanPaths - Advertise all paths to peer?
- tx
Bestpath booleanPer As - Tx bestpath per a s
- tx_
all_ boolpaths - Advertise all paths to peer?
- tx_
bestpath_ boolper_ as - Tx bestpath per a s
- tx
All BooleanPaths - Advertise all paths to peer?
- tx
Bestpath BooleanPer As - Tx bestpath per a s
GetBgpAddressFamilyProfileIpv4MulticastAllowasIn
- Occurrence int
- Number of times the firewalls own AS can be in an AS_PATH
- Origin
Get
Bgp Address Family Profile Ipv4Multicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- Occurrence int
- Number of times the firewalls own AS can be in an AS_PATH
- Origin
Get
Bgp Address Family Profile Ipv4Multicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence Integer
- Number of times the firewalls own AS can be in an AS_PATH
- origin
Get
Bgp Address Family Profile Ipv4Multicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence number
- Number of times the firewalls own AS can be in an AS_PATH
- origin
Get
Bgp Address Family Profile Ipv4Multicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence int
- Number of times the firewalls own AS can be in an AS_PATH
- origin
Get
Bgp Address Family Profile Ipv4Multicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence Number
- Number of times the firewalls own AS can be in an AS_PATH
- origin Property Map
Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
GetBgpAddressFamilyProfileIpv4MulticastMaximumPrefix
- Action
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action - Action
- Num
Prefixes int - Maximum number of prefixes
- Threshold int
- Threshold percentage of the maximum number of prefixes
- Action
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action - Action
- Num
Prefixes int - Maximum number of prefixes
- Threshold int
- Threshold percentage of the maximum number of prefixes
- action
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action - Action
- num
Prefixes Integer - Maximum number of prefixes
- threshold Integer
- Threshold percentage of the maximum number of prefixes
- action
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action - Action
- num
Prefixes number - Maximum number of prefixes
- threshold number
- Threshold percentage of the maximum number of prefixes
- action
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action - Action
- num_
prefixes int - Maximum number of prefixes
- threshold int
- Threshold percentage of the maximum number of prefixes
- action Property Map
- Action
- num
Prefixes Number - Maximum number of prefixes
- threshold Number
- Threshold percentage of the maximum number of prefixes
GetBgpAddressFamilyProfileIpv4MulticastMaximumPrefixAction
- Restart
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action Restart - Restart
- Warning
Only GetBgp Address Family Profile Ipv4Multicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- Restart
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action Restart - Restart
- Warning
Only GetBgp Address Family Profile Ipv4Multicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action Restart - Restart
- warning
Only GetBgp Address Family Profile Ipv4Multicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action Restart - Restart
- warning
Only GetBgp Address Family Profile Ipv4Multicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart
Get
Bgp Address Family Profile Ipv4Multicast Maximum Prefix Action Restart - Restart
- warning_
only GetBgp Address Family Profile Ipv4Multicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart Property Map
- Restart
- warning
Only Property Map Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
GetBgpAddressFamilyProfileIpv4MulticastMaximumPrefixActionRestart
- Interval int
- Restart interval
- Interval int
- Restart interval
- interval Integer
- Restart interval
- interval number
- Restart interval
- interval int
- Restart interval
- interval Number
- Restart interval
GetBgpAddressFamilyProfileIpv4MulticastNextHop
- Self
Get
Bgp Address Family Profile Ipv4Multicast Next Hop Self - Self
- Self
Force GetBgp Address Family Profile Ipv4Multicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- Self
Get
Bgp Address Family Profile Ipv4Multicast Next Hop Self - Self
- Self
Force GetBgp Address Family Profile Ipv4Multicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self
Get
Bgp Address Family Profile Ipv4Multicast Next Hop Self - Self
- self
Force GetBgp Address Family Profile Ipv4Multicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self
Get
Bgp Address Family Profile Ipv4Multicast Next Hop Self - Self
- self
Force GetBgp Address Family Profile Ipv4Multicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self
Get
Bgp Address Family Profile Ipv4Multicast Next Hop Self - Self
- self_
force GetBgp Address Family Profile Ipv4Multicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self Property Map
- Self
- self
Force Property Map Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
GetBgpAddressFamilyProfileIpv4MulticastOrf
- Orf
Prefix stringList - ORF prefix list
- Orf
Prefix stringList - ORF prefix list
- orf
Prefix StringList - ORF prefix list
- orf
Prefix stringList - ORF prefix list
- orf_
prefix_ strlist - ORF prefix list
- orf
Prefix StringList - ORF prefix list
GetBgpAddressFamilyProfileIpv4MulticastRemovePrivateAs
- all Property Map
- All
- replace
As Property Map - Replace a s
GetBgpAddressFamilyProfileIpv4MulticastSendCommunity
- All
Get
Bgp Address Family Profile Ipv4Multicast Send Community All - All
- Both
Get
Bgp Address Family Profile Ipv4Multicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Extended
Get
Bgp Address Family Profile Ipv4Multicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Large
Get
Bgp Address Family Profile Ipv4Multicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Standard
Get
Bgp Address Family Profile Ipv4Multicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- All
Get
Bgp Address Family Profile Ipv4Multicast Send Community All - All
- Both
Get
Bgp Address Family Profile Ipv4Multicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Extended
Get
Bgp Address Family Profile Ipv4Multicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Large
Get
Bgp Address Family Profile Ipv4Multicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Standard
Get
Bgp Address Family Profile Ipv4Multicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all
Get
Bgp Address Family Profile Ipv4Multicast Send Community All - All
- both
Get
Bgp Address Family Profile Ipv4Multicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended
Get
Bgp Address Family Profile Ipv4Multicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large
Get
Bgp Address Family Profile Ipv4Multicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard
Get
Bgp Address Family Profile Ipv4Multicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all
Get
Bgp Address Family Profile Ipv4Multicast Send Community All - All
- both
Get
Bgp Address Family Profile Ipv4Multicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended
Get
Bgp Address Family Profile Ipv4Multicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large
Get
Bgp Address Family Profile Ipv4Multicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard
Get
Bgp Address Family Profile Ipv4Multicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all
Get
Bgp Address Family Profile Ipv4Multicast Send Community All - All
- both
Get
Bgp Address Family Profile Ipv4Multicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended
Get
Bgp Address Family Profile Ipv4Multicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large
Get
Bgp Address Family Profile Ipv4Multicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard
Get
Bgp Address Family Profile Ipv4Multicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all Property Map
- All
- both Property Map
Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended Property Map
Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large Property Map
Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard Property Map
Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
GetBgpAddressFamilyProfileIpv4Unicast
- Add
Path GetBgp Address Family Profile Ipv4Unicast Add Path - Add path
- Allowas
In GetBgp Address Family Profile Ipv4Unicast Allowas In - Allowas in
- As
Override bool - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- Default
Originate bool - Originate default route?
- Default
Originate stringMap - Default originate route map
- Enable bool
- Enable?
- Maximum
Prefix GetBgp Address Family Profile Ipv4Unicast Maximum Prefix - Maximum prefix
- Next
Hop GetBgp Address Family Profile Ipv4Unicast Next Hop - Next hop
- Orf
Get
Bgp Address Family Profile Ipv4Unicast Orf - Orf
- Remove
Private GetAs Bgp Address Family Profile Ipv4Unicast Remove Private As - Remove private a s
- Route
Reflector boolClient - Route reflector client?
- Send
Community GetBgp Address Family Profile Ipv4Unicast Send Community - Send community
- Soft
Reconfig boolWith Stored Info - Soft reconfiguration of peer with stored routes?
- Add
Path GetBgp Address Family Profile Ipv4Unicast Add Path - Add path
- Allowas
In GetBgp Address Family Profile Ipv4Unicast Allowas In - Allowas in
- As
Override bool - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- Default
Originate bool - Originate default route?
- Default
Originate stringMap - Default originate route map
- Enable bool
- Enable?
- Maximum
Prefix GetBgp Address Family Profile Ipv4Unicast Maximum Prefix - Maximum prefix
- Next
Hop GetBgp Address Family Profile Ipv4Unicast Next Hop - Next hop
- Orf
Get
Bgp Address Family Profile Ipv4Unicast Orf - Orf
- Remove
Private GetAs Bgp Address Family Profile Ipv4Unicast Remove Private As - Remove private a s
- Route
Reflector boolClient - Route reflector client?
- Send
Community GetBgp Address Family Profile Ipv4Unicast Send Community - Send community
- Soft
Reconfig boolWith Stored Info - Soft reconfiguration of peer with stored routes?
- add
Path GetBgp Address Family Profile Ipv4Unicast Add Path - Add path
- allowas
In GetBgp Address Family Profile Ipv4Unicast Allowas In - Allowas in
- as
Override Boolean - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default
Originate Boolean - Originate default route?
- default
Originate StringMap - Default originate route map
- enable Boolean
- Enable?
- maximum
Prefix GetBgp Address Family Profile Ipv4Unicast Maximum Prefix - Maximum prefix
- next
Hop GetBgp Address Family Profile Ipv4Unicast Next Hop - Next hop
- orf
Get
Bgp Address Family Profile Ipv4Unicast Orf - Orf
- remove
Private GetAs Bgp Address Family Profile Ipv4Unicast Remove Private As - Remove private a s
- route
Reflector BooleanClient - Route reflector client?
- send
Community GetBgp Address Family Profile Ipv4Unicast Send Community - Send community
- soft
Reconfig BooleanWith Stored Info - Soft reconfiguration of peer with stored routes?
- add
Path GetBgp Address Family Profile Ipv4Unicast Add Path - Add path
- allowas
In GetBgp Address Family Profile Ipv4Unicast Allowas In - Allowas in
- as
Override boolean - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default
Originate boolean - Originate default route?
- default
Originate stringMap - Default originate route map
- enable boolean
- Enable?
- maximum
Prefix GetBgp Address Family Profile Ipv4Unicast Maximum Prefix - Maximum prefix
- next
Hop GetBgp Address Family Profile Ipv4Unicast Next Hop - Next hop
- orf
Get
Bgp Address Family Profile Ipv4Unicast Orf - Orf
- remove
Private GetAs Bgp Address Family Profile Ipv4Unicast Remove Private As - Remove private a s
- route
Reflector booleanClient - Route reflector client?
- send
Community GetBgp Address Family Profile Ipv4Unicast Send Community - Send community
- soft
Reconfig booleanWith Stored Info - Soft reconfiguration of peer with stored routes?
- add_
path GetBgp Address Family Profile Ipv4Unicast Add Path - Add path
- allowas_
in GetBgp Address Family Profile Ipv4Unicast Allowas In - Allowas in
- as_
override bool - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default_
originate bool - Originate default route?
- default_
originate_ strmap - Default originate route map
- enable bool
- Enable?
- maximum_
prefix GetBgp Address Family Profile Ipv4Unicast Maximum Prefix - Maximum prefix
- next_
hop GetBgp Address Family Profile Ipv4Unicast Next Hop - Next hop
- orf
Get
Bgp Address Family Profile Ipv4Unicast Orf - Orf
- remove_
private_ Getas Bgp Address Family Profile Ipv4Unicast Remove Private As - Remove private a s
- route_
reflector_ boolclient - Route reflector client?
- send_
community GetBgp Address Family Profile Ipv4Unicast Send Community - Send community
- soft_
reconfig_ boolwith_ stored_ info - Soft reconfiguration of peer with stored routes?
- add
Path Property Map - Add path
- allowas
In Property Map - Allowas in
- as
Override Boolean - Override ASNs in outbound updates if AS-Path equals Remote-AS?
- default
Originate Boolean - Originate default route?
- default
Originate StringMap - Default originate route map
- enable Boolean
- Enable?
- maximum
Prefix Property Map - Maximum prefix
- next
Hop Property Map - Next hop
- orf Property Map
- Orf
- remove
Private Property MapAs - Remove private a s
- route
Reflector BooleanClient - Route reflector client?
- send
Community Property Map - Send community
- soft
Reconfig BooleanWith Stored Info - Soft reconfiguration of peer with stored routes?
GetBgpAddressFamilyProfileIpv4UnicastAddPath
- Tx
All boolPaths - Advertise all paths to peer?
- Tx
Bestpath boolPer As - Tx bestpath per a s
- Tx
All boolPaths - Advertise all paths to peer?
- Tx
Bestpath boolPer As - Tx bestpath per a s
- tx
All BooleanPaths - Advertise all paths to peer?
- tx
Bestpath BooleanPer As - Tx bestpath per a s
- tx
All booleanPaths - Advertise all paths to peer?
- tx
Bestpath booleanPer As - Tx bestpath per a s
- tx_
all_ boolpaths - Advertise all paths to peer?
- tx_
bestpath_ boolper_ as - Tx bestpath per a s
- tx
All BooleanPaths - Advertise all paths to peer?
- tx
Bestpath BooleanPer As - Tx bestpath per a s
GetBgpAddressFamilyProfileIpv4UnicastAllowasIn
- Occurrence int
- Number of times the firewalls own AS can be in an AS_PATH
- Origin
Get
Bgp Address Family Profile Ipv4Unicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- Occurrence int
- Number of times the firewalls own AS can be in an AS_PATH
- Origin
Get
Bgp Address Family Profile Ipv4Unicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence Integer
- Number of times the firewalls own AS can be in an AS_PATH
- origin
Get
Bgp Address Family Profile Ipv4Unicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence number
- Number of times the firewalls own AS can be in an AS_PATH
- origin
Get
Bgp Address Family Profile Ipv4Unicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence int
- Number of times the firewalls own AS can be in an AS_PATH
- origin
Get
Bgp Address Family Profile Ipv4Unicast Allowas In Origin Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
- occurrence Number
- Number of times the firewalls own AS can be in an AS_PATH
- origin Property Map
Origin
ℹ️ Note: You must specify exactly one of
occurrenceandorigin.
GetBgpAddressFamilyProfileIpv4UnicastMaximumPrefix
- Action
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action - Action
- Num
Prefixes int - Maximum number of prefixes
- Threshold int
- Threshold percentage of the maximum number of prefixes
- Action
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action - Action
- Num
Prefixes int - Maximum number of prefixes
- Threshold int
- Threshold percentage of the maximum number of prefixes
- action
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action - Action
- num
Prefixes Integer - Maximum number of prefixes
- threshold Integer
- Threshold percentage of the maximum number of prefixes
- action
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action - Action
- num
Prefixes number - Maximum number of prefixes
- threshold number
- Threshold percentage of the maximum number of prefixes
- action
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action - Action
- num_
prefixes int - Maximum number of prefixes
- threshold int
- Threshold percentage of the maximum number of prefixes
- action Property Map
- Action
- num
Prefixes Number - Maximum number of prefixes
- threshold Number
- Threshold percentage of the maximum number of prefixes
GetBgpAddressFamilyProfileIpv4UnicastMaximumPrefixAction
- Restart
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action Restart - Restart
- Warning
Only GetBgp Address Family Profile Ipv4Unicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- Restart
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action Restart - Restart
- Warning
Only GetBgp Address Family Profile Ipv4Unicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action Restart - Restart
- warning
Only GetBgp Address Family Profile Ipv4Unicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action Restart - Restart
- warning
Only GetBgp Address Family Profile Ipv4Unicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart
Get
Bgp Address Family Profile Ipv4Unicast Maximum Prefix Action Restart - Restart
- warning_
only GetBgp Address Family Profile Ipv4Unicast Maximum Prefix Action Warning Only Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
- restart Property Map
- Restart
- warning
Only Property Map Warning only
ℹ️ Note: You must specify exactly one of
restartandwarning_only.
GetBgpAddressFamilyProfileIpv4UnicastMaximumPrefixActionRestart
- Interval int
- Restart interval
- Interval int
- Restart interval
- interval Integer
- Restart interval
- interval number
- Restart interval
- interval int
- Restart interval
- interval Number
- Restart interval
GetBgpAddressFamilyProfileIpv4UnicastNextHop
- Self
Get
Bgp Address Family Profile Ipv4Unicast Next Hop Self - Self
- Self
Force GetBgp Address Family Profile Ipv4Unicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- Self
Get
Bgp Address Family Profile Ipv4Unicast Next Hop Self - Self
- Self
Force GetBgp Address Family Profile Ipv4Unicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self
Get
Bgp Address Family Profile Ipv4Unicast Next Hop Self - Self
- self
Force GetBgp Address Family Profile Ipv4Unicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self
Get
Bgp Address Family Profile Ipv4Unicast Next Hop Self - Self
- self
Force GetBgp Address Family Profile Ipv4Unicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self
Get
Bgp Address Family Profile Ipv4Unicast Next Hop Self - Self
- self_
force GetBgp Address Family Profile Ipv4Unicast Next Hop Self Force Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
- self Property Map
- Self
- self
Force Property Map Self force
ℹ️ Note: You must specify exactly one of
selfandself_force.
GetBgpAddressFamilyProfileIpv4UnicastOrf
- Orf
Prefix stringList - ORF prefix list
- Orf
Prefix stringList - ORF prefix list
- orf
Prefix StringList - ORF prefix list
- orf
Prefix stringList - ORF prefix list
- orf_
prefix_ strlist - ORF prefix list
- orf
Prefix StringList - ORF prefix list
GetBgpAddressFamilyProfileIpv4UnicastRemovePrivateAs
- all Property Map
- All
- replace
As Property Map - Replace a s
GetBgpAddressFamilyProfileIpv4UnicastSendCommunity
- All
Get
Bgp Address Family Profile Ipv4Unicast Send Community All - All
- Both
Get
Bgp Address Family Profile Ipv4Unicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Extended
Get
Bgp Address Family Profile Ipv4Unicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Large
Get
Bgp Address Family Profile Ipv4Unicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Standard
Get
Bgp Address Family Profile Ipv4Unicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- All
Get
Bgp Address Family Profile Ipv4Unicast Send Community All - All
- Both
Get
Bgp Address Family Profile Ipv4Unicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Extended
Get
Bgp Address Family Profile Ipv4Unicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Large
Get
Bgp Address Family Profile Ipv4Unicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- Standard
Get
Bgp Address Family Profile Ipv4Unicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all
Get
Bgp Address Family Profile Ipv4Unicast Send Community All - All
- both
Get
Bgp Address Family Profile Ipv4Unicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended
Get
Bgp Address Family Profile Ipv4Unicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large
Get
Bgp Address Family Profile Ipv4Unicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard
Get
Bgp Address Family Profile Ipv4Unicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all
Get
Bgp Address Family Profile Ipv4Unicast Send Community All - All
- both
Get
Bgp Address Family Profile Ipv4Unicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended
Get
Bgp Address Family Profile Ipv4Unicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large
Get
Bgp Address Family Profile Ipv4Unicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard
Get
Bgp Address Family Profile Ipv4Unicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all
Get
Bgp Address Family Profile Ipv4Unicast Send Community All - All
- both
Get
Bgp Address Family Profile Ipv4Unicast Send Community Both Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended
Get
Bgp Address Family Profile Ipv4Unicast Send Community Extended Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large
Get
Bgp Address Family Profile Ipv4Unicast Send Community Large Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard
Get
Bgp Address Family Profile Ipv4Unicast Send Community Standard Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
- all Property Map
- All
- both Property Map
Both
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- extended Property Map
Extended
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- large Property Map
Large
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.- standard Property Map
Standard
ℹ️ Note: You must specify exactly one of
all,both,extended,large, andstandard.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
