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

nsxt.LbHttpApplicationProfile

Explore with Pulumi AI

Create LbHttpApplicationProfile Resource

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

Constructor syntax

new LbHttpApplicationProfile(name: string, args?: LbHttpApplicationProfileArgs, opts?: CustomResourceOptions);
@overload
def LbHttpApplicationProfile(resource_name: str,
                             args: Optional[LbHttpApplicationProfileArgs] = None,
                             opts: Optional[ResourceOptions] = None)

@overload
def LbHttpApplicationProfile(resource_name: 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,
                             lb_http_application_profile_id: Optional[str] = None,
                             ntlm: Optional[bool] = None,
                             request_body_size: Optional[float] = None,
                             request_header_size: Optional[float] = None,
                             response_timeout: Optional[float] = None,
                             tags: Optional[Sequence[LbHttpApplicationProfileTagArgs]] = None,
                             x_forwarded_for: Optional[str] = None)
func NewLbHttpApplicationProfile(ctx *Context, name string, args *LbHttpApplicationProfileArgs, opts ...ResourceOption) (*LbHttpApplicationProfile, error)
public LbHttpApplicationProfile(string name, LbHttpApplicationProfileArgs? args = null, CustomResourceOptions? opts = null)
public LbHttpApplicationProfile(String name, LbHttpApplicationProfileArgs args)
public LbHttpApplicationProfile(String name, LbHttpApplicationProfileArgs args, CustomResourceOptions options)
type: nsxt:LbHttpApplicationProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args LbHttpApplicationProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args LbHttpApplicationProfileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args LbHttpApplicationProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args LbHttpApplicationProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LbHttpApplicationProfileArgs
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 lbHttpApplicationProfileResource = new Nsxt.LbHttpApplicationProfile("lbHttpApplicationProfileResource", new()
{
    Description = "string",
    DisplayName = "string",
    HttpRedirectTo = "string",
    HttpRedirectToHttps = false,
    IdleTimeout = 0,
    LbHttpApplicationProfileId = "string",
    Ntlm = false,
    RequestBodySize = 0,
    RequestHeaderSize = 0,
    ResponseTimeout = 0,
    Tags = new[]
    {
        new Nsxt.Inputs.LbHttpApplicationProfileTagArgs
        {
            Scope = "string",
            Tag = "string",
        },
    },
    XForwardedFor = "string",
});
Copy
example, err := nsxt.NewLbHttpApplicationProfile(ctx, "lbHttpApplicationProfileResource", &nsxt.LbHttpApplicationProfileArgs{
	Description:                pulumi.String("string"),
	DisplayName:                pulumi.String("string"),
	HttpRedirectTo:             pulumi.String("string"),
	HttpRedirectToHttps:        pulumi.Bool(false),
	IdleTimeout:                pulumi.Float64(0),
	LbHttpApplicationProfileId: pulumi.String("string"),
	Ntlm:                       pulumi.Bool(false),
	RequestBodySize:            pulumi.Float64(0),
	RequestHeaderSize:          pulumi.Float64(0),
	ResponseTimeout:            pulumi.Float64(0),
	Tags: nsxt.LbHttpApplicationProfileTagArray{
		&nsxt.LbHttpApplicationProfileTagArgs{
			Scope: pulumi.String("string"),
			Tag:   pulumi.String("string"),
		},
	},
	XForwardedFor: pulumi.String("string"),
})
Copy
var lbHttpApplicationProfileResource = new LbHttpApplicationProfile("lbHttpApplicationProfileResource", LbHttpApplicationProfileArgs.builder()
    .description("string")
    .displayName("string")
    .httpRedirectTo("string")
    .httpRedirectToHttps(false)
    .idleTimeout(0)
    .lbHttpApplicationProfileId("string")
    .ntlm(false)
    .requestBodySize(0)
    .requestHeaderSize(0)
    .responseTimeout(0)
    .tags(LbHttpApplicationProfileTagArgs.builder()
        .scope("string")
        .tag("string")
        .build())
    .xForwardedFor("string")
    .build());
Copy
lb_http_application_profile_resource = nsxt.LbHttpApplicationProfile("lbHttpApplicationProfileResource",
    description="string",
    display_name="string",
    http_redirect_to="string",
    http_redirect_to_https=False,
    idle_timeout=0,
    lb_http_application_profile_id="string",
    ntlm=False,
    request_body_size=0,
    request_header_size=0,
    response_timeout=0,
    tags=[{
        "scope": "string",
        "tag": "string",
    }],
    x_forwarded_for="string")
Copy
const lbHttpApplicationProfileResource = new nsxt.LbHttpApplicationProfile("lbHttpApplicationProfileResource", {
    description: "string",
    displayName: "string",
    httpRedirectTo: "string",
    httpRedirectToHttps: false,
    idleTimeout: 0,
    lbHttpApplicationProfileId: "string",
    ntlm: false,
    requestBodySize: 0,
    requestHeaderSize: 0,
    responseTimeout: 0,
    tags: [{
        scope: "string",
        tag: "string",
    }],
    xForwardedFor: "string",
});
Copy
type: nsxt:LbHttpApplicationProfile
properties:
    description: string
    displayName: string
    httpRedirectTo: string
    httpRedirectToHttps: false
    idleTimeout: 0
    lbHttpApplicationProfileId: string
    ntlm: false
    requestBodySize: 0
    requestHeaderSize: 0
    responseTimeout: 0
    tags:
        - scope: string
          tag: string
    xForwardedFor: string
Copy

LbHttpApplicationProfile 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 LbHttpApplicationProfile 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.
HttpRedirectTo string
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
HttpRedirectToHttps bool
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
IdleTimeout double
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
LbHttpApplicationProfileId string
ID of the lb http application profile.
Ntlm bool
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
RequestBodySize double
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
ResponseTimeout double
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
Tags List<LbHttpApplicationProfileTag>
A list of scope + tag pairs to associate with this lb http profile.
XForwardedFor string
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
Description string
Description of this resource.
DisplayName string
The display name of this resource. Defaults to ID if not set.
HttpRedirectTo string
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
HttpRedirectToHttps bool
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
IdleTimeout float64
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
LbHttpApplicationProfileId string
ID of the lb http application profile.
Ntlm bool
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
RequestBodySize float64
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
ResponseTimeout float64
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
Tags []LbHttpApplicationProfileTagArgs
A list of scope + tag pairs to associate with this lb http profile.
XForwardedFor string
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description String
Description of this resource.
displayName String
The display name of this resource. Defaults to ID if not set.
httpRedirectTo String
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
httpRedirectToHttps Boolean
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idleTimeout Double
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lbHttpApplicationProfileId String
ID of the lb http application profile.
ntlm Boolean
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
requestBodySize Double
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
responseTimeout Double
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
tags List<LbHttpApplicationProfileTag>
A list of scope + tag pairs to associate with this lb http profile.
xForwardedFor String
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description string
Description of this resource.
displayName string
The display name of this resource. Defaults to ID if not set.
httpRedirectTo string
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
httpRedirectToHttps boolean
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idleTimeout number
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lbHttpApplicationProfileId string
ID of the lb http application profile.
ntlm boolean
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
requestBodySize number
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
responseTimeout number
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
tags LbHttpApplicationProfileTag[]
A list of scope + tag pairs to associate with this lb http profile.
xForwardedFor string
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description str
Description of this resource.
display_name str
The display name of this resource. Defaults to ID if not set.
http_redirect_to str
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
http_redirect_to_https bool
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idle_timeout float
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lb_http_application_profile_id str
ID of the lb http application profile.
ntlm bool
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
request_body_size float
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
response_timeout float
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
tags Sequence[LbHttpApplicationProfileTagArgs]
A list of scope + tag pairs to associate with this lb http profile.
x_forwarded_for str
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description String
Description of this resource.
displayName String
The display name of this resource. Defaults to ID if not set.
httpRedirectTo String
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
httpRedirectToHttps Boolean
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idleTimeout Number
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lbHttpApplicationProfileId String
ID of the lb http application profile.
ntlm Boolean
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
requestBodySize Number
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
responseTimeout Number
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
tags List<Property Map>
A list of scope + tag pairs to associate with this lb http profile.
xForwardedFor String
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".

Outputs

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

Get an existing LbHttpApplicationProfile 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?: LbHttpApplicationProfileState, opts?: CustomResourceOptions): LbHttpApplicationProfile
@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,
        lb_http_application_profile_id: Optional[str] = None,
        ntlm: Optional[bool] = None,
        request_body_size: Optional[float] = None,
        request_header_size: Optional[float] = None,
        response_timeout: Optional[float] = None,
        revision: Optional[float] = None,
        tags: Optional[Sequence[LbHttpApplicationProfileTagArgs]] = None,
        x_forwarded_for: Optional[str] = None) -> LbHttpApplicationProfile
func GetLbHttpApplicationProfile(ctx *Context, name string, id IDInput, state *LbHttpApplicationProfileState, opts ...ResourceOption) (*LbHttpApplicationProfile, error)
public static LbHttpApplicationProfile Get(string name, Input<string> id, LbHttpApplicationProfileState? state, CustomResourceOptions? opts = null)
public static LbHttpApplicationProfile get(String name, Output<String> id, LbHttpApplicationProfileState state, CustomResourceOptions options)
resources:  _:    type: nsxt:LbHttpApplicationProfile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
HttpRedirectTo string
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
HttpRedirectToHttps bool
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
IdleTimeout double
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
LbHttpApplicationProfileId string
ID of the lb http application profile.
Ntlm bool
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
RequestBodySize double
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
ResponseTimeout double
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
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<LbHttpApplicationProfileTag>
A list of scope + tag pairs to associate with this lb http profile.
XForwardedFor string
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
Description string
Description of this resource.
DisplayName string
The display name of this resource. Defaults to ID if not set.
HttpRedirectTo string
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
HttpRedirectToHttps bool
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
IdleTimeout float64
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
LbHttpApplicationProfileId string
ID of the lb http application profile.
Ntlm bool
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
RequestBodySize float64
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
ResponseTimeout float64
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Tags []LbHttpApplicationProfileTagArgs
A list of scope + tag pairs to associate with this lb http profile.
XForwardedFor string
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description String
Description of this resource.
displayName String
The display name of this resource. Defaults to ID if not set.
httpRedirectTo String
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
httpRedirectToHttps Boolean
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idleTimeout Double
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lbHttpApplicationProfileId String
ID of the lb http application profile.
ntlm Boolean
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
requestBodySize Double
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
responseTimeout Double
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
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<LbHttpApplicationProfileTag>
A list of scope + tag pairs to associate with this lb http profile.
xForwardedFor String
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description string
Description of this resource.
displayName string
The display name of this resource. Defaults to ID if not set.
httpRedirectTo string
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
httpRedirectToHttps boolean
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idleTimeout number
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lbHttpApplicationProfileId string
ID of the lb http application profile.
ntlm boolean
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
requestBodySize number
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
responseTimeout number
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags LbHttpApplicationProfileTag[]
A list of scope + tag pairs to associate with this lb http profile.
xForwardedFor string
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description str
Description of this resource.
display_name str
The display name of this resource. Defaults to ID if not set.
http_redirect_to str
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
http_redirect_to_https bool
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idle_timeout float
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lb_http_application_profile_id str
ID of the lb http application profile.
ntlm bool
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
request_body_size float
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
response_timeout float
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
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[LbHttpApplicationProfileTagArgs]
A list of scope + tag pairs to associate with this lb http profile.
x_forwarded_for str
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".
description String
Description of this resource.
displayName String
The display name of this resource. Defaults to ID if not set.
httpRedirectTo String
A URL that incoming requests for that virtual server can be temporarily redirected to, If a website is temporarily down or has moved. When set, http_redirect_to_https should be false.
httpRedirectToHttps Boolean
A boolean flag which reflects whether the client will automatically be redirected to use SSL. When true, the http_redirect_to should not be specified.
idleTimeout Number
Timeout in seconds to specify how long an HTTP application can remain idle. Defaults to 15 seconds.
lbHttpApplicationProfileId String
ID of the lb http application profile.
ntlm Boolean
A boolean flag which reflects whether NTLM challenge/response methodology will be used over HTTP. Can be set to true only if http_redirect_to_https is false.
requestBodySize Number
Maximum request body size in bytes. If it is not specified, it means that request body size is unlimited.
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. Defaults to 1024 bytes.
responseTimeout Number
Number of seconds waiting for the server response before the connection is closed. Defaults to 60 seconds.
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 http profile.
xForwardedFor String
When this value is set, the x_forwarded_for header in the incoming request will be inserted or replaced. Supported values are "INSERT" and "REPLACE".

Supporting Types

LbHttpApplicationProfileTag
, LbHttpApplicationProfileTagArgs

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

Package Details

Repository
nsxt vmware/terraform-provider-nsxt
License
Notes
This Pulumi package is based on the nsxt Terraform Provider.