nsxt.LbCookiePersistenceProfile
Explore with Pulumi AI
Create LbCookiePersistenceProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LbCookiePersistenceProfile(name: string, args: LbCookiePersistenceProfileArgs, opts?: CustomResourceOptions);
@overload
def LbCookiePersistenceProfile(resource_name: str,
args: LbCookiePersistenceProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LbCookiePersistenceProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
cookie_name: Optional[str] = None,
cookie_fallback: Optional[bool] = None,
cookie_garble: Optional[bool] = None,
cookie_mode: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
insert_mode_params: Optional[LbCookiePersistenceProfileInsertModeParamsArgs] = None,
lb_cookie_persistence_profile_id: Optional[str] = None,
persistence_shared: Optional[bool] = None,
tags: Optional[Sequence[LbCookiePersistenceProfileTagArgs]] = None)
func NewLbCookiePersistenceProfile(ctx *Context, name string, args LbCookiePersistenceProfileArgs, opts ...ResourceOption) (*LbCookiePersistenceProfile, error)
public LbCookiePersistenceProfile(string name, LbCookiePersistenceProfileArgs args, CustomResourceOptions? opts = null)
public LbCookiePersistenceProfile(String name, LbCookiePersistenceProfileArgs args)
public LbCookiePersistenceProfile(String name, LbCookiePersistenceProfileArgs args, CustomResourceOptions options)
type: nsxt:LbCookiePersistenceProfile
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 LbCookiePersistenceProfileArgs
- 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 LbCookiePersistenceProfileArgs
- 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 LbCookiePersistenceProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LbCookiePersistenceProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LbCookiePersistenceProfileArgs
- 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 lbCookiePersistenceProfileResource = new Nsxt.LbCookiePersistenceProfile("lbCookiePersistenceProfileResource", new()
{
CookieName = "string",
CookieFallback = false,
CookieGarble = false,
CookieMode = "string",
Description = "string",
DisplayName = "string",
InsertModeParams = new Nsxt.Inputs.LbCookiePersistenceProfileInsertModeParamsArgs
{
CookieDomain = "string",
CookieExpiryType = "string",
CookiePath = "string",
MaxIdleTime = 0,
MaxLifeTime = 0,
},
LbCookiePersistenceProfileId = "string",
PersistenceShared = false,
Tags = new[]
{
new Nsxt.Inputs.LbCookiePersistenceProfileTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewLbCookiePersistenceProfile(ctx, "lbCookiePersistenceProfileResource", &nsxt.LbCookiePersistenceProfileArgs{
CookieName: pulumi.String("string"),
CookieFallback: pulumi.Bool(false),
CookieGarble: pulumi.Bool(false),
CookieMode: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
InsertModeParams: &nsxt.LbCookiePersistenceProfileInsertModeParamsArgs{
CookieDomain: pulumi.String("string"),
CookieExpiryType: pulumi.String("string"),
CookiePath: pulumi.String("string"),
MaxIdleTime: pulumi.Float64(0),
MaxLifeTime: pulumi.Float64(0),
},
LbCookiePersistenceProfileId: pulumi.String("string"),
PersistenceShared: pulumi.Bool(false),
Tags: nsxt.LbCookiePersistenceProfileTagArray{
&nsxt.LbCookiePersistenceProfileTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
var lbCookiePersistenceProfileResource = new LbCookiePersistenceProfile("lbCookiePersistenceProfileResource", LbCookiePersistenceProfileArgs.builder()
.cookieName("string")
.cookieFallback(false)
.cookieGarble(false)
.cookieMode("string")
.description("string")
.displayName("string")
.insertModeParams(LbCookiePersistenceProfileInsertModeParamsArgs.builder()
.cookieDomain("string")
.cookieExpiryType("string")
.cookiePath("string")
.maxIdleTime(0)
.maxLifeTime(0)
.build())
.lbCookiePersistenceProfileId("string")
.persistenceShared(false)
.tags(LbCookiePersistenceProfileTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
lb_cookie_persistence_profile_resource = nsxt.LbCookiePersistenceProfile("lbCookiePersistenceProfileResource",
cookie_name="string",
cookie_fallback=False,
cookie_garble=False,
cookie_mode="string",
description="string",
display_name="string",
insert_mode_params={
"cookie_domain": "string",
"cookie_expiry_type": "string",
"cookie_path": "string",
"max_idle_time": 0,
"max_life_time": 0,
},
lb_cookie_persistence_profile_id="string",
persistence_shared=False,
tags=[{
"scope": "string",
"tag": "string",
}])
const lbCookiePersistenceProfileResource = new nsxt.LbCookiePersistenceProfile("lbCookiePersistenceProfileResource", {
cookieName: "string",
cookieFallback: false,
cookieGarble: false,
cookieMode: "string",
description: "string",
displayName: "string",
insertModeParams: {
cookieDomain: "string",
cookieExpiryType: "string",
cookiePath: "string",
maxIdleTime: 0,
maxLifeTime: 0,
},
lbCookiePersistenceProfileId: "string",
persistenceShared: false,
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:LbCookiePersistenceProfile
properties:
cookieFallback: false
cookieGarble: false
cookieMode: string
cookieName: string
description: string
displayName: string
insertModeParams:
cookieDomain: string
cookieExpiryType: string
cookiePath: string
maxIdleTime: 0
maxLifeTime: 0
lbCookiePersistenceProfileId: string
persistenceShared: false
tags:
- scope: string
tag: string
LbCookiePersistenceProfile 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 LbCookiePersistenceProfile resource accepts the following input properties:
- string
- cookie name.
- bool
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- bool
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- string
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- Description string
- Description of this resource.
- Display
Name string - The display name of this resource. Defaults to ID if not set.
- Insert
Mode LbParams Cookie Persistence Profile Insert Mode Params - Additional parameters for the INSERT cookie mode:
- string
- ID of the lb cookie persistence profile.
- bool
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- List<Lb
Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- string
- cookie name.
- bool
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- bool
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- string
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- Description string
- Description of this resource.
- Display
Name string - The display name of this resource. Defaults to ID if not set.
- Insert
Mode LbParams Cookie Persistence Profile Insert Mode Params Args - Additional parameters for the INSERT cookie mode:
- string
- ID of the lb cookie persistence profile.
- bool
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- []Lb
Cookie Persistence Profile Tag Args - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- String
- cookie name.
- Boolean
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- Boolean
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- String
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- description String
- Description of this resource.
- display
Name String - The display name of this resource. Defaults to ID if not set.
- insert
Mode LbParams Cookie Persistence Profile Insert Mode Params - Additional parameters for the INSERT cookie mode:
- String
- ID of the lb cookie persistence profile.
- Boolean
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- List<Lb
Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- string
- cookie name.
- boolean
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- boolean
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- string
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- description string
- Description of this resource.
- display
Name string - The display name of this resource. Defaults to ID if not set.
- insert
Mode LbParams Cookie Persistence Profile Insert Mode Params - Additional parameters for the INSERT cookie mode:
- string
- ID of the lb cookie persistence profile.
- boolean
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- Lb
Cookie Persistence Profile Tag[] - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- str
- cookie name.
- bool
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- bool
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- str
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- description str
- Description of this resource.
- display_
name str - The display name of this resource. Defaults to ID if not set.
- insert_
mode_ Lbparams Cookie Persistence Profile Insert Mode Params Args - Additional parameters for the INSERT cookie mode:
- str
- ID of the lb cookie persistence profile.
- bool
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- Sequence[Lb
Cookie Persistence Profile Tag Args] - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- String
- cookie name.
- Boolean
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- Boolean
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- String
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- description String
- Description of this resource.
- display
Name String - The display name of this resource. Defaults to ID if not set.
- insert
Mode Property MapParams - Additional parameters for the INSERT cookie mode:
- String
- ID of the lb cookie persistence profile.
- Boolean
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- List<Property Map>
- A list of scope + tag pairs to associate with this lb cookie persistence profile.
Outputs
All input properties are implicitly available as output properties. Additionally, the LbCookiePersistenceProfile resource produces the following output properties:
Look up Existing LbCookiePersistenceProfile Resource
Get an existing LbCookiePersistenceProfile 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?: LbCookiePersistenceProfileState, opts?: CustomResourceOptions): LbCookiePersistenceProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cookie_fallback: Optional[bool] = None,
cookie_garble: Optional[bool] = None,
cookie_mode: Optional[str] = None,
cookie_name: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
insert_mode_params: Optional[LbCookiePersistenceProfileInsertModeParamsArgs] = None,
lb_cookie_persistence_profile_id: Optional[str] = None,
persistence_shared: Optional[bool] = None,
revision: Optional[float] = None,
tags: Optional[Sequence[LbCookiePersistenceProfileTagArgs]] = None) -> LbCookiePersistenceProfile
func GetLbCookiePersistenceProfile(ctx *Context, name string, id IDInput, state *LbCookiePersistenceProfileState, opts ...ResourceOption) (*LbCookiePersistenceProfile, error)
public static LbCookiePersistenceProfile Get(string name, Input<string> id, LbCookiePersistenceProfileState? state, CustomResourceOptions? opts = null)
public static LbCookiePersistenceProfile get(String name, Output<String> id, LbCookiePersistenceProfileState state, CustomResourceOptions options)
resources: _: type: nsxt:LbCookiePersistenceProfile 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.
- bool
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- bool
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- string
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- string
- cookie name.
- Description string
- Description of this resource.
- Display
Name string - The display name of this resource. Defaults to ID if not set.
- Insert
Mode LbParams Cookie Persistence Profile Insert Mode Params - Additional parameters for the INSERT cookie mode:
- string
- ID of the lb cookie persistence profile.
- bool
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- List<Lb
Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- bool
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- bool
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- string
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- string
- cookie name.
- Description string
- Description of this resource.
- Display
Name string - The display name of this resource. Defaults to ID if not set.
- Insert
Mode LbParams Cookie Persistence Profile Insert Mode Params Args - Additional parameters for the INSERT cookie mode:
- string
- ID of the lb cookie persistence profile.
- bool
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- []Lb
Cookie Persistence Profile Tag Args - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- Boolean
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- Boolean
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- String
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- String
- cookie name.
- description String
- Description of this resource.
- display
Name String - The display name of this resource. Defaults to ID if not set.
- insert
Mode LbParams Cookie Persistence Profile Insert Mode Params - Additional parameters for the INSERT cookie mode:
- String
- ID of the lb cookie persistence profile.
- Boolean
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- List<Lb
Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- boolean
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- boolean
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- string
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- string
- cookie name.
- description string
- Description of this resource.
- display
Name string - The display name of this resource. Defaults to ID if not set.
- insert
Mode LbParams Cookie Persistence Profile Insert Mode Params - Additional parameters for the INSERT cookie mode:
- string
- ID of the lb cookie persistence profile.
- boolean
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Lb
Cookie Persistence Profile Tag[] - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- bool
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- bool
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- str
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- str
- cookie name.
- description str
- Description of this resource.
- display_
name str - The display name of this resource. Defaults to ID if not set.
- insert_
mode_ Lbparams Cookie Persistence Profile Insert Mode Params Args - Additional parameters for the INSERT cookie mode:
- str
- ID of the lb cookie persistence profile.
- bool
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- revision float
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Sequence[Lb
Cookie Persistence Profile Tag Args] - A list of scope + tag pairs to associate with this lb cookie persistence profile.
- Boolean
- A boolean flag which reflects whether once the server points by this cookie is down, a new server is selected, or the requests will be rejected.
- Boolean
- A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
- String
- The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
- String
- cookie name.
- description String
- Description of this resource.
- display
Name String - The display name of this resource. Defaults to ID if not set.
- insert
Mode Property MapParams - Additional parameters for the INSERT cookie mode:
- String
- ID of the lb cookie persistence profile.
- Boolean
- A boolean flag which reflects whether the cookie persistence is private or shared. When false (which is the default value), the cookie persistence is private to each virtual server and is qualified by the pool. If set to true, in cookie insert mode, cookie persistence could be shared across multiple virtual servers that are bound to the same pools.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- List<Property Map>
- A list of scope + tag pairs to associate with this lb cookie persistence profile.
Supporting Types
LbCookiePersistenceProfileInsertModeParams, LbCookiePersistenceProfileInsertModeParamsArgs
- string
- HTTP cookie domain (for INSERT mode only).
- string
- Type of cookie expiration timing (for INSERT mode only). Accepted values: SESSION_COOKIE_TIME for session cookie time setting and PERSISTENCE_COOKIE_TIME for persistence cookie time setting.
- string
- HTTP cookie path (for INSERT mode only).
- Max
Idle doubleTime - Maximum interval the cookie is valid for from the last time it was seen in a request.
- Max
Life doubleTime - Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
- string
- HTTP cookie domain (for INSERT mode only).
- string
- Type of cookie expiration timing (for INSERT mode only). Accepted values: SESSION_COOKIE_TIME for session cookie time setting and PERSISTENCE_COOKIE_TIME for persistence cookie time setting.
- string
- HTTP cookie path (for INSERT mode only).
- Max
Idle float64Time - Maximum interval the cookie is valid for from the last time it was seen in a request.
- Max
Life float64Time - Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
- String
- HTTP cookie domain (for INSERT mode only).
- String
- Type of cookie expiration timing (for INSERT mode only). Accepted values: SESSION_COOKIE_TIME for session cookie time setting and PERSISTENCE_COOKIE_TIME for persistence cookie time setting.
- String
- HTTP cookie path (for INSERT mode only).
- max
Idle DoubleTime - Maximum interval the cookie is valid for from the last time it was seen in a request.
- max
Life DoubleTime - Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
- string
- HTTP cookie domain (for INSERT mode only).
- string
- Type of cookie expiration timing (for INSERT mode only). Accepted values: SESSION_COOKIE_TIME for session cookie time setting and PERSISTENCE_COOKIE_TIME for persistence cookie time setting.
- string
- HTTP cookie path (for INSERT mode only).
- max
Idle numberTime - Maximum interval the cookie is valid for from the last time it was seen in a request.
- max
Life numberTime - Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
- str
- HTTP cookie domain (for INSERT mode only).
- str
- Type of cookie expiration timing (for INSERT mode only). Accepted values: SESSION_COOKIE_TIME for session cookie time setting and PERSISTENCE_COOKIE_TIME for persistence cookie time setting.
- str
- HTTP cookie path (for INSERT mode only).
- max_
idle_ floattime - Maximum interval the cookie is valid for from the last time it was seen in a request.
- max_
life_ floattime - Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
- String
- HTTP cookie domain (for INSERT mode only).
- String
- Type of cookie expiration timing (for INSERT mode only). Accepted values: SESSION_COOKIE_TIME for session cookie time setting and PERSISTENCE_COOKIE_TIME for persistence cookie time setting.
- String
- HTTP cookie path (for INSERT mode only).
- max
Idle NumberTime - Maximum interval the cookie is valid for from the last time it was seen in a request.
- max
Life NumberTime - Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
LbCookiePersistenceProfileTag, LbCookiePersistenceProfileTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.