nsxt.PolicyLbHttpApplicationProfile
Explore with Pulumi AI
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:
- Display
Name string - Display name of the resource.
- Description string
- Description of the resource.
- Http
Redirect stringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- Http
Redirect boolTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- Idle
Timeout double - Timeout in seconds to specify how long an HTTP application can remain idle.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb stringHttp Application Profile Id - ID of the resource.
- Request
Body doubleSize - Maximum request body size in bytes (Unlimited if not specified).
- Request
Header doubleSize - 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 doubleSize - 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 double - Number of seconds waiting for the server response before the connection is closed.
- Server
Keep boolAlive - 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.
- List<Policy
Lb Http Application Profile Tag> - A list of scope + tag pairs to associate with this resource.
- XForwarded
For 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 string - Display name of the resource.
- Description string
- Description of the resource.
- Http
Redirect stringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- Http
Redirect boolTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- Idle
Timeout float64 - Timeout in seconds to specify how long an HTTP application can remain idle.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb stringHttp Application Profile Id - ID of the resource.
- Request
Body float64Size - Maximum request body size in bytes (Unlimited if not specified).
- Request
Header float64Size - 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 float64Size - 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 float64 - Number of seconds waiting for the server response before the connection is closed.
- Server
Keep boolAlive - 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.
- []Policy
Lb Http Application Profile Tag Args - A list of scope + tag pairs to associate with this resource.
- XForwarded
For 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 String - Display name of the resource.
- description String
- Description of the resource.
- http
Redirect StringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http
Redirect BooleanTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- idle
Timeout Double - Timeout in seconds to specify how long an HTTP application can remain idle.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Lb StringHttp Application Profile Id - ID of the resource.
- request
Body DoubleSize - Maximum request body size in bytes (Unlimited if not specified).
- request
Header DoubleSize - 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 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.
- response
Header DoubleSize - 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 Double - Number of seconds waiting for the server response before the connection is closed.
- server
Keep BooleanAlive - 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.
- List<Policy
Lb Http Application Profile Tag> - A list of scope + tag pairs to associate with this resource.
- x
Forwarded StringFor - 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 string - Display name of the resource.
- description string
- Description of the resource.
- http
Redirect stringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http
Redirect booleanTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- idle
Timeout number - Timeout in seconds to specify how long an HTTP application can remain idle.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Lb stringHttp Application Profile Id - ID of the resource.
- request
Body numberSize - Maximum request body size in bytes (Unlimited if not specified).
- request
Header numberSize - 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 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.
- response
Header numberSize - 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 number - Number of seconds waiting for the server response before the connection is closed.
- server
Keep booleanAlive - 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.
- Policy
Lb Http Application Profile Tag[] - A list of scope + tag pairs to associate with this resource.
- x
Forwarded stringFor - 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_ strto - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http_
redirect_ boolto_ https - 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_ strhttp_ application_ profile_ id - ID of the resource.
- request_
body_ floatsize - Maximum request body size in bytes (Unlimited if not specified).
- request_
header_ floatsize - 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_ floatsize - 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_ boolalive - 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.
- Sequence[Policy
Lb Http Application Profile Tag Args] - A list of scope + tag pairs to associate with this resource.
- x_
forwarded_ strfor - 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 String - Display name of the resource.
- description String
- Description of the resource.
- http
Redirect StringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http
Redirect BooleanTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- idle
Timeout Number - Timeout in seconds to specify how long an HTTP application can remain idle.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Lb StringHttp Application Profile Id - ID of the resource.
- request
Body NumberSize - Maximum request body size in bytes (Unlimited if not specified).
- request
Header NumberSize - 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 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.
- response
Header NumberSize - 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 Number - Number of seconds waiting for the server response before the connection is closed.
- server
Keep BooleanAlive - 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.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- x
Forwarded StringFor - 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:
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.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Http
Redirect stringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- Http
Redirect boolTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- Idle
Timeout double - Timeout in seconds to specify how long an HTTP application can remain idle.
- Nsx
Id 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.
- Policy
Lb stringHttp Application Profile Id - ID of the resource.
- Request
Body doubleSize - Maximum request body size in bytes (Unlimited if not specified).
- Request
Header doubleSize - 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 doubleSize - 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 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.
- Server
Keep boolAlive - 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.
- List<Policy
Lb Http Application Profile Tag> - A list of scope + tag pairs to associate with this resource.
- XForwarded
For 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.
- Display
Name string - Display name of the resource.
- Http
Redirect stringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- Http
Redirect boolTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- Idle
Timeout float64 - Timeout in seconds to specify how long an HTTP application can remain idle.
- Nsx
Id 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.
- Policy
Lb stringHttp Application Profile Id - ID of the resource.
- Request
Body float64Size - Maximum request body size in bytes (Unlimited if not specified).
- Request
Header float64Size - 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 float64Size - 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 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.
- Server
Keep boolAlive - 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.
- []Policy
Lb Http Application Profile Tag Args - A list of scope + tag pairs to associate with this resource.
- XForwarded
For 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.
- display
Name String - Display name of the resource.
- http
Redirect StringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http
Redirect BooleanTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- idle
Timeout Double - Timeout in seconds to specify how long an HTTP application can remain idle.
- nsx
Id 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.
- policy
Lb StringHttp Application Profile Id - ID of the resource.
- request
Body DoubleSize - Maximum request body size in bytes (Unlimited if not specified).
- request
Header DoubleSize - 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 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.
- response
Header DoubleSize - 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 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.
- server
Keep BooleanAlive - 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.
- List<Policy
Lb Http Application Profile Tag> - A list of scope + tag pairs to associate with this resource.
- x
Forwarded StringFor - 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.
- display
Name string - Display name of the resource.
- http
Redirect stringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http
Redirect booleanTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- idle
Timeout number - Timeout in seconds to specify how long an HTTP application can remain idle.
- nsx
Id 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.
- policy
Lb stringHttp Application Profile Id - ID of the resource.
- request
Body numberSize - Maximum request body size in bytes (Unlimited if not specified).
- request
Header numberSize - 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 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.
- response
Header numberSize - 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 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.
- server
Keep booleanAlive - 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.
- Policy
Lb Http Application Profile Tag[] - A list of scope + tag pairs to associate with this resource.
- x
Forwarded stringFor - 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_ strto - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http_
redirect_ boolto_ https - 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_ strhttp_ application_ profile_ id - ID of the resource.
- request_
body_ floatsize - Maximum request body size in bytes (Unlimited if not specified).
- request_
header_ floatsize - 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_ floatsize - 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_ boolalive - 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.
- Sequence[Policy
Lb Http Application Profile Tag Args] - A list of scope + tag pairs to associate with this resource.
- x_
forwarded_ strfor - 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.
- display
Name String - Display name of the resource.
- http
Redirect StringTo - If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL.
- http
Redirect BooleanTo Https - A boolean flag which reflects whether the client will automatically be redirected to use SSL.
- idle
Timeout Number - Timeout in seconds to specify how long an HTTP application can remain idle.
- nsx
Id 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.
- policy
Lb StringHttp Application Profile Id - ID of the resource.
- request
Body NumberSize - Maximum request body size in bytes (Unlimited if not specified).
- request
Header NumberSize - 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 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.
- response
Header NumberSize - 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 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.
- server
Keep BooleanAlive - 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.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- x
Forwarded StringFor - 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
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.