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

nsxt.LbCookiePersistenceProfile

Explore with Pulumi AI

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

    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:

    CookieName string
    cookie name.
    CookieFallback 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.
    CookieGarble bool
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    CookieMode string
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    InsertModeParams LbCookiePersistenceProfileInsertModeParams
    Additional parameters for the INSERT cookie mode:
    LbCookiePersistenceProfileId string
    ID of the lb cookie persistence profile.
    PersistenceShared 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.
    Tags List<LbCookiePersistenceProfileTag>
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    CookieName string
    cookie name.
    CookieFallback 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.
    CookieGarble bool
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    CookieMode string
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    InsertModeParams LbCookiePersistenceProfileInsertModeParamsArgs
    Additional parameters for the INSERT cookie mode:
    LbCookiePersistenceProfileId string
    ID of the lb cookie persistence profile.
    PersistenceShared 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.
    Tags []LbCookiePersistenceProfileTagArgs
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookieName String
    cookie name.
    cookieFallback 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.
    cookieGarble Boolean
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookieMode String
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    insertModeParams LbCookiePersistenceProfileInsertModeParams
    Additional parameters for the INSERT cookie mode:
    lbCookiePersistenceProfileId String
    ID of the lb cookie persistence profile.
    persistenceShared 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.
    tags List<LbCookiePersistenceProfileTag>
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookieName string
    cookie name.
    cookieFallback 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.
    cookieGarble boolean
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookieMode string
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    description string
    Description of this resource.
    displayName string
    The display name of this resource. Defaults to ID if not set.
    insertModeParams LbCookiePersistenceProfileInsertModeParams
    Additional parameters for the INSERT cookie mode:
    lbCookiePersistenceProfileId string
    ID of the lb cookie persistence profile.
    persistenceShared 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.
    tags LbCookiePersistenceProfileTag[]
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookie_name str
    cookie name.
    cookie_fallback 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.
    cookie_garble bool
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookie_mode 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_params LbCookiePersistenceProfileInsertModeParamsArgs
    Additional parameters for the INSERT cookie mode:
    lb_cookie_persistence_profile_id str
    ID of the lb cookie persistence profile.
    persistence_shared 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.
    tags Sequence[LbCookiePersistenceProfileTagArgs]
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookieName String
    cookie name.
    cookieFallback 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.
    cookieGarble Boolean
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookieMode String
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    insertModeParams Property Map
    Additional parameters for the INSERT cookie mode:
    lbCookiePersistenceProfileId String
    ID of the lb cookie persistence profile.
    persistenceShared 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.
    tags 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:

    Id string
    The provider-assigned unique ID for this managed resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing 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.
    The following state arguments are supported:
    CookieFallback 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.
    CookieGarble bool
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    CookieMode string
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    CookieName string
    cookie name.
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    InsertModeParams LbCookiePersistenceProfileInsertModeParams
    Additional parameters for the INSERT cookie mode:
    LbCookiePersistenceProfileId string
    ID of the lb cookie persistence profile.
    PersistenceShared 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.
    Tags List<LbCookiePersistenceProfileTag>
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    CookieFallback 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.
    CookieGarble bool
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    CookieMode string
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    CookieName string
    cookie name.
    Description string
    Description of this resource.
    DisplayName string
    The display name of this resource. Defaults to ID if not set.
    InsertModeParams LbCookiePersistenceProfileInsertModeParamsArgs
    Additional parameters for the INSERT cookie mode:
    LbCookiePersistenceProfileId string
    ID of the lb cookie persistence profile.
    PersistenceShared 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.
    Tags []LbCookiePersistenceProfileTagArgs
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookieFallback 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.
    cookieGarble Boolean
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookieMode String
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    cookieName String
    cookie name.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    insertModeParams LbCookiePersistenceProfileInsertModeParams
    Additional parameters for the INSERT cookie mode:
    lbCookiePersistenceProfileId String
    ID of the lb cookie persistence profile.
    persistenceShared 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.
    tags List<LbCookiePersistenceProfileTag>
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookieFallback 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.
    cookieGarble boolean
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookieMode string
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    cookieName string
    cookie name.
    description string
    Description of this resource.
    displayName string
    The display name of this resource. Defaults to ID if not set.
    insertModeParams LbCookiePersistenceProfileInsertModeParams
    Additional parameters for the INSERT cookie mode:
    lbCookiePersistenceProfileId string
    ID of the lb cookie persistence profile.
    persistenceShared 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.
    tags LbCookiePersistenceProfileTag[]
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookie_fallback 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.
    cookie_garble bool
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookie_mode str
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    cookie_name 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_params LbCookiePersistenceProfileInsertModeParamsArgs
    Additional parameters for the INSERT cookie mode:
    lb_cookie_persistence_profile_id str
    ID of the lb cookie persistence profile.
    persistence_shared 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.
    tags Sequence[LbCookiePersistenceProfileTagArgs]
    A list of scope + tag pairs to associate with this lb cookie persistence profile.
    cookieFallback 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.
    cookieGarble Boolean
    A boolean flag which reflects whether the cookie value (server IP and port) would be encrypted or in plain text.
    cookieMode String
    The cookie persistence mode. Accepted values: PREFIX, REWRITE and INSERT which is the default.
    cookieName String
    cookie name.
    description String
    Description of this resource.
    displayName String
    The display name of this resource. Defaults to ID if not set.
    insertModeParams Property Map
    Additional parameters for the INSERT cookie mode:
    lbCookiePersistenceProfileId String
    ID of the lb cookie persistence profile.
    persistenceShared 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.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this lb cookie persistence profile.

    Supporting Types

    LbCookiePersistenceProfileInsertModeParams, LbCookiePersistenceProfileInsertModeParamsArgs

    CookieDomain string
    HTTP cookie domain (for INSERT mode only).
    CookieExpiryType 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.
    CookiePath string
    HTTP cookie path (for INSERT mode only).
    MaxIdleTime double
    Maximum interval the cookie is valid for from the last time it was seen in a request.
    MaxLifeTime double
    Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
    CookieDomain string
    HTTP cookie domain (for INSERT mode only).
    CookieExpiryType 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.
    CookiePath string
    HTTP cookie path (for INSERT mode only).
    MaxIdleTime float64
    Maximum interval the cookie is valid for from the last time it was seen in a request.
    MaxLifeTime float64
    Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
    cookieDomain String
    HTTP cookie domain (for INSERT mode only).
    cookieExpiryType 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.
    cookiePath String
    HTTP cookie path (for INSERT mode only).
    maxIdleTime Double
    Maximum interval the cookie is valid for from the last time it was seen in a request.
    maxLifeTime Double
    Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
    cookieDomain string
    HTTP cookie domain (for INSERT mode only).
    cookieExpiryType 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.
    cookiePath string
    HTTP cookie path (for INSERT mode only).
    maxIdleTime number
    Maximum interval the cookie is valid for from the last time it was seen in a request.
    maxLifeTime number
    Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
    cookie_domain str
    HTTP cookie domain (for INSERT mode only).
    cookie_expiry_type 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.
    cookie_path str
    HTTP cookie path (for INSERT mode only).
    max_idle_time float
    Maximum interval the cookie is valid for from the last time it was seen in a request.
    max_life_time float
    Maximum interval the cookie is valid for from the first time the cookie was seen in a request.
    cookieDomain String
    HTTP cookie domain (for INSERT mode only).
    cookieExpiryType 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.
    cookiePath String
    HTTP cookie path (for INSERT mode only).
    maxIdleTime Number
    Maximum interval the cookie is valid for from the last time it was seen in a request.
    maxLifeTime Number
    Maximum interval the cookie is valid for from the first time the cookie was seen in a request.

    LbCookiePersistenceProfileTag, LbCookiePersistenceProfileTagArgs

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

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware