1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyEdgeHighAvailabilityProfile
nsxt 3.9.0 published on Friday, Jun 20, 2025 by vmware

nsxt.PolicyEdgeHighAvailabilityProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.9.0 published on Friday, Jun 20, 2025 by vmware

    Create PolicyEdgeHighAvailabilityProfile Resource

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

    Constructor syntax

    new PolicyEdgeHighAvailabilityProfile(name: string, args: PolicyEdgeHighAvailabilityProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyEdgeHighAvailabilityProfile(resource_name: str,
                                          args: PolicyEdgeHighAvailabilityProfileArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyEdgeHighAvailabilityProfile(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          display_name: Optional[str] = None,
                                          bfd_allowed_hops: Optional[float] = None,
                                          bfd_declare_dead_multiple: Optional[float] = None,
                                          bfd_probe_interval: Optional[float] = None,
                                          description: Optional[str] = None,
                                          enforcement_point: Optional[str] = None,
                                          nsx_id: Optional[str] = None,
                                          policy_edge_high_availability_profile_id: Optional[str] = None,
                                          site_path: Optional[str] = None,
                                          standby_relocation_config: Optional[PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs] = None,
                                          tags: Optional[Sequence[PolicyEdgeHighAvailabilityProfileTagArgs]] = None)
    func NewPolicyEdgeHighAvailabilityProfile(ctx *Context, name string, args PolicyEdgeHighAvailabilityProfileArgs, opts ...ResourceOption) (*PolicyEdgeHighAvailabilityProfile, error)
    public PolicyEdgeHighAvailabilityProfile(string name, PolicyEdgeHighAvailabilityProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyEdgeHighAvailabilityProfile(String name, PolicyEdgeHighAvailabilityProfileArgs args)
    public PolicyEdgeHighAvailabilityProfile(String name, PolicyEdgeHighAvailabilityProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyEdgeHighAvailabilityProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PolicyEdgeHighAvailabilityProfileArgs
    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 PolicyEdgeHighAvailabilityProfileArgs
    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 PolicyEdgeHighAvailabilityProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyEdgeHighAvailabilityProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyEdgeHighAvailabilityProfileArgs
    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 policyEdgeHighAvailabilityProfileResource = new Nsxt.PolicyEdgeHighAvailabilityProfile("policyEdgeHighAvailabilityProfileResource", new()
    {
        DisplayName = "string",
        BfdAllowedHops = 0,
        BfdDeclareDeadMultiple = 0,
        BfdProbeInterval = 0,
        Description = "string",
        EnforcementPoint = "string",
        NsxId = "string",
        PolicyEdgeHighAvailabilityProfileId = "string",
        SitePath = "string",
        StandbyRelocationConfig = new Nsxt.Inputs.PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs
        {
            StandbyRelocationThreshold = 0,
        },
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyEdgeHighAvailabilityProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyEdgeHighAvailabilityProfile(ctx, "policyEdgeHighAvailabilityProfileResource", &nsxt.PolicyEdgeHighAvailabilityProfileArgs{
    	DisplayName:                         pulumi.String("string"),
    	BfdAllowedHops:                      pulumi.Float64(0),
    	BfdDeclareDeadMultiple:              pulumi.Float64(0),
    	BfdProbeInterval:                    pulumi.Float64(0),
    	Description:                         pulumi.String("string"),
    	EnforcementPoint:                    pulumi.String("string"),
    	NsxId:                               pulumi.String("string"),
    	PolicyEdgeHighAvailabilityProfileId: pulumi.String("string"),
    	SitePath:                            pulumi.String("string"),
    	StandbyRelocationConfig: &nsxt.PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs{
    		StandbyRelocationThreshold: pulumi.Float64(0),
    	},
    	Tags: nsxt.PolicyEdgeHighAvailabilityProfileTagArray{
    		&nsxt.PolicyEdgeHighAvailabilityProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyEdgeHighAvailabilityProfileResource = new PolicyEdgeHighAvailabilityProfile("policyEdgeHighAvailabilityProfileResource", PolicyEdgeHighAvailabilityProfileArgs.builder()
        .displayName("string")
        .bfdAllowedHops(0.0)
        .bfdDeclareDeadMultiple(0.0)
        .bfdProbeInterval(0.0)
        .description("string")
        .enforcementPoint("string")
        .nsxId("string")
        .policyEdgeHighAvailabilityProfileId("string")
        .sitePath("string")
        .standbyRelocationConfig(PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs.builder()
            .standbyRelocationThreshold(0.0)
            .build())
        .tags(PolicyEdgeHighAvailabilityProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_edge_high_availability_profile_resource = nsxt.PolicyEdgeHighAvailabilityProfile("policyEdgeHighAvailabilityProfileResource",
        display_name="string",
        bfd_allowed_hops=0,
        bfd_declare_dead_multiple=0,
        bfd_probe_interval=0,
        description="string",
        enforcement_point="string",
        nsx_id="string",
        policy_edge_high_availability_profile_id="string",
        site_path="string",
        standby_relocation_config={
            "standby_relocation_threshold": 0,
        },
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyEdgeHighAvailabilityProfileResource = new nsxt.PolicyEdgeHighAvailabilityProfile("policyEdgeHighAvailabilityProfileResource", {
        displayName: "string",
        bfdAllowedHops: 0,
        bfdDeclareDeadMultiple: 0,
        bfdProbeInterval: 0,
        description: "string",
        enforcementPoint: "string",
        nsxId: "string",
        policyEdgeHighAvailabilityProfileId: "string",
        sitePath: "string",
        standbyRelocationConfig: {
            standbyRelocationThreshold: 0,
        },
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyEdgeHighAvailabilityProfile
    properties:
        bfdAllowedHops: 0
        bfdDeclareDeadMultiple: 0
        bfdProbeInterval: 0
        description: string
        displayName: string
        enforcementPoint: string
        nsxId: string
        policyEdgeHighAvailabilityProfileId: string
        sitePath: string
        standbyRelocationConfig:
            standbyRelocationThreshold: 0
        tags:
            - scope: string
              tag: string
    

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

    DisplayName string
    Display name of the resource.
    BfdAllowedHops double
    Value of BFD allowed hops. Default: 255.
    BfdDeclareDeadMultiple double
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    BfdProbeInterval double
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    Description string
    Description of the resource.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyEdgeHighAvailabilityProfileId string
    ID of the resource.
    SitePath string
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    StandbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig
    Stand by relocation flag.
    Tags List<PolicyEdgeHighAvailabilityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    BfdAllowedHops float64
    Value of BFD allowed hops. Default: 255.
    BfdDeclareDeadMultiple float64
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    BfdProbeInterval float64
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    Description string
    Description of the resource.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyEdgeHighAvailabilityProfileId string
    ID of the resource.
    SitePath string
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    StandbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs
    Stand by relocation flag.
    Tags []PolicyEdgeHighAvailabilityProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    bfdAllowedHops Double
    Value of BFD allowed hops. Default: 255.
    bfdDeclareDeadMultiple Double
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfdProbeInterval Double
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description String
    Description of the resource.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyEdgeHighAvailabilityProfileId String
    ID of the resource.
    sitePath String
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig
    Stand by relocation flag.
    tags List<PolicyEdgeHighAvailabilityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    bfdAllowedHops number
    Value of BFD allowed hops. Default: 255.
    bfdDeclareDeadMultiple number
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfdProbeInterval number
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description string
    Description of the resource.
    enforcementPoint string
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyEdgeHighAvailabilityProfileId string
    ID of the resource.
    sitePath string
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig
    Stand by relocation flag.
    tags PolicyEdgeHighAvailabilityProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    bfd_allowed_hops float
    Value of BFD allowed hops. Default: 255.
    bfd_declare_dead_multiple float
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfd_probe_interval float
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description str
    Description of the resource.
    enforcement_point str
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_edge_high_availability_profile_id str
    ID of the resource.
    site_path str
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standby_relocation_config PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs
    Stand by relocation flag.
    tags Sequence[PolicyEdgeHighAvailabilityProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    bfdAllowedHops Number
    Value of BFD allowed hops. Default: 255.
    bfdDeclareDeadMultiple Number
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfdProbeInterval Number
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description String
    Description of the resource.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyEdgeHighAvailabilityProfileId String
    ID of the resource.
    sitePath String
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standbyRelocationConfig Property Map
    Stand by relocation flag.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyEdgeHighAvailabilityProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyEdgeHighAvailabilityProfile Resource

    Get an existing PolicyEdgeHighAvailabilityProfile 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?: PolicyEdgeHighAvailabilityProfileState, opts?: CustomResourceOptions): PolicyEdgeHighAvailabilityProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bfd_allowed_hops: Optional[float] = None,
            bfd_declare_dead_multiple: Optional[float] = None,
            bfd_probe_interval: Optional[float] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            enforcement_point: Optional[str] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_edge_high_availability_profile_id: Optional[str] = None,
            revision: Optional[float] = None,
            site_path: Optional[str] = None,
            standby_relocation_config: Optional[PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs] = None,
            tags: Optional[Sequence[PolicyEdgeHighAvailabilityProfileTagArgs]] = None) -> PolicyEdgeHighAvailabilityProfile
    func GetPolicyEdgeHighAvailabilityProfile(ctx *Context, name string, id IDInput, state *PolicyEdgeHighAvailabilityProfileState, opts ...ResourceOption) (*PolicyEdgeHighAvailabilityProfile, error)
    public static PolicyEdgeHighAvailabilityProfile Get(string name, Input<string> id, PolicyEdgeHighAvailabilityProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyEdgeHighAvailabilityProfile get(String name, Output<String> id, PolicyEdgeHighAvailabilityProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyEdgeHighAvailabilityProfile    get:      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:
    BfdAllowedHops double
    Value of BFD allowed hops. Default: 255.
    BfdDeclareDeadMultiple double
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    BfdProbeInterval double
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicyEdgeHighAvailabilityProfileId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SitePath string
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    StandbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig
    Stand by relocation flag.
    Tags List<PolicyEdgeHighAvailabilityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    BfdAllowedHops float64
    Value of BFD allowed hops. Default: 255.
    BfdDeclareDeadMultiple float64
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    BfdProbeInterval float64
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicyEdgeHighAvailabilityProfileId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SitePath string
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    StandbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs
    Stand by relocation flag.
    Tags []PolicyEdgeHighAvailabilityProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    bfdAllowedHops Double
    Value of BFD allowed hops. Default: 255.
    bfdDeclareDeadMultiple Double
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfdProbeInterval Double
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policyEdgeHighAvailabilityProfileId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath String
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig
    Stand by relocation flag.
    tags List<PolicyEdgeHighAvailabilityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    bfdAllowedHops number
    Value of BFD allowed hops. Default: 255.
    bfdDeclareDeadMultiple number
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfdProbeInterval number
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    enforcementPoint string
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the policy resource.
    policyEdgeHighAvailabilityProfileId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath string
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standbyRelocationConfig PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig
    Stand by relocation flag.
    tags PolicyEdgeHighAvailabilityProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    bfd_allowed_hops float
    Value of BFD allowed hops. Default: 255.
    bfd_declare_dead_multiple float
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfd_probe_interval float
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    enforcement_point str
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path str
    The NSX path of the policy resource.
    policy_edge_high_availability_profile_id str
    ID of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    site_path str
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standby_relocation_config PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs
    Stand by relocation flag.
    tags Sequence[PolicyEdgeHighAvailabilityProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    bfdAllowedHops Number
    Value of BFD allowed hops. Default: 255.
    bfdDeclareDeadMultiple Number
    Number of times a packet is missed before BFD declares the neighbor down. Default: 3.
    bfdProbeInterval Number
    The time interval (in millisec) between probe packets for heartbeat purpose. Default: 500.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Edge Transport Node. Defaults to default enforcement point.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policyEdgeHighAvailabilityProfileId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath String
    The path of the site which the Edge Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    standbyRelocationConfig Property Map
    Stand by relocation flag.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicyEdgeHighAvailabilityProfileStandbyRelocationConfig, PolicyEdgeHighAvailabilityProfileStandbyRelocationConfigArgs

    StandbyRelocationThreshold double
    Standby service context relocation wait time.
    StandbyRelocationThreshold float64
    Standby service context relocation wait time.
    standbyRelocationThreshold Double
    Standby service context relocation wait time.
    standbyRelocationThreshold number
    Standby service context relocation wait time.
    standby_relocation_threshold float
    Standby service context relocation wait time.
    standbyRelocationThreshold Number
    Standby service context relocation wait time.

    PolicyEdgeHighAvailabilityProfileTag, PolicyEdgeHighAvailabilityProfileTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope str
    tag str
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.9.0 published on Friday, Jun 20, 2025 by vmware