f5bigip.ltm.PersistenceProfileCookie
Explore with Pulumi AI
Configures a cookie persistence profile
Example
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const testPpcookie = new f5bigip.ltm.PersistenceProfileCookie("test_ppcookie", {
name: "/Common/terraform_cookie",
defaultsFrom: "/Common/cookie",
matchAcrossPools: "enabled",
matchAcrossServices: "enabled",
matchAcrossVirtuals: "enabled",
timeout: 3600,
overrideConnLimit: "enabled",
alwaysSend: "enabled",
cookieEncryption: "required",
cookieEncryptionPassphrase: "iam",
cookieName: "ham",
expiration: "1:0:0",
hashLength: 0,
});
import pulumi
import pulumi_f5bigip as f5bigip
test_ppcookie = f5bigip.ltm.PersistenceProfileCookie("test_ppcookie",
name="/Common/terraform_cookie",
defaults_from="/Common/cookie",
match_across_pools="enabled",
match_across_services="enabled",
match_across_virtuals="enabled",
timeout=3600,
override_conn_limit="enabled",
always_send="enabled",
cookie_encryption="required",
cookie_encryption_passphrase="iam",
cookie_name="ham",
expiration="1:0:0",
hash_length=0)
package main
import (
"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ltm.NewPersistenceProfileCookie(ctx, "test_ppcookie", <m.PersistenceProfileCookieArgs{
Name: pulumi.String("/Common/terraform_cookie"),
DefaultsFrom: pulumi.String("/Common/cookie"),
MatchAcrossPools: pulumi.String("enabled"),
MatchAcrossServices: pulumi.String("enabled"),
MatchAcrossVirtuals: pulumi.String("enabled"),
Timeout: pulumi.Int(3600),
OverrideConnLimit: pulumi.String("enabled"),
AlwaysSend: pulumi.String("enabled"),
CookieEncryption: pulumi.String("required"),
CookieEncryptionPassphrase: pulumi.String("iam"),
CookieName: pulumi.String("ham"),
Expiration: pulumi.String("1:0:0"),
HashLength: pulumi.Int(0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
return await Deployment.RunAsync(() =>
{
var testPpcookie = new F5BigIP.Ltm.PersistenceProfileCookie("test_ppcookie", new()
{
Name = "/Common/terraform_cookie",
DefaultsFrom = "/Common/cookie",
MatchAcrossPools = "enabled",
MatchAcrossServices = "enabled",
MatchAcrossVirtuals = "enabled",
Timeout = 3600,
OverrideConnLimit = "enabled",
AlwaysSend = "enabled",
CookieEncryption = "required",
CookieEncryptionPassphrase = "iam",
CookieName = "ham",
Expiration = "1:0:0",
HashLength = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.PersistenceProfileCookie;
import com.pulumi.f5bigip.ltm.PersistenceProfileCookieArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testPpcookie = new PersistenceProfileCookie("testPpcookie", PersistenceProfileCookieArgs.builder()
.name("/Common/terraform_cookie")
.defaultsFrom("/Common/cookie")
.matchAcrossPools("enabled")
.matchAcrossServices("enabled")
.matchAcrossVirtuals("enabled")
.timeout(3600)
.overrideConnLimit("enabled")
.alwaysSend("enabled")
.cookieEncryption("required")
.cookieEncryptionPassphrase("iam")
.cookieName("ham")
.expiration("1:0:0")
.hashLength(0)
.build());
}
}
resources:
testPpcookie:
type: f5bigip:ltm:PersistenceProfileCookie
name: test_ppcookie
properties:
name: /Common/terraform_cookie
defaultsFrom: /Common/cookie
matchAcrossPools: enabled
matchAcrossServices: enabled
matchAcrossVirtuals: enabled
timeout: 3600
overrideConnLimit: enabled
alwaysSend: enabled
cookieEncryption: required
cookieEncryptionPassphrase: iam
cookieName: ham
expiration: 1:0:0
hashLength: 0
Reference
name
- (Required) Name of the virtual address
defaults_from
- (Required) Parent cookie persistence profile
match_across_pools
(Optional) (enabled or disabled) match across pools with given persistence record
match_across_services
(Optional) (enabled or disabled) match across services with given persistence record
match_across_virtuals
(Optional) (enabled or disabled) match across virtual servers with given persistence record
method
(Optional) Specifies the type of cookie processing that the system uses. The default value is insert
mirror
(Optional) (enabled or disabled) mirror persistence record
timeout
(Optional) (enabled or disabled) Timeout for persistence of the session in seconds
override_conn_limit
(Optional) (enabled or disabled) Enable or dissable pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
always_send
(Optional) (enabled or disabled) always send cookies
cookie_encryption
(Optional) (required, preferred, or disabled) To required, preferred, or disabled policy for cookie encryption
cookie_encryption_passphrase
(Optional) (required, preferred, or disabled) Passphrase for encrypted cookies. The field is encrypted on the server and will always return differently then set.
If this is configured specify ignore_changes
under the lifecycle
block to ignore returned encrypted value.
cookie_name
(Optional) Name of the cookie to track persistence
expiration
(Optional) Expiration TTL for cookie specified in DAY:HOUR:MIN:SECONDS (Examples: 1:0:0:0 one day, 1:0:0 one hour, 30:0 thirty minutes)
hash_length
(Optional) (Integer) Length of hash to apply to cookie
hash_offset
(Optional) (Integer) Number of characters to skip in the cookie for the hash
httponly
(Optional) (enabled or disabled) Sending only over http
Create PersistenceProfileCookie Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PersistenceProfileCookie(name: string, args: PersistenceProfileCookieArgs, opts?: CustomResourceOptions);
@overload
def PersistenceProfileCookie(resource_name: str,
args: PersistenceProfileCookieArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PersistenceProfileCookie(resource_name: str,
opts: Optional[ResourceOptions] = None,
defaults_from: Optional[str] = None,
name: Optional[str] = None,
hash_offset: Optional[int] = None,
httponly: Optional[str] = None,
cookie_name: Optional[str] = None,
cookie_encryption: Optional[str] = None,
expiration: Optional[str] = None,
hash_length: Optional[int] = None,
always_send: Optional[str] = None,
cookie_encryption_passphrase: Optional[str] = None,
match_across_pools: Optional[str] = None,
match_across_services: Optional[str] = None,
match_across_virtuals: Optional[str] = None,
method: Optional[str] = None,
mirror: Optional[str] = None,
app_service: Optional[str] = None,
override_conn_limit: Optional[str] = None,
timeout: Optional[int] = None)
func NewPersistenceProfileCookie(ctx *Context, name string, args PersistenceProfileCookieArgs, opts ...ResourceOption) (*PersistenceProfileCookie, error)
public PersistenceProfileCookie(string name, PersistenceProfileCookieArgs args, CustomResourceOptions? opts = null)
public PersistenceProfileCookie(String name, PersistenceProfileCookieArgs args)
public PersistenceProfileCookie(String name, PersistenceProfileCookieArgs args, CustomResourceOptions options)
type: f5bigip:ltm:PersistenceProfileCookie
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 PersistenceProfileCookieArgs
- 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 PersistenceProfileCookieArgs
- 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 PersistenceProfileCookieArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PersistenceProfileCookieArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PersistenceProfileCookieArgs
- 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 persistenceProfileCookieResource = new F5BigIP.Ltm.PersistenceProfileCookie("persistenceProfileCookieResource", new()
{
DefaultsFrom = "string",
Name = "string",
HashOffset = 0,
Httponly = "string",
CookieName = "string",
CookieEncryption = "string",
Expiration = "string",
HashLength = 0,
AlwaysSend = "string",
CookieEncryptionPassphrase = "string",
MatchAcrossPools = "string",
MatchAcrossServices = "string",
MatchAcrossVirtuals = "string",
Method = "string",
Mirror = "string",
AppService = "string",
OverrideConnLimit = "string",
Timeout = 0,
});
example, err := ltm.NewPersistenceProfileCookie(ctx, "persistenceProfileCookieResource", <m.PersistenceProfileCookieArgs{
DefaultsFrom: pulumi.String("string"),
Name: pulumi.String("string"),
HashOffset: pulumi.Int(0),
Httponly: pulumi.String("string"),
CookieName: pulumi.String("string"),
CookieEncryption: pulumi.String("string"),
Expiration: pulumi.String("string"),
HashLength: pulumi.Int(0),
AlwaysSend: pulumi.String("string"),
CookieEncryptionPassphrase: pulumi.String("string"),
MatchAcrossPools: pulumi.String("string"),
MatchAcrossServices: pulumi.String("string"),
MatchAcrossVirtuals: pulumi.String("string"),
Method: pulumi.String("string"),
Mirror: pulumi.String("string"),
AppService: pulumi.String("string"),
OverrideConnLimit: pulumi.String("string"),
Timeout: pulumi.Int(0),
})
var persistenceProfileCookieResource = new PersistenceProfileCookie("persistenceProfileCookieResource", PersistenceProfileCookieArgs.builder()
.defaultsFrom("string")
.name("string")
.hashOffset(0)
.httponly("string")
.cookieName("string")
.cookieEncryption("string")
.expiration("string")
.hashLength(0)
.alwaysSend("string")
.cookieEncryptionPassphrase("string")
.matchAcrossPools("string")
.matchAcrossServices("string")
.matchAcrossVirtuals("string")
.method("string")
.mirror("string")
.appService("string")
.overrideConnLimit("string")
.timeout(0)
.build());
persistence_profile_cookie_resource = f5bigip.ltm.PersistenceProfileCookie("persistenceProfileCookieResource",
defaults_from="string",
name="string",
hash_offset=0,
httponly="string",
cookie_name="string",
cookie_encryption="string",
expiration="string",
hash_length=0,
always_send="string",
cookie_encryption_passphrase="string",
match_across_pools="string",
match_across_services="string",
match_across_virtuals="string",
method="string",
mirror="string",
app_service="string",
override_conn_limit="string",
timeout=0)
const persistenceProfileCookieResource = new f5bigip.ltm.PersistenceProfileCookie("persistenceProfileCookieResource", {
defaultsFrom: "string",
name: "string",
hashOffset: 0,
httponly: "string",
cookieName: "string",
cookieEncryption: "string",
expiration: "string",
hashLength: 0,
alwaysSend: "string",
cookieEncryptionPassphrase: "string",
matchAcrossPools: "string",
matchAcrossServices: "string",
matchAcrossVirtuals: "string",
method: "string",
mirror: "string",
appService: "string",
overrideConnLimit: "string",
timeout: 0,
});
type: f5bigip:ltm:PersistenceProfileCookie
properties:
alwaysSend: string
appService: string
cookieEncryption: string
cookieEncryptionPassphrase: string
cookieName: string
defaultsFrom: string
expiration: string
hashLength: 0
hashOffset: 0
httponly: string
matchAcrossPools: string
matchAcrossServices: string
matchAcrossVirtuals: string
method: string
mirror: string
name: string
overrideConnLimit: string
timeout: 0
PersistenceProfileCookie Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The PersistenceProfileCookie resource accepts the following input properties:
- Defaults
From string - Inherit defaults from parent profile
- Name string
- Name of the persistence profile
- Always
Send string - To enable _ disable always sending cookies
- App
Service string - string
- To required, preferred, or disabled policy for cookie encryption
- string
- Passphrase for encrypted cookies
- string
- Name of the cookie to track persistence
- Expiration string
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- Hash
Length int - Length of hash to apply to cookie
- Hash
Offset int - Number of characters to skip in the cookie for the hash
- Httponly string
- To enable _ disable sending only over http
- Match
Across stringPools - To enable _ disable match across pools with given persistence record
- Match
Across stringServices - To enable _ disable match across services with given persistence record
- Match
Across stringVirtuals - To enable _ disable match across virtual servers with given persistence record
- Method string
- Specifies the type of cookie processing that the system uses
- Mirror string
- To enable _ disable
- Override
Conn stringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- Timeout int
- Timeout for persistence of the session
- Defaults
From string - Inherit defaults from parent profile
- Name string
- Name of the persistence profile
- Always
Send string - To enable _ disable always sending cookies
- App
Service string - string
- To required, preferred, or disabled policy for cookie encryption
- string
- Passphrase for encrypted cookies
- string
- Name of the cookie to track persistence
- Expiration string
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- Hash
Length int - Length of hash to apply to cookie
- Hash
Offset int - Number of characters to skip in the cookie for the hash
- Httponly string
- To enable _ disable sending only over http
- Match
Across stringPools - To enable _ disable match across pools with given persistence record
- Match
Across stringServices - To enable _ disable match across services with given persistence record
- Match
Across stringVirtuals - To enable _ disable match across virtual servers with given persistence record
- Method string
- Specifies the type of cookie processing that the system uses
- Mirror string
- To enable _ disable
- Override
Conn stringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- Timeout int
- Timeout for persistence of the session
- defaults
From String - Inherit defaults from parent profile
- name String
- Name of the persistence profile
- always
Send String - To enable _ disable always sending cookies
- app
Service String - String
- To required, preferred, or disabled policy for cookie encryption
- String
- Passphrase for encrypted cookies
- String
- Name of the cookie to track persistence
- expiration String
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash
Length Integer - Length of hash to apply to cookie
- hash
Offset Integer - Number of characters to skip in the cookie for the hash
- httponly String
- To enable _ disable sending only over http
- match
Across StringPools - To enable _ disable match across pools with given persistence record
- match
Across StringServices - To enable _ disable match across services with given persistence record
- match
Across StringVirtuals - To enable _ disable match across virtual servers with given persistence record
- method String
- Specifies the type of cookie processing that the system uses
- mirror String
- To enable _ disable
- override
Conn StringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout Integer
- Timeout for persistence of the session
- defaults
From string - Inherit defaults from parent profile
- name string
- Name of the persistence profile
- always
Send string - To enable _ disable always sending cookies
- app
Service string - string
- To required, preferred, or disabled policy for cookie encryption
- string
- Passphrase for encrypted cookies
- string
- Name of the cookie to track persistence
- expiration string
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash
Length number - Length of hash to apply to cookie
- hash
Offset number - Number of characters to skip in the cookie for the hash
- httponly string
- To enable _ disable sending only over http
- match
Across stringPools - To enable _ disable match across pools with given persistence record
- match
Across stringServices - To enable _ disable match across services with given persistence record
- match
Across stringVirtuals - To enable _ disable match across virtual servers with given persistence record
- method string
- Specifies the type of cookie processing that the system uses
- mirror string
- To enable _ disable
- override
Conn stringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout number
- Timeout for persistence of the session
- defaults_
from str - Inherit defaults from parent profile
- name str
- Name of the persistence profile
- always_
send str - To enable _ disable always sending cookies
- app_
service str - str
- To required, preferred, or disabled policy for cookie encryption
- str
- Passphrase for encrypted cookies
- str
- Name of the cookie to track persistence
- expiration str
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash_
length int - Length of hash to apply to cookie
- hash_
offset int - Number of characters to skip in the cookie for the hash
- httponly str
- To enable _ disable sending only over http
- match_
across_ strpools - To enable _ disable match across pools with given persistence record
- match_
across_ strservices - To enable _ disable match across services with given persistence record
- match_
across_ strvirtuals - To enable _ disable match across virtual servers with given persistence record
- method str
- Specifies the type of cookie processing that the system uses
- mirror str
- To enable _ disable
- override_
conn_ strlimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout int
- Timeout for persistence of the session
- defaults
From String - Inherit defaults from parent profile
- name String
- Name of the persistence profile
- always
Send String - To enable _ disable always sending cookies
- app
Service String - String
- To required, preferred, or disabled policy for cookie encryption
- String
- Passphrase for encrypted cookies
- String
- Name of the cookie to track persistence
- expiration String
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash
Length Number - Length of hash to apply to cookie
- hash
Offset Number - Number of characters to skip in the cookie for the hash
- httponly String
- To enable _ disable sending only over http
- match
Across StringPools - To enable _ disable match across pools with given persistence record
- match
Across StringServices - To enable _ disable match across services with given persistence record
- match
Across StringVirtuals - To enable _ disable match across virtual servers with given persistence record
- method String
- Specifies the type of cookie processing that the system uses
- mirror String
- To enable _ disable
- override
Conn StringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout Number
- Timeout for persistence of the session
Outputs
All input properties are implicitly available as output properties. Additionally, the PersistenceProfileCookie resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PersistenceProfileCookie Resource
Get an existing PersistenceProfileCookie 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?: PersistenceProfileCookieState, opts?: CustomResourceOptions): PersistenceProfileCookie
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
always_send: Optional[str] = None,
app_service: Optional[str] = None,
cookie_encryption: Optional[str] = None,
cookie_encryption_passphrase: Optional[str] = None,
cookie_name: Optional[str] = None,
defaults_from: Optional[str] = None,
expiration: Optional[str] = None,
hash_length: Optional[int] = None,
hash_offset: Optional[int] = None,
httponly: Optional[str] = None,
match_across_pools: Optional[str] = None,
match_across_services: Optional[str] = None,
match_across_virtuals: Optional[str] = None,
method: Optional[str] = None,
mirror: Optional[str] = None,
name: Optional[str] = None,
override_conn_limit: Optional[str] = None,
timeout: Optional[int] = None) -> PersistenceProfileCookie
func GetPersistenceProfileCookie(ctx *Context, name string, id IDInput, state *PersistenceProfileCookieState, opts ...ResourceOption) (*PersistenceProfileCookie, error)
public static PersistenceProfileCookie Get(string name, Input<string> id, PersistenceProfileCookieState? state, CustomResourceOptions? opts = null)
public static PersistenceProfileCookie get(String name, Output<String> id, PersistenceProfileCookieState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Always
Send string - To enable _ disable always sending cookies
- App
Service string - string
- To required, preferred, or disabled policy for cookie encryption
- string
- Passphrase for encrypted cookies
- string
- Name of the cookie to track persistence
- Defaults
From string - Inherit defaults from parent profile
- Expiration string
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- Hash
Length int - Length of hash to apply to cookie
- Hash
Offset int - Number of characters to skip in the cookie for the hash
- Httponly string
- To enable _ disable sending only over http
- Match
Across stringPools - To enable _ disable match across pools with given persistence record
- Match
Across stringServices - To enable _ disable match across services with given persistence record
- Match
Across stringVirtuals - To enable _ disable match across virtual servers with given persistence record
- Method string
- Specifies the type of cookie processing that the system uses
- Mirror string
- To enable _ disable
- Name string
- Name of the persistence profile
- Override
Conn stringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- Timeout int
- Timeout for persistence of the session
- Always
Send string - To enable _ disable always sending cookies
- App
Service string - string
- To required, preferred, or disabled policy for cookie encryption
- string
- Passphrase for encrypted cookies
- string
- Name of the cookie to track persistence
- Defaults
From string - Inherit defaults from parent profile
- Expiration string
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- Hash
Length int - Length of hash to apply to cookie
- Hash
Offset int - Number of characters to skip in the cookie for the hash
- Httponly string
- To enable _ disable sending only over http
- Match
Across stringPools - To enable _ disable match across pools with given persistence record
- Match
Across stringServices - To enable _ disable match across services with given persistence record
- Match
Across stringVirtuals - To enable _ disable match across virtual servers with given persistence record
- Method string
- Specifies the type of cookie processing that the system uses
- Mirror string
- To enable _ disable
- Name string
- Name of the persistence profile
- Override
Conn stringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- Timeout int
- Timeout for persistence of the session
- always
Send String - To enable _ disable always sending cookies
- app
Service String - String
- To required, preferred, or disabled policy for cookie encryption
- String
- Passphrase for encrypted cookies
- String
- Name of the cookie to track persistence
- defaults
From String - Inherit defaults from parent profile
- expiration String
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash
Length Integer - Length of hash to apply to cookie
- hash
Offset Integer - Number of characters to skip in the cookie for the hash
- httponly String
- To enable _ disable sending only over http
- match
Across StringPools - To enable _ disable match across pools with given persistence record
- match
Across StringServices - To enable _ disable match across services with given persistence record
- match
Across StringVirtuals - To enable _ disable match across virtual servers with given persistence record
- method String
- Specifies the type of cookie processing that the system uses
- mirror String
- To enable _ disable
- name String
- Name of the persistence profile
- override
Conn StringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout Integer
- Timeout for persistence of the session
- always
Send string - To enable _ disable always sending cookies
- app
Service string - string
- To required, preferred, or disabled policy for cookie encryption
- string
- Passphrase for encrypted cookies
- string
- Name of the cookie to track persistence
- defaults
From string - Inherit defaults from parent profile
- expiration string
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash
Length number - Length of hash to apply to cookie
- hash
Offset number - Number of characters to skip in the cookie for the hash
- httponly string
- To enable _ disable sending only over http
- match
Across stringPools - To enable _ disable match across pools with given persistence record
- match
Across stringServices - To enable _ disable match across services with given persistence record
- match
Across stringVirtuals - To enable _ disable match across virtual servers with given persistence record
- method string
- Specifies the type of cookie processing that the system uses
- mirror string
- To enable _ disable
- name string
- Name of the persistence profile
- override
Conn stringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout number
- Timeout for persistence of the session
- always_
send str - To enable _ disable always sending cookies
- app_
service str - str
- To required, preferred, or disabled policy for cookie encryption
- str
- Passphrase for encrypted cookies
- str
- Name of the cookie to track persistence
- defaults_
from str - Inherit defaults from parent profile
- expiration str
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash_
length int - Length of hash to apply to cookie
- hash_
offset int - Number of characters to skip in the cookie for the hash
- httponly str
- To enable _ disable sending only over http
- match_
across_ strpools - To enable _ disable match across pools with given persistence record
- match_
across_ strservices - To enable _ disable match across services with given persistence record
- match_
across_ strvirtuals - To enable _ disable match across virtual servers with given persistence record
- method str
- Specifies the type of cookie processing that the system uses
- mirror str
- To enable _ disable
- name str
- Name of the persistence profile
- override_
conn_ strlimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout int
- Timeout for persistence of the session
- always
Send String - To enable _ disable always sending cookies
- app
Service String - String
- To required, preferred, or disabled policy for cookie encryption
- String
- Passphrase for encrypted cookies
- String
- Name of the cookie to track persistence
- defaults
From String - Inherit defaults from parent profile
- expiration String
- Expiration TTL for cookie specified in D:H:M:S or in seconds
- hash
Length Number - Length of hash to apply to cookie
- hash
Offset Number - Number of characters to skip in the cookie for the hash
- httponly String
- To enable _ disable sending only over http
- match
Across StringPools - To enable _ disable match across pools with given persistence record
- match
Across StringServices - To enable _ disable match across services with given persistence record
- match
Across StringVirtuals - To enable _ disable match across virtual servers with given persistence record
- method String
- Specifies the type of cookie processing that the system uses
- mirror String
- To enable _ disable
- name String
- Name of the persistence profile
- override
Conn StringLimit - To enable _ disable that pool member connection limits are overridden for persisted clients. Per-virtual connection limits remain hard limits and are not overridden.
- timeout Number
- Timeout for persistence of the session
Import
ing
An cookie persistence profile can be imported into this resource by supplying the Name in full path
as id
.
An example is below:
$ terraform import bigip_ltm_persistence_profile_cookie.test_ppcookie "/Common/terraform_cookie"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.