1. Packages
  2. Nsxt Provider
  3. API Docs
  4. LbFastUdpApplicationProfile
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.LbFastUdpApplicationProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

    Create LbFastUdpApplicationProfile Resource

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

    Constructor syntax

    new LbFastUdpApplicationProfile(name: string, args?: LbFastUdpApplicationProfileArgs, opts?: CustomResourceOptions);
    @overload
    def LbFastUdpApplicationProfile(resource_name: str,
                                    args: Optional[LbFastUdpApplicationProfileArgs] = None,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def LbFastUdpApplicationProfile(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    description: Optional[str] = None,
                                    display_name: Optional[str] = None,
                                    ha_flow_mirroring: Optional[bool] = None,
                                    idle_timeout: Optional[float] = None,
                                    lb_fast_udp_application_profile_id: Optional[str] = None,
                                    tags: Optional[Sequence[LbFastUdpApplicationProfileTagArgs]] = None)
    func NewLbFastUdpApplicationProfile(ctx *Context, name string, args *LbFastUdpApplicationProfileArgs, opts ...ResourceOption) (*LbFastUdpApplicationProfile, error)
    public LbFastUdpApplicationProfile(string name, LbFastUdpApplicationProfileArgs? args = null, CustomResourceOptions? opts = null)
    public LbFastUdpApplicationProfile(String name, LbFastUdpApplicationProfileArgs args)
    public LbFastUdpApplicationProfile(String name, LbFastUdpApplicationProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:LbFastUdpApplicationProfile
    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 LbFastUdpApplicationProfileArgs
    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 LbFastUdpApplicationProfileArgs
    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 LbFastUdpApplicationProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LbFastUdpApplicationProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LbFastUdpApplicationProfileArgs
    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 lbFastUdpApplicationProfileResource = new Nsxt.LbFastUdpApplicationProfile("lbFastUdpApplicationProfileResource", new()
    {
        Description = "string",
        DisplayName = "string",
        HaFlowMirroring = false,
        IdleTimeout = 0,
        LbFastUdpApplicationProfileId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.LbFastUdpApplicationProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewLbFastUdpApplicationProfile(ctx, "lbFastUdpApplicationProfileResource", &nsxt.LbFastUdpApplicationProfileArgs{
    	Description:                   pulumi.String("string"),
    	DisplayName:                   pulumi.String("string"),
    	HaFlowMirroring:               pulumi.Bool(false),
    	IdleTimeout:                   pulumi.Float64(0),
    	LbFastUdpApplicationProfileId: pulumi.String("string"),
    	Tags: nsxt.LbFastUdpApplicationProfileTagArray{
    		&nsxt.LbFastUdpApplicationProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var lbFastUdpApplicationProfileResource = new LbFastUdpApplicationProfile("lbFastUdpApplicationProfileResource", LbFastUdpApplicationProfileArgs.builder()
        .description("string")
        .displayName("string")
        .haFlowMirroring(false)
        .idleTimeout(0)
        .lbFastUdpApplicationProfileId("string")
        .tags(LbFastUdpApplicationProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    lb_fast_udp_application_profile_resource = nsxt.LbFastUdpApplicationProfile("lbFastUdpApplicationProfileResource",
        description="string",
        display_name="string",
        ha_flow_mirroring=False,
        idle_timeout=0,
        lb_fast_udp_application_profile_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const lbFastUdpApplicationProfileResource = new nsxt.LbFastUdpApplicationProfile("lbFastUdpApplicationProfileResource", {
        description: "string",
        displayName: "string",
        haFlowMirroring: false,
        idleTimeout: 0,
        lbFastUdpApplicationProfileId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:LbFastUdpApplicationProfile
    properties:
        description: string
        displayName: string
        haFlowMirroring: false
        idleTimeout: 0
        lbFastUdpApplicationProfileId: string
        tags:
            - scope: string
              tag: string
    

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

    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    HaFlowMirroring bool
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    IdleTimeout double
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    LbFastUdpApplicationProfileId string
    ID of the lb fast udp profile.
    Tags List<LbFastUdpApplicationProfileTag>
    A list of scope + tag pairs to associate with this lb fast udp profile.
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    HaFlowMirroring bool
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    IdleTimeout float64
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    LbFastUdpApplicationProfileId string
    ID of the lb fast udp profile.
    Tags []LbFastUdpApplicationProfileTagArgs
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    haFlowMirroring Boolean
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idleTimeout Double
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lbFastUdpApplicationProfileId String
    ID of the lb fast udp profile.
    tags List<LbFastUdpApplicationProfileTag>
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description string
    Description of this resource.
    displayName string
    The display name of this resource. Defaults to ID if not set.
    haFlowMirroring boolean
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idleTimeout number
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lbFastUdpApplicationProfileId string
    ID of the lb fast udp profile.
    tags LbFastUdpApplicationProfileTag[]
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description str
    Description of this resource.
    display_name str
    The display name of this resource. Defaults to ID if not set.
    ha_flow_mirroring bool
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idle_timeout float
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lb_fast_udp_application_profile_id str
    ID of the lb fast udp profile.
    tags Sequence[LbFastUdpApplicationProfileTagArgs]
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    haFlowMirroring Boolean
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idleTimeout Number
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lbFastUdpApplicationProfileId String
    ID of the lb fast udp profile.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this lb fast udp profile.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed 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.
    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.
    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.
    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.
    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.
    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 LbFastUdpApplicationProfile Resource

    Get an existing LbFastUdpApplicationProfile 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?: LbFastUdpApplicationProfileState, opts?: CustomResourceOptions): LbFastUdpApplicationProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            ha_flow_mirroring: Optional[bool] = None,
            idle_timeout: Optional[float] = None,
            lb_fast_udp_application_profile_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[LbFastUdpApplicationProfileTagArgs]] = None) -> LbFastUdpApplicationProfile
    func GetLbFastUdpApplicationProfile(ctx *Context, name string, id IDInput, state *LbFastUdpApplicationProfileState, opts ...ResourceOption) (*LbFastUdpApplicationProfile, error)
    public static LbFastUdpApplicationProfile Get(string name, Input<string> id, LbFastUdpApplicationProfileState? state, CustomResourceOptions? opts = null)
    public static LbFastUdpApplicationProfile get(String name, Output<String> id, LbFastUdpApplicationProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:LbFastUdpApplicationProfile    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:
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    HaFlowMirroring bool
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    IdleTimeout double
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    LbFastUdpApplicationProfileId string
    ID of the lb fast udp profile.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<LbFastUdpApplicationProfileTag>
    A list of scope + tag pairs to associate with this lb fast udp profile.
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    HaFlowMirroring bool
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    IdleTimeout float64
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    LbFastUdpApplicationProfileId string
    ID of the lb fast udp profile.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []LbFastUdpApplicationProfileTagArgs
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    haFlowMirroring Boolean
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idleTimeout Double
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lbFastUdpApplicationProfileId String
    ID of the lb fast udp profile.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<LbFastUdpApplicationProfileTag>
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description string
    Description of this resource.
    displayName string
    The display name of this resource. Defaults to ID if not set.
    haFlowMirroring boolean
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idleTimeout number
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lbFastUdpApplicationProfileId string
    ID of the lb fast udp profile.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags LbFastUdpApplicationProfileTag[]
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description str
    Description of this resource.
    display_name str
    The display name of this resource. Defaults to ID if not set.
    ha_flow_mirroring bool
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idle_timeout float
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lb_fast_udp_application_profile_id str
    ID of the lb fast udp profile.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[LbFastUdpApplicationProfileTagArgs]
    A list of scope + tag pairs to associate with this lb fast udp profile.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    haFlowMirroring Boolean
    A boolean flag which reflects whether flow mirroring is enabled, and all the flows to the bounded virtual server are mirrored to the standby node. By default this is disabled.
    idleTimeout Number
    Timeout in seconds to specify how long an idle UDP connection in ESTABLISHED state should be kept for this application before cleaning up. The default value will be 300 seconds
    lbFastUdpApplicationProfileId String
    ID of the lb fast udp profile.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this lb fast udp profile.

    Supporting Types

    LbFastUdpApplicationProfileTag, LbFastUdpApplicationProfileTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this lb fast udp profile.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this lb fast udp profile.
    scope String
    tag String
    A list of scope + tag pairs to associate with this lb fast udp profile.
    scope string
    tag string
    A list of scope + tag pairs to associate with this lb fast udp profile.
    scope str
    tag str
    A list of scope + tag pairs to associate with this lb fast udp profile.
    scope String
    tag String
    A list of scope + tag pairs to associate with this lb fast udp profile.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware