nsxt.PolicyLbCookiePersistenceProfile
Explore with Pulumi AI
Create PolicyLbCookiePersistenceProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyLbCookiePersistenceProfile(name: string, args: PolicyLbCookiePersistenceProfileArgs, opts?: CustomResourceOptions);
@overload
def PolicyLbCookiePersistenceProfile(resource_name: str,
args: PolicyLbCookiePersistenceProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyLbCookiePersistenceProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
description: Optional[str] = None,
persistence_cookie_time: Optional[PolicyLbCookiePersistenceProfilePersistenceCookieTimeArgs] = None,
cookie_httponly: Optional[bool] = None,
cookie_mode: Optional[str] = None,
cookie_name: Optional[str] = None,
cookie_path: Optional[str] = None,
cookie_garble: Optional[bool] = None,
cookie_fallback: Optional[bool] = None,
cookie_secure: Optional[bool] = None,
nsx_id: Optional[str] = None,
cookie_domain: Optional[str] = None,
persistence_shared: Optional[bool] = None,
policy_lb_cookie_persistence_profile_id: Optional[str] = None,
session_cookie_time: Optional[PolicyLbCookiePersistenceProfileSessionCookieTimeArgs] = None,
tags: Optional[Sequence[PolicyLbCookiePersistenceProfileTagArgs]] = None)
func NewPolicyLbCookiePersistenceProfile(ctx *Context, name string, args PolicyLbCookiePersistenceProfileArgs, opts ...ResourceOption) (*PolicyLbCookiePersistenceProfile, error)
public PolicyLbCookiePersistenceProfile(string name, PolicyLbCookiePersistenceProfileArgs args, CustomResourceOptions? opts = null)
public PolicyLbCookiePersistenceProfile(String name, PolicyLbCookiePersistenceProfileArgs args)
public PolicyLbCookiePersistenceProfile(String name, PolicyLbCookiePersistenceProfileArgs args, CustomResourceOptions options)
type: nsxt:PolicyLbCookiePersistenceProfile
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 PolicyLbCookiePersistenceProfileArgs
- 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 PolicyLbCookiePersistenceProfileArgs
- 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 PolicyLbCookiePersistenceProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyLbCookiePersistenceProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyLbCookiePersistenceProfileArgs
- 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 policyLbCookiePersistenceProfileResource = new Nsxt.PolicyLbCookiePersistenceProfile("policyLbCookiePersistenceProfileResource", new()
{
DisplayName = "string",
Description = "string",
PersistenceCookieTime = new Nsxt.Inputs.PolicyLbCookiePersistenceProfilePersistenceCookieTimeArgs
{
MaxIdle = 0,
},
CookieHttponly = false,
CookieMode = "string",
CookieName = "string",
CookiePath = "string",
CookieGarble = false,
CookieFallback = false,
CookieSecure = false,
NsxId = "string",
CookieDomain = "string",
PersistenceShared = false,
PolicyLbCookiePersistenceProfileId = "string",
SessionCookieTime = new Nsxt.Inputs.PolicyLbCookiePersistenceProfileSessionCookieTimeArgs
{
MaxIdle = 0,
MaxLife = 0,
},
Tags = new[]
{
new Nsxt.Inputs.PolicyLbCookiePersistenceProfileTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewPolicyLbCookiePersistenceProfile(ctx, "policyLbCookiePersistenceProfileResource", &nsxt.PolicyLbCookiePersistenceProfileArgs{
DisplayName: pulumi.String("string"),
Description: pulumi.String("string"),
PersistenceCookieTime: &nsxt.PolicyLbCookiePersistenceProfilePersistenceCookieTimeArgs{
MaxIdle: pulumi.Float64(0),
},
CookieHttponly: pulumi.Bool(false),
CookieMode: pulumi.String("string"),
CookieName: pulumi.String("string"),
CookiePath: pulumi.String("string"),
CookieGarble: pulumi.Bool(false),
CookieFallback: pulumi.Bool(false),
CookieSecure: pulumi.Bool(false),
NsxId: pulumi.String("string"),
CookieDomain: pulumi.String("string"),
PersistenceShared: pulumi.Bool(false),
PolicyLbCookiePersistenceProfileId: pulumi.String("string"),
SessionCookieTime: &nsxt.PolicyLbCookiePersistenceProfileSessionCookieTimeArgs{
MaxIdle: pulumi.Float64(0),
MaxLife: pulumi.Float64(0),
},
Tags: nsxt.PolicyLbCookiePersistenceProfileTagArray{
&nsxt.PolicyLbCookiePersistenceProfileTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
var policyLbCookiePersistenceProfileResource = new PolicyLbCookiePersistenceProfile("policyLbCookiePersistenceProfileResource", PolicyLbCookiePersistenceProfileArgs.builder()
.displayName("string")
.description("string")
.persistenceCookieTime(PolicyLbCookiePersistenceProfilePersistenceCookieTimeArgs.builder()
.maxIdle(0)
.build())
.cookieHttponly(false)
.cookieMode("string")
.cookieName("string")
.cookiePath("string")
.cookieGarble(false)
.cookieFallback(false)
.cookieSecure(false)
.nsxId("string")
.cookieDomain("string")
.persistenceShared(false)
.policyLbCookiePersistenceProfileId("string")
.sessionCookieTime(PolicyLbCookiePersistenceProfileSessionCookieTimeArgs.builder()
.maxIdle(0)
.maxLife(0)
.build())
.tags(PolicyLbCookiePersistenceProfileTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
policy_lb_cookie_persistence_profile_resource = nsxt.PolicyLbCookiePersistenceProfile("policyLbCookiePersistenceProfileResource",
display_name="string",
description="string",
persistence_cookie_time={
"max_idle": 0,
},
cookie_httponly=False,
cookie_mode="string",
cookie_name="string",
cookie_path="string",
cookie_garble=False,
cookie_fallback=False,
cookie_secure=False,
nsx_id="string",
cookie_domain="string",
persistence_shared=False,
policy_lb_cookie_persistence_profile_id="string",
session_cookie_time={
"max_idle": 0,
"max_life": 0,
},
tags=[{
"scope": "string",
"tag": "string",
}])
const policyLbCookiePersistenceProfileResource = new nsxt.PolicyLbCookiePersistenceProfile("policyLbCookiePersistenceProfileResource", {
displayName: "string",
description: "string",
persistenceCookieTime: {
maxIdle: 0,
},
cookieHttponly: false,
cookieMode: "string",
cookieName: "string",
cookiePath: "string",
cookieGarble: false,
cookieFallback: false,
cookieSecure: false,
nsxId: "string",
cookieDomain: "string",
persistenceShared: false,
policyLbCookiePersistenceProfileId: "string",
sessionCookieTime: {
maxIdle: 0,
maxLife: 0,
},
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:PolicyLbCookiePersistenceProfile
properties:
cookieDomain: string
cookieFallback: false
cookieGarble: false
cookieHttponly: false
cookieMode: string
cookieName: string
cookiePath: string
cookieSecure: false
description: string
displayName: string
nsxId: string
persistenceCookieTime:
maxIdle: 0
persistenceShared: false
policyLbCookiePersistenceProfileId: string
sessionCookieTime:
maxIdle: 0
maxLife: 0
tags:
- scope: string
tag: string
PolicyLbCookiePersistenceProfile 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 PolicyLbCookiePersistenceProfile resource accepts the following input properties:
- Display
Name string - Display name of the resource.
- string
- HTTP cookie domain. Only relevant for
INSERT
mode. - bool
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- bool
- If enabled, cookie value (server IP and port) would be encrypted.
- bool
- string
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - string
- Cookie name, default is
NSXLB
- string
- HTTP cookie path. Only relevant for
INSERT
mode. - bool
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - Description string
- Description of the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb Cookie Persistence Profile Persistence Cookie Time - Persistence cookie time preferences
- bool
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- string
- ID of the resource.
- Policy
Lb Cookie Persistence Profile Session Cookie Time - Session cookie time preferences
- List<Policy
Lb Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this resource.
- Display
Name string - Display name of the resource.
- string
- HTTP cookie domain. Only relevant for
INSERT
mode. - bool
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- bool
- If enabled, cookie value (server IP and port) would be encrypted.
- bool
- string
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - string
- Cookie name, default is
NSXLB
- string
- HTTP cookie path. Only relevant for
INSERT
mode. - bool
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - Description string
- Description of the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb Cookie Persistence Profile Persistence Cookie Time Args - Persistence cookie time preferences
- bool
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- string
- ID of the resource.
- Policy
Lb Cookie Persistence Profile Session Cookie Time Args - Session cookie time preferences
- []Policy
Lb Cookie Persistence Profile Tag Args - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- String
- HTTP cookie domain. Only relevant for
INSERT
mode. - Boolean
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- Boolean
- If enabled, cookie value (server IP and port) would be encrypted.
- Boolean
- String
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - String
- Cookie name, default is
NSXLB
- String
- HTTP cookie path. Only relevant for
INSERT
mode. - Boolean
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description String
- Description of the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb Cookie Persistence Profile Persistence Cookie Time - Persistence cookie time preferences
- Boolean
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- String
- ID of the resource.
- Policy
Lb Cookie Persistence Profile Session Cookie Time - Session cookie time preferences
- List<Policy
Lb Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this resource.
- display
Name string - Display name of the resource.
- string
- HTTP cookie domain. Only relevant for
INSERT
mode. - boolean
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- boolean
- If enabled, cookie value (server IP and port) would be encrypted.
- boolean
- string
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - string
- Cookie name, default is
NSXLB
- string
- HTTP cookie path. Only relevant for
INSERT
mode. - boolean
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description string
- Description of the resource.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb Cookie Persistence Profile Persistence Cookie Time - Persistence cookie time preferences
- boolean
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- string
- ID of the resource.
- Policy
Lb Cookie Persistence Profile Session Cookie Time - Session cookie time preferences
- Policy
Lb Cookie Persistence Profile Tag[] - A list of scope + tag pairs to associate with this resource.
- display_
name str - Display name of the resource.
- str
- HTTP cookie domain. Only relevant for
INSERT
mode. - bool
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- bool
- If enabled, cookie value (server IP and port) would be encrypted.
- bool
- str
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - str
- Cookie name, default is
NSXLB
- str
- HTTP cookie path. Only relevant for
INSERT
mode. - bool
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description str
- Description of the resource.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Lb Cookie Persistence Profile Persistence Cookie Time Args - Persistence cookie time preferences
- bool
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- str
- ID of the resource.
- Policy
Lb Cookie Persistence Profile Session Cookie Time Args - Session cookie time preferences
- Sequence[Policy
Lb Cookie Persistence Profile Tag Args] - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- String
- HTTP cookie domain. Only relevant for
INSERT
mode. - Boolean
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- Boolean
- If enabled, cookie value (server IP and port) would be encrypted.
- Boolean
- String
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - String
- Cookie name, default is
NSXLB
- String
- HTTP cookie path. Only relevant for
INSERT
mode. - Boolean
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description String
- Description of the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Property Map
- Persistence cookie time preferences
- Boolean
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- String
- ID of the resource.
- Property Map
- Session cookie time preferences
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyLbCookiePersistenceProfile resource produces the following output properties:
Look up Existing PolicyLbCookiePersistenceProfile Resource
Get an existing PolicyLbCookiePersistenceProfile 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?: PolicyLbCookiePersistenceProfileState, opts?: CustomResourceOptions): PolicyLbCookiePersistenceProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cookie_domain: Optional[str] = None,
cookie_fallback: Optional[bool] = None,
cookie_garble: Optional[bool] = None,
cookie_httponly: Optional[bool] = None,
cookie_mode: Optional[str] = None,
cookie_name: Optional[str] = None,
cookie_path: Optional[str] = None,
cookie_secure: Optional[bool] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
nsx_id: Optional[str] = None,
path: Optional[str] = None,
persistence_cookie_time: Optional[PolicyLbCookiePersistenceProfilePersistenceCookieTimeArgs] = None,
persistence_shared: Optional[bool] = None,
policy_lb_cookie_persistence_profile_id: Optional[str] = None,
revision: Optional[float] = None,
session_cookie_time: Optional[PolicyLbCookiePersistenceProfileSessionCookieTimeArgs] = None,
tags: Optional[Sequence[PolicyLbCookiePersistenceProfileTagArgs]] = None) -> PolicyLbCookiePersistenceProfile
func GetPolicyLbCookiePersistenceProfile(ctx *Context, name string, id IDInput, state *PolicyLbCookiePersistenceProfileState, opts ...ResourceOption) (*PolicyLbCookiePersistenceProfile, error)
public static PolicyLbCookiePersistenceProfile Get(string name, Input<string> id, PolicyLbCookiePersistenceProfileState? state, CustomResourceOptions? opts = null)
public static PolicyLbCookiePersistenceProfile get(String name, Output<String> id, PolicyLbCookiePersistenceProfileState state, CustomResourceOptions options)
resources: _: type: nsxt:PolicyLbCookiePersistenceProfile 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.
- string
- HTTP cookie domain. Only relevant for
INSERT
mode. - bool
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- bool
- If enabled, cookie value (server IP and port) would be encrypted.
- bool
- string
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - string
- Cookie name, default is
NSXLB
- string
- HTTP cookie path. Only relevant for
INSERT
mode. - bool
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- 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 Cookie Persistence Profile Persistence Cookie Time - Persistence cookie time preferences
- bool
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- string
- ID of the resource.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Policy
Lb Cookie Persistence Profile Session Cookie Time - Session cookie time preferences
- List<Policy
Lb Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this resource.
- string
- HTTP cookie domain. Only relevant for
INSERT
mode. - bool
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- bool
- If enabled, cookie value (server IP and port) would be encrypted.
- bool
- string
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - string
- Cookie name, default is
NSXLB
- string
- HTTP cookie path. Only relevant for
INSERT
mode. - bool
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- 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 Cookie Persistence Profile Persistence Cookie Time Args - Persistence cookie time preferences
- bool
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- string
- ID of the resource.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Policy
Lb Cookie Persistence Profile Session Cookie Time Args - Session cookie time preferences
- []Policy
Lb Cookie Persistence Profile Tag Args - A list of scope + tag pairs to associate with this resource.
- String
- HTTP cookie domain. Only relevant for
INSERT
mode. - Boolean
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- Boolean
- If enabled, cookie value (server IP and port) would be encrypted.
- Boolean
- String
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - String
- Cookie name, default is
NSXLB
- String
- HTTP cookie path. Only relevant for
INSERT
mode. - Boolean
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description String
- Description of the resource.
- display
Name String - Display name of the resource.
- 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 Cookie Persistence Profile Persistence Cookie Time - Persistence cookie time preferences
- Boolean
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- String
- ID of the resource.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Policy
Lb Cookie Persistence Profile Session Cookie Time - Session cookie time preferences
- List<Policy
Lb Cookie Persistence Profile Tag> - A list of scope + tag pairs to associate with this resource.
- string
- HTTP cookie domain. Only relevant for
INSERT
mode. - boolean
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- boolean
- If enabled, cookie value (server IP and port) would be encrypted.
- boolean
- string
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - string
- Cookie name, default is
NSXLB
- string
- HTTP cookie path. Only relevant for
INSERT
mode. - boolean
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description string
- Description of the resource.
- display
Name string - Display name of the resource.
- 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 Cookie Persistence Profile Persistence Cookie Time - Persistence cookie time preferences
- boolean
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- string
- ID of the resource.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Policy
Lb Cookie Persistence Profile Session Cookie Time - Session cookie time preferences
- Policy
Lb Cookie Persistence Profile Tag[] - A list of scope + tag pairs to associate with this resource.
- str
- HTTP cookie domain. Only relevant for
INSERT
mode. - bool
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- bool
- If enabled, cookie value (server IP and port) would be encrypted.
- bool
- str
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - str
- Cookie name, default is
NSXLB
- str
- HTTP cookie path. Only relevant for
INSERT
mode. - bool
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description str
- Description of the resource.
- display_
name str - Display name of the resource.
- 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 Cookie Persistence Profile Persistence Cookie Time Args - Persistence cookie time preferences
- bool
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- str
- ID of the resource.
- revision float
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Policy
Lb Cookie Persistence Profile Session Cookie Time Args - Session cookie time preferences
- Sequence[Policy
Lb Cookie Persistence Profile Tag Args] - A list of scope + tag pairs to associate with this resource.
- String
- HTTP cookie domain. Only relevant for
INSERT
mode. - Boolean
- If true, once the cookie points to a server that is down (i.e. admin state DISABLED or healthcheck state is DOWN), then a new server is selected by default to handle that request. If fallback is false, it will cause the request to be rejected.
- Boolean
- If enabled, cookie value (server IP and port) would be encrypted.
- Boolean
- String
- One of
INSERT
,PREFIX
orREWRITE
. Default isINSERT
. - String
- Cookie name, default is
NSXLB
- String
- HTTP cookie path. Only relevant for
INSERT
mode. - Boolean
- If enabled, this cookie will only be sent over HTTPS. Only relevant for
INSERT
mode. - description String
- Description of the resource.
- display
Name String - Display name of the resource.
- 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.
- Property Map
- Persistence cookie time preferences
- Boolean
- If enabled, all virtual servers with this profile will share the same persistence mechanism.
- String
- ID of the resource.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Property Map
- Session cookie time preferences
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
Supporting Types
PolicyLbCookiePersistenceProfilePersistenceCookieTime, PolicyLbCookiePersistenceProfilePersistenceCookieTimeArgs
- Max
Idle double - Maximum interval the cookie is valid for from the last time it was seen in a request
- Max
Idle float64 - Maximum interval the cookie is valid for from the last time it was seen in a request
- max
Idle Double - Maximum interval the cookie is valid for from the last time it was seen in a request
- max
Idle number - Maximum interval the cookie is valid for from the last time it was seen in a request
- max_
idle float - Maximum interval the cookie is valid for from the last time it was seen in a request
- max
Idle Number - Maximum interval the cookie is valid for from the last time it was seen in a request
PolicyLbCookiePersistenceProfileSessionCookieTime, PolicyLbCookiePersistenceProfileSessionCookieTimeArgs
PolicyLbCookiePersistenceProfileTag, PolicyLbCookiePersistenceProfileTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.