1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyLbHttpApplicationProfile
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyLbHttpApplicationProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create PolicyLbHttpApplicationProfile Resource

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

    Constructor syntax

    new PolicyLbHttpApplicationProfile(name: string, args: PolicyLbHttpApplicationProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyLbHttpApplicationProfile(resource_name: str,
                                       args: PolicyLbHttpApplicationProfileArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyLbHttpApplicationProfile(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       display_name: Optional[str] = None,
                                       policy_lb_http_application_profile_id: Optional[str] = None,
                                       http_redirect_to: Optional[str] = None,
                                       http_redirect_to_https: Optional[bool] = None,
                                       idle_timeout: Optional[float] = None,
                                       nsx_id: Optional[str] = None,
                                       description: Optional[str] = None,
                                       request_body_size: Optional[float] = None,
                                       request_header_size: Optional[float] = None,
                                       response_buffering: Optional[bool] = None,
                                       response_header_size: Optional[float] = None,
                                       response_timeout: Optional[float] = None,
                                       server_keep_alive: Optional[bool] = None,
                                       tags: Optional[Sequence[PolicyLbHttpApplicationProfileTagArgs]] = None,
                                       x_forwarded_for: Optional[str] = None)
    func NewPolicyLbHttpApplicationProfile(ctx *Context, name string, args PolicyLbHttpApplicationProfileArgs, opts ...ResourceOption) (*PolicyLbHttpApplicationProfile, error)
    public PolicyLbHttpApplicationProfile(string name, PolicyLbHttpApplicationProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyLbHttpApplicationProfile(String name, PolicyLbHttpApplicationProfileArgs args)
    public PolicyLbHttpApplicationProfile(String name, PolicyLbHttpApplicationProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyLbHttpApplicationProfile
    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 PolicyLbHttpApplicationProfileArgs
    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 PolicyLbHttpApplicationProfileArgs
    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 PolicyLbHttpApplicationProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyLbHttpApplicationProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyLbHttpApplicationProfileArgs
    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 policyLbHttpApplicationProfileResource = new Nsxt.PolicyLbHttpApplicationProfile("policyLbHttpApplicationProfileResource", new()
    {
        DisplayName = "string",
        PolicyLbHttpApplicationProfileId = "string",
        HttpRedirectTo = "string",
        HttpRedirectToHttps = false,
        IdleTimeout = 0,
        NsxId = "string",
        Description = "string",
        RequestBodySize = 0,
        RequestHeaderSize = 0,
        ResponseBuffering = false,
        ResponseHeaderSize = 0,
        ResponseTimeout = 0,
        ServerKeepAlive = false,
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyLbHttpApplicationProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        XForwardedFor = "string",
    });
    
    example, err := nsxt.NewPolicyLbHttpApplicationProfile(ctx, "policyLbHttpApplicationProfileResource", &nsxt.PolicyLbHttpApplicationProfileArgs{
    	DisplayName:                      pulumi.String("string"),
    	PolicyLbHttpApplicationProfileId: pulumi.String("string"),
    	HttpRedirectTo:                   pulumi.String("string"),
    	HttpRedirectToHttps:              pulumi.Bool(false),
    	IdleTimeout:                      pulumi.Float64(0),
    	NsxId:                            pulumi.String("string"),
    	Description:                      pulumi.String("string"),
    	RequestBodySize:                  pulumi.Float64(0),
    	RequestHeaderSize:                pulumi.Float64(0),
    	ResponseBuffering:                pulumi.Bool(false),
    	ResponseHeaderSize:               pulumi.Float64(0),
    	ResponseTimeout:                  pulumi.Float64(0),
    	ServerKeepAlive:                  pulumi.Bool(false),
    	Tags: nsxt.PolicyLbHttpApplicationProfileTagArray{
    		&nsxt.PolicyLbHttpApplicationProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	XForwardedFor: pulumi.String("string"),
    })
    
    var policyLbHttpApplicationProfileResource = new PolicyLbHttpApplicationProfile("policyLbHttpApplicationProfileResource", PolicyLbHttpApplicationProfileArgs.builder()
        .displayName("string")
        .policyLbHttpApplicationProfileId("string")
        .httpRedirectTo("string")
        .httpRedirectToHttps(false)
        .idleTimeout(0)
        .nsxId("string")
        .description("string")
        .requestBodySize(0)
        .requestHeaderSize(0)
        .responseBuffering(false)
        .responseHeaderSize(0)
        .responseTimeout(0)
        .serverKeepAlive(false)
        .tags(PolicyLbHttpApplicationProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .xForwardedFor("string")
        .build());
    
    policy_lb_http_application_profile_resource = nsxt.PolicyLbHttpApplicationProfile("policyLbHttpApplicationProfileResource",
        display_name="string",
        policy_lb_http_application_profile_id="string",
        http_redirect_to="string",
        http_redirect_to_https=False,
        idle_timeout=0,
        nsx_id="string",
        description="string",
        request_body_size=0,
        request_header_size=0,
        response_buffering=False,
        response_header_size=0,
        response_timeout=0,
        server_keep_alive=False,
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        x_forwarded_for="string")
    
    const policyLbHttpApplicationProfileResource = new nsxt.PolicyLbHttpApplicationProfile("policyLbHttpApplicationProfileResource", {
        displayName: "string",
        policyLbHttpApplicationProfileId: "string",
        httpRedirectTo: "string",
        httpRedirectToHttps: false,
        idleTimeout: 0,
        nsxId: "string",
        description: "string",
        requestBodySize: 0,
        requestHeaderSize: 0,
        responseBuffering: false,
        responseHeaderSize: 0,
        responseTimeout: 0,
        serverKeepAlive: false,
        tags: [{
            scope: "string",
            tag: "string",
        }],
        xForwardedFor: "string",
    });
    
    type: nsxt:PolicyLbHttpApplicationProfile
    properties:
        description: string
        displayName: string
        httpRedirectTo: string
        httpRedirectToHttps: false
        idleTimeout: 0
        nsxId: string
        policyLbHttpApplicationProfileId: string
        requestBodySize: 0
        requestHeaderSize: 0
        responseBuffering: false
        responseHeaderSize: 0
        responseTimeout: 0
        serverKeepAlive: false
        tags:
            - scope: string
              tag: string
        xForwardedFor: string
    

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

    DisplayName string
    Display name of the resource.
    Description string
    Description of the resource.
    HttpRedirectTo string
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    HttpRedirectToHttps bool
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    IdleTimeout double
    Timeout in seconds to specify how long an HTTP application can remain idle.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyLbHttpApplicationProfileId string
    ID of the resource.
    RequestBodySize double
    Maximum request body size in bytes (Unlimited if not specified).
    RequestHeaderSize double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseBuffering bool
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    ResponseHeaderSize double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseTimeout double
    Number of seconds waiting for the server response before the connection is closed.
    ServerKeepAlive bool
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    Tags List<PolicyLbHttpApplicationProfileTag>
    A list of scope + tag pairs to associate with this resource.
    XForwardedFor string
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    DisplayName string
    Display name of the resource.
    Description string
    Description of the resource.
    HttpRedirectTo string
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    HttpRedirectToHttps bool
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    IdleTimeout float64
    Timeout in seconds to specify how long an HTTP application can remain idle.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyLbHttpApplicationProfileId string
    ID of the resource.
    RequestBodySize float64
    Maximum request body size in bytes (Unlimited if not specified).
    RequestHeaderSize float64
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseBuffering bool
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    ResponseHeaderSize float64
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseTimeout float64
    Number of seconds waiting for the server response before the connection is closed.
    ServerKeepAlive bool
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    Tags []PolicyLbHttpApplicationProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    XForwardedFor string
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    displayName String
    Display name of the resource.
    description String
    Description of the resource.
    httpRedirectTo String
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    httpRedirectToHttps Boolean
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idleTimeout Double
    Timeout in seconds to specify how long an HTTP application can remain idle.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyLbHttpApplicationProfileId String
    ID of the resource.
    requestBodySize Double
    Maximum request body size in bytes (Unlimited if not specified).
    requestHeaderSize Double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseBuffering Boolean
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    responseHeaderSize Double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseTimeout Double
    Number of seconds waiting for the server response before the connection is closed.
    serverKeepAlive Boolean
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags List<PolicyLbHttpApplicationProfileTag>
    A list of scope + tag pairs to associate with this resource.
    xForwardedFor String
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    displayName string
    Display name of the resource.
    description string
    Description of the resource.
    httpRedirectTo string
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    httpRedirectToHttps boolean
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idleTimeout number
    Timeout in seconds to specify how long an HTTP application can remain idle.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyLbHttpApplicationProfileId string
    ID of the resource.
    requestBodySize number
    Maximum request body size in bytes (Unlimited if not specified).
    requestHeaderSize number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseBuffering boolean
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    responseHeaderSize number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseTimeout number
    Number of seconds waiting for the server response before the connection is closed.
    serverKeepAlive boolean
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags PolicyLbHttpApplicationProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    xForwardedFor string
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    display_name str
    Display name of the resource.
    description str
    Description of the resource.
    http_redirect_to str
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    http_redirect_to_https bool
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idle_timeout float
    Timeout in seconds to specify how long an HTTP application can remain idle.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_lb_http_application_profile_id str
    ID of the resource.
    request_body_size float
    Maximum request body size in bytes (Unlimited if not specified).
    request_header_size float
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    response_buffering bool
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    response_header_size float
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    response_timeout float
    Number of seconds waiting for the server response before the connection is closed.
    server_keep_alive bool
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags Sequence[PolicyLbHttpApplicationProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    x_forwarded_for str
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    displayName String
    Display name of the resource.
    description String
    Description of the resource.
    httpRedirectTo String
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    httpRedirectToHttps Boolean
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idleTimeout Number
    Timeout in seconds to specify how long an HTTP application can remain idle.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyLbHttpApplicationProfileId String
    ID of the resource.
    requestBodySize Number
    Maximum request body size in bytes (Unlimited if not specified).
    requestHeaderSize Number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseBuffering Boolean
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    responseHeaderSize Number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseTimeout Number
    Number of seconds waiting for the server response before the connection is closed.
    serverKeepAlive Boolean
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    xForwardedFor String
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE

    Outputs

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

    Get an existing PolicyLbHttpApplicationProfile 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?: PolicyLbHttpApplicationProfileState, opts?: CustomResourceOptions): PolicyLbHttpApplicationProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            http_redirect_to: Optional[str] = None,
            http_redirect_to_https: Optional[bool] = None,
            idle_timeout: Optional[float] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_lb_http_application_profile_id: Optional[str] = None,
            request_body_size: Optional[float] = None,
            request_header_size: Optional[float] = None,
            response_buffering: Optional[bool] = None,
            response_header_size: Optional[float] = None,
            response_timeout: Optional[float] = None,
            revision: Optional[float] = None,
            server_keep_alive: Optional[bool] = None,
            tags: Optional[Sequence[PolicyLbHttpApplicationProfileTagArgs]] = None,
            x_forwarded_for: Optional[str] = None) -> PolicyLbHttpApplicationProfile
    func GetPolicyLbHttpApplicationProfile(ctx *Context, name string, id IDInput, state *PolicyLbHttpApplicationProfileState, opts ...ResourceOption) (*PolicyLbHttpApplicationProfile, error)
    public static PolicyLbHttpApplicationProfile Get(string name, Input<string> id, PolicyLbHttpApplicationProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyLbHttpApplicationProfile get(String name, Output<String> id, PolicyLbHttpApplicationProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyLbHttpApplicationProfile    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 the resource.
    DisplayName string
    Display name of the resource.
    HttpRedirectTo string
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    HttpRedirectToHttps bool
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    IdleTimeout double
    Timeout in seconds to specify how long an HTTP application can remain idle.
    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.
    PolicyLbHttpApplicationProfileId string
    ID of the resource.
    RequestBodySize double
    Maximum request body size in bytes (Unlimited if not specified).
    RequestHeaderSize double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseBuffering bool
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    ResponseHeaderSize double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseTimeout double
    Number of seconds waiting for the server response before the connection is closed.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    ServerKeepAlive bool
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    Tags List<PolicyLbHttpApplicationProfileTag>
    A list of scope + tag pairs to associate with this resource.
    XForwardedFor string
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    HttpRedirectTo string
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    HttpRedirectToHttps bool
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    IdleTimeout float64
    Timeout in seconds to specify how long an HTTP application can remain idle.
    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.
    PolicyLbHttpApplicationProfileId string
    ID of the resource.
    RequestBodySize float64
    Maximum request body size in bytes (Unlimited if not specified).
    RequestHeaderSize float64
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseBuffering bool
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    ResponseHeaderSize float64
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    ResponseTimeout float64
    Number of seconds waiting for the server response before the connection is closed.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    ServerKeepAlive bool
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    Tags []PolicyLbHttpApplicationProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    XForwardedFor string
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    httpRedirectTo String
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    httpRedirectToHttps Boolean
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idleTimeout Double
    Timeout in seconds to specify how long an HTTP application can remain idle.
    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.
    policyLbHttpApplicationProfileId String
    ID of the resource.
    requestBodySize Double
    Maximum request body size in bytes (Unlimited if not specified).
    requestHeaderSize Double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseBuffering Boolean
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    responseHeaderSize Double
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseTimeout Double
    Number of seconds waiting for the server response before the connection is closed.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    serverKeepAlive Boolean
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags List<PolicyLbHttpApplicationProfileTag>
    A list of scope + tag pairs to associate with this resource.
    xForwardedFor String
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    httpRedirectTo string
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    httpRedirectToHttps boolean
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idleTimeout number
    Timeout in seconds to specify how long an HTTP application can remain idle.
    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.
    policyLbHttpApplicationProfileId string
    ID of the resource.
    requestBodySize number
    Maximum request body size in bytes (Unlimited if not specified).
    requestHeaderSize number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseBuffering boolean
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    responseHeaderSize number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseTimeout number
    Number of seconds waiting for the server response before the connection is closed.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    serverKeepAlive boolean
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags PolicyLbHttpApplicationProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    xForwardedFor string
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    http_redirect_to str
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    http_redirect_to_https bool
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idle_timeout float
    Timeout in seconds to specify how long an HTTP application can remain idle.
    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_lb_http_application_profile_id str
    ID of the resource.
    request_body_size float
    Maximum request body size in bytes (Unlimited if not specified).
    request_header_size float
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    response_buffering bool
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    response_header_size float
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    response_timeout float
    Number of seconds waiting for the server response before the connection is closed.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    server_keep_alive bool
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags Sequence[PolicyLbHttpApplicationProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    x_forwarded_for str
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    httpRedirectTo String
    If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
    httpRedirectToHttps Boolean
    A boolean flag which reflects whether the client will automatically be redirected to use SSL.
    idleTimeout Number
    Timeout in seconds to specify how long an HTTP application can remain idle.
    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.
    policyLbHttpApplicationProfileId String
    ID of the resource.
    requestBodySize Number
    Maximum request body size in bytes (Unlimited if not specified).
    requestHeaderSize Number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseBuffering Boolean
    A boolean flag indicating whether the response received by LB from the backend will be saved into the buffers. When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.
    responseHeaderSize Number
    Maximum request header size in bytes. Requests with larger header size will be processed as best effort whereas a request with header below this specified size is guaranteed to be processed.
    responseTimeout Number
    Number of seconds waiting for the server response before the connection is closed.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    serverKeepAlive Boolean
    A boolean flag indicating whether the backend connection will be kept alive for client connection. If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    xForwardedFor String
    When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically to the request header. Possible values are:INSERT, REPLACE

    Supporting Types

    PolicyLbHttpApplicationProfileTag, PolicyLbHttpApplicationProfileTagArgs

    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.8.1 published on Wednesday, Apr 30, 2025 by vmware