avi.Applicationpersistenceprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Applicationpersistenceprofile” sidebar_current: “docs-avi-resource-applicationpersistenceprofile” description: |- Creates and manages Avi ApplicationPersistenceProfile.
avi.Applicationpersistenceprofile
The ApplicationPersistenceProfile resource allows the creation and management of Avi ApplicationPersistenceProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Applicationpersistenceprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Applicationpersistenceprofile("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewApplicationpersistenceprofile(ctx, "foo", &avi.ApplicationpersistenceprofileArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Applicationpersistenceprofile("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Applicationpersistenceprofile;
import com.pulumi.avi.ApplicationpersistenceprofileArgs;
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 foo = new Applicationpersistenceprofile("foo", ApplicationpersistenceprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Applicationpersistenceprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Applicationpersistenceprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Applicationpersistenceprofile(name: string, args: ApplicationpersistenceprofileArgs, opts?: CustomResourceOptions);
@overload
def Applicationpersistenceprofile(resource_name: str,
args: ApplicationpersistenceprofileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Applicationpersistenceprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
persistence_type: Optional[str] = None,
http_cookie_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileHttpCookiePersistenceProfileArgs]] = None,
is_federated: Optional[str] = None,
description: Optional[str] = None,
diameter_app_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileDiameterAppPersistenceProfileArgs]] = None,
hdr_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileHdrPersistenceProfileArgs]] = None,
app_cookie_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileAppCookiePersistenceProfileArgs]] = None,
ip_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileIpPersistenceProfileArgs]] = None,
configpb_attributes: Optional[Sequence[ApplicationpersistenceprofileConfigpbAttributeArgs]] = None,
markers: Optional[Sequence[ApplicationpersistenceprofileMarkerArgs]] = None,
name: Optional[str] = None,
applicationpersistenceprofile_id: Optional[str] = None,
server_hm_down_recovery: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewApplicationpersistenceprofile(ctx *Context, name string, args ApplicationpersistenceprofileArgs, opts ...ResourceOption) (*Applicationpersistenceprofile, error)
public Applicationpersistenceprofile(string name, ApplicationpersistenceprofileArgs args, CustomResourceOptions? opts = null)
public Applicationpersistenceprofile(String name, ApplicationpersistenceprofileArgs args)
public Applicationpersistenceprofile(String name, ApplicationpersistenceprofileArgs args, CustomResourceOptions options)
type: avi:Applicationpersistenceprofile
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 ApplicationpersistenceprofileArgs
- 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 ApplicationpersistenceprofileArgs
- 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 ApplicationpersistenceprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationpersistenceprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationpersistenceprofileArgs
- 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 applicationpersistenceprofileResource = new Avi.Applicationpersistenceprofile("applicationpersistenceprofileResource", new()
{
PersistenceType = "string",
HttpCookiePersistenceProfiles = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileHttpCookiePersistenceProfileArgs
{
AlwaysSendCookie = "string",
CookieName = "string",
EncryptionKey = "string",
HttpOnly = "string",
IsPersistentCookie = "string",
Keys = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileHttpCookiePersistenceProfileKeyArgs
{
AesKey = "string",
HmacKey = "string",
Name = "string",
},
},
Timeout = "string",
},
},
IsFederated = "string",
Description = "string",
DiameterAppPersistenceProfiles = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileDiameterAppPersistenceProfileArgs
{
AvpKeyType = "string",
Timeout = "string",
},
},
HdrPersistenceProfiles = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileHdrPersistenceProfileArgs
{
PrstHdrName = "string",
},
},
AppCookiePersistenceProfiles = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileAppCookiePersistenceProfileArgs
{
PrstHdrName = "string",
EncryptionKey = "string",
Timeout = "string",
},
},
IpPersistenceProfiles = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileIpPersistenceProfileArgs
{
IpMask = "string",
IpPersistentTimeout = "string",
},
},
ConfigpbAttributes = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileConfigpbAttributeArgs
{
Version = "string",
},
},
Markers = new[]
{
new Avi.Inputs.ApplicationpersistenceprofileMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
ApplicationpersistenceprofileId = "string",
ServerHmDownRecovery = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewApplicationpersistenceprofile(ctx, "applicationpersistenceprofileResource", &avi.ApplicationpersistenceprofileArgs{
PersistenceType: pulumi.String("string"),
HttpCookiePersistenceProfiles: avi.ApplicationpersistenceprofileHttpCookiePersistenceProfileArray{
&avi.ApplicationpersistenceprofileHttpCookiePersistenceProfileArgs{
AlwaysSendCookie: pulumi.String("string"),
CookieName: pulumi.String("string"),
EncryptionKey: pulumi.String("string"),
HttpOnly: pulumi.String("string"),
IsPersistentCookie: pulumi.String("string"),
Keys: avi.ApplicationpersistenceprofileHttpCookiePersistenceProfileKeyArray{
&avi.ApplicationpersistenceprofileHttpCookiePersistenceProfileKeyArgs{
AesKey: pulumi.String("string"),
HmacKey: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Timeout: pulumi.String("string"),
},
},
IsFederated: pulumi.String("string"),
Description: pulumi.String("string"),
DiameterAppPersistenceProfiles: avi.ApplicationpersistenceprofileDiameterAppPersistenceProfileArray{
&avi.ApplicationpersistenceprofileDiameterAppPersistenceProfileArgs{
AvpKeyType: pulumi.String("string"),
Timeout: pulumi.String("string"),
},
},
HdrPersistenceProfiles: avi.ApplicationpersistenceprofileHdrPersistenceProfileArray{
&avi.ApplicationpersistenceprofileHdrPersistenceProfileArgs{
PrstHdrName: pulumi.String("string"),
},
},
AppCookiePersistenceProfiles: avi.ApplicationpersistenceprofileAppCookiePersistenceProfileArray{
&avi.ApplicationpersistenceprofileAppCookiePersistenceProfileArgs{
PrstHdrName: pulumi.String("string"),
EncryptionKey: pulumi.String("string"),
Timeout: pulumi.String("string"),
},
},
IpPersistenceProfiles: avi.ApplicationpersistenceprofileIpPersistenceProfileArray{
&avi.ApplicationpersistenceprofileIpPersistenceProfileArgs{
IpMask: pulumi.String("string"),
IpPersistentTimeout: pulumi.String("string"),
},
},
ConfigpbAttributes: avi.ApplicationpersistenceprofileConfigpbAttributeArray{
&avi.ApplicationpersistenceprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Markers: avi.ApplicationpersistenceprofileMarkerArray{
&avi.ApplicationpersistenceprofileMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
ApplicationpersistenceprofileId: pulumi.String("string"),
ServerHmDownRecovery: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var applicationpersistenceprofileResource = new Applicationpersistenceprofile("applicationpersistenceprofileResource", ApplicationpersistenceprofileArgs.builder()
.persistenceType("string")
.httpCookiePersistenceProfiles(ApplicationpersistenceprofileHttpCookiePersistenceProfileArgs.builder()
.alwaysSendCookie("string")
.cookieName("string")
.encryptionKey("string")
.httpOnly("string")
.isPersistentCookie("string")
.keys(ApplicationpersistenceprofileHttpCookiePersistenceProfileKeyArgs.builder()
.aesKey("string")
.hmacKey("string")
.name("string")
.build())
.timeout("string")
.build())
.isFederated("string")
.description("string")
.diameterAppPersistenceProfiles(ApplicationpersistenceprofileDiameterAppPersistenceProfileArgs.builder()
.avpKeyType("string")
.timeout("string")
.build())
.hdrPersistenceProfiles(ApplicationpersistenceprofileHdrPersistenceProfileArgs.builder()
.prstHdrName("string")
.build())
.appCookiePersistenceProfiles(ApplicationpersistenceprofileAppCookiePersistenceProfileArgs.builder()
.prstHdrName("string")
.encryptionKey("string")
.timeout("string")
.build())
.ipPersistenceProfiles(ApplicationpersistenceprofileIpPersistenceProfileArgs.builder()
.ipMask("string")
.ipPersistentTimeout("string")
.build())
.configpbAttributes(ApplicationpersistenceprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.markers(ApplicationpersistenceprofileMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.applicationpersistenceprofileId("string")
.serverHmDownRecovery("string")
.tenantRef("string")
.uuid("string")
.build());
applicationpersistenceprofile_resource = avi.Applicationpersistenceprofile("applicationpersistenceprofileResource",
persistence_type="string",
http_cookie_persistence_profiles=[{
"always_send_cookie": "string",
"cookie_name": "string",
"encryption_key": "string",
"http_only": "string",
"is_persistent_cookie": "string",
"keys": [{
"aes_key": "string",
"hmac_key": "string",
"name": "string",
}],
"timeout": "string",
}],
is_federated="string",
description="string",
diameter_app_persistence_profiles=[{
"avp_key_type": "string",
"timeout": "string",
}],
hdr_persistence_profiles=[{
"prst_hdr_name": "string",
}],
app_cookie_persistence_profiles=[{
"prst_hdr_name": "string",
"encryption_key": "string",
"timeout": "string",
}],
ip_persistence_profiles=[{
"ip_mask": "string",
"ip_persistent_timeout": "string",
}],
configpb_attributes=[{
"version": "string",
}],
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
applicationpersistenceprofile_id="string",
server_hm_down_recovery="string",
tenant_ref="string",
uuid="string")
const applicationpersistenceprofileResource = new avi.Applicationpersistenceprofile("applicationpersistenceprofileResource", {
persistenceType: "string",
httpCookiePersistenceProfiles: [{
alwaysSendCookie: "string",
cookieName: "string",
encryptionKey: "string",
httpOnly: "string",
isPersistentCookie: "string",
keys: [{
aesKey: "string",
hmacKey: "string",
name: "string",
}],
timeout: "string",
}],
isFederated: "string",
description: "string",
diameterAppPersistenceProfiles: [{
avpKeyType: "string",
timeout: "string",
}],
hdrPersistenceProfiles: [{
prstHdrName: "string",
}],
appCookiePersistenceProfiles: [{
prstHdrName: "string",
encryptionKey: "string",
timeout: "string",
}],
ipPersistenceProfiles: [{
ipMask: "string",
ipPersistentTimeout: "string",
}],
configpbAttributes: [{
version: "string",
}],
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
applicationpersistenceprofileId: "string",
serverHmDownRecovery: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Applicationpersistenceprofile
properties:
appCookiePersistenceProfiles:
- encryptionKey: string
prstHdrName: string
timeout: string
applicationpersistenceprofileId: string
configpbAttributes:
- version: string
description: string
diameterAppPersistenceProfiles:
- avpKeyType: string
timeout: string
hdrPersistenceProfiles:
- prstHdrName: string
httpCookiePersistenceProfiles:
- alwaysSendCookie: string
cookieName: string
encryptionKey: string
httpOnly: string
isPersistentCookie: string
keys:
- aesKey: string
hmacKey: string
name: string
timeout: string
ipPersistenceProfiles:
- ipMask: string
ipPersistentTimeout: string
isFederated: string
markers:
- key: string
values:
- string
name: string
persistenceType: string
serverHmDownRecovery: string
tenantRef: string
uuid: string
Applicationpersistenceprofile 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 Applicationpersistenceprofile resource accepts the following input properties:
- Persistence
Type string - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- List<Applicationpersistenceprofile
App Cookie Persistence Profile> - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Applicationpersistenceprofile
Id string - Configpb
Attributes List<ApplicationpersistenceprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Diameter
App List<ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile> - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Hdr
Persistence List<ApplicationpersistenceprofileProfiles Hdr Persistence Profile> - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- List<Applicationpersistenceprofile
Http Cookie Persistence Profile> - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ip
Persistence List<ApplicationpersistenceprofileProfiles Ip Persistence Profile> - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Applicationpersistenceprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Server
Hm stringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Persistence
Type string - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- []Applicationpersistenceprofile
App Cookie Persistence Profile Args - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Applicationpersistenceprofile
Id string - Configpb
Attributes []ApplicationpersistenceprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Diameter
App []ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile Args - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Hdr
Persistence []ApplicationpersistenceprofileProfiles Hdr Persistence Profile Args - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- []Applicationpersistenceprofile
Http Cookie Persistence Profile Args - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ip
Persistence []ApplicationpersistenceprofileProfiles Ip Persistence Profile Args - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Applicationpersistenceprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Server
Hm stringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence
Type String - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- List<Applicationpersistenceprofile
App Cookie Persistence Profile> - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile
Id String - configpb
Attributes List<ApplicationpersistenceprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter
App List<ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile> - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr
Persistence List<ApplicationpersistenceprofileProfiles Hdr Persistence Profile> - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- List<Applicationpersistenceprofile
Http Cookie Persistence Profile> - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip
Persistence List<ApplicationpersistenceprofileProfiles Ip Persistence Profile> - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Applicationpersistenceprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- server
Hm StringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence
Type string - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- Applicationpersistenceprofile
App Cookie Persistence Profile[] - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile
Id string - configpb
Attributes ApplicationpersistenceprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter
App ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile[] - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr
Persistence ApplicationpersistenceprofileProfiles Hdr Persistence Profile[] - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- Applicationpersistenceprofile
Http Cookie Persistence Profile[] - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip
Persistence ApplicationpersistenceprofileProfiles Ip Persistence Profile[] - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Applicationpersistenceprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- server
Hm stringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence_
type str - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- Sequence[Applicationpersistenceprofile
App Cookie Persistence Profile Args] - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile_
id str - configpb_
attributes Sequence[ApplicationpersistenceprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter_
app_ Sequence[Applicationpersistenceprofilepersistence_ profiles Diameter App Persistence Profile Args] - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr_
persistence_ Sequence[Applicationpersistenceprofileprofiles Hdr Persistence Profile Args] - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- Sequence[Applicationpersistenceprofile
Http Cookie Persistence Profile Args] - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip_
persistence_ Sequence[Applicationpersistenceprofileprofiles Ip Persistence Profile Args] - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is_
federated str - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Applicationpersistenceprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- server_
hm_ strdown_ recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence
Type String - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- List<Property Map>
- Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter
App List<Property Map>Persistence Profiles - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr
Persistence List<Property Map>Profiles - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- List<Property Map>
- Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip
Persistence List<Property Map>Profiles - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- server
Hm StringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Applicationpersistenceprofile 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 Applicationpersistenceprofile Resource
Get an existing Applicationpersistenceprofile 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?: ApplicationpersistenceprofileState, opts?: CustomResourceOptions): Applicationpersistenceprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_cookie_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileAppCookiePersistenceProfileArgs]] = None,
applicationpersistenceprofile_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[ApplicationpersistenceprofileConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
diameter_app_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileDiameterAppPersistenceProfileArgs]] = None,
hdr_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileHdrPersistenceProfileArgs]] = None,
http_cookie_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileHttpCookiePersistenceProfileArgs]] = None,
ip_persistence_profiles: Optional[Sequence[ApplicationpersistenceprofileIpPersistenceProfileArgs]] = None,
is_federated: Optional[str] = None,
markers: Optional[Sequence[ApplicationpersistenceprofileMarkerArgs]] = None,
name: Optional[str] = None,
persistence_type: Optional[str] = None,
server_hm_down_recovery: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Applicationpersistenceprofile
func GetApplicationpersistenceprofile(ctx *Context, name string, id IDInput, state *ApplicationpersistenceprofileState, opts ...ResourceOption) (*Applicationpersistenceprofile, error)
public static Applicationpersistenceprofile Get(string name, Input<string> id, ApplicationpersistenceprofileState? state, CustomResourceOptions? opts = null)
public static Applicationpersistenceprofile get(String name, Output<String> id, ApplicationpersistenceprofileState state, CustomResourceOptions options)
resources: _: type: avi:Applicationpersistenceprofile 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.
- List<Applicationpersistenceprofile
App Cookie Persistence Profile> - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Applicationpersistenceprofile
Id string - Configpb
Attributes List<ApplicationpersistenceprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Diameter
App List<ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile> - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Hdr
Persistence List<ApplicationpersistenceprofileProfiles Hdr Persistence Profile> - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- List<Applicationpersistenceprofile
Http Cookie Persistence Profile> - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ip
Persistence List<ApplicationpersistenceprofileProfiles Ip Persistence Profile> - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Applicationpersistenceprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Persistence
Type string - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- Server
Hm stringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- []Applicationpersistenceprofile
App Cookie Persistence Profile Args - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Applicationpersistenceprofile
Id string - Configpb
Attributes []ApplicationpersistenceprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Diameter
App []ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile Args - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Hdr
Persistence []ApplicationpersistenceprofileProfiles Hdr Persistence Profile Args - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- []Applicationpersistenceprofile
Http Cookie Persistence Profile Args - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ip
Persistence []ApplicationpersistenceprofileProfiles Ip Persistence Profile Args - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Applicationpersistenceprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Persistence
Type string - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- Server
Hm stringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- List<Applicationpersistenceprofile
App Cookie Persistence Profile> - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile
Id String - configpb
Attributes List<ApplicationpersistenceprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter
App List<ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile> - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr
Persistence List<ApplicationpersistenceprofileProfiles Hdr Persistence Profile> - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- List<Applicationpersistenceprofile
Http Cookie Persistence Profile> - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip
Persistence List<ApplicationpersistenceprofileProfiles Ip Persistence Profile> - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Applicationpersistenceprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence
Type String - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- server
Hm StringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Applicationpersistenceprofile
App Cookie Persistence Profile[] - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile
Id string - configpb
Attributes ApplicationpersistenceprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter
App ApplicationpersistenceprofilePersistence Profiles Diameter App Persistence Profile[] - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr
Persistence ApplicationpersistenceprofileProfiles Hdr Persistence Profile[] - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- Applicationpersistenceprofile
Http Cookie Persistence Profile[] - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip
Persistence ApplicationpersistenceprofileProfiles Ip Persistence Profile[] - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Applicationpersistenceprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence
Type string - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- server
Hm stringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Sequence[Applicationpersistenceprofile
App Cookie Persistence Profile Args] - Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile_
id str - configpb_
attributes Sequence[ApplicationpersistenceprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter_
app_ Sequence[Applicationpersistenceprofilepersistence_ profiles Diameter App Persistence Profile Args] - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr_
persistence_ Sequence[Applicationpersistenceprofileprofiles Hdr Persistence Profile Args] - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- Sequence[Applicationpersistenceprofile
Http Cookie Persistence Profile Args] - Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip_
persistence_ Sequence[Applicationpersistenceprofileprofiles Ip Persistence Profile Args] - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is_
federated str - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Applicationpersistenceprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence_
type str - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- server_
hm_ strdown_ recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- List<Property Map>
- Specifies the application cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- applicationpersistenceprofile
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- diameter
App List<Property Map>Persistence Profiles - Specifies the diameter persistence profile parameters. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- hdr
Persistence List<Property Map>Profiles - Specifies the custom http header persistence profile parameters. Allowed with any value in enterprise, enterprise with cloud services edition.
- List<Property Map>
- Specifies the http cookie persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ip
Persistence List<Property Map>Profiles - Specifies the client ip persistence profile parameters. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name for the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- persistence
Type String - Method used to persist clients to the same server for a duration of time or a session. Enum options - PERSISTENCE_TYPE_CLIENT_IP_ADDRESS, PERSISTENCE_TYPE_HTTP_COOKIE, PERSISTENCE_TYPE_TLS, PERSISTENCE_TYPE_CLIENT_IPV6_ADDRESS, PERSISTENCE_TYPE_CUSTOM_HTTP_HEADER, PERSISTENCE_TYPE_APP_COOKIE, PERSISTENCE_TYPE_GSLB_SITE, PERSISTENCE_TYPE_APP_DIAMETER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie), basic (allowed values- persistence_type_client_ip_address,persistence_type_http_cookie) edition.
- server
Hm StringDown Recovery - Specifies behavior when a persistent server has been marked down by a health monitor. Enum options - HM_DOWN_PICK_NEW_SERVER, HM_DOWN_ABORT_CONNECTION, HM_DOWN_CONTINUE_PERSISTENT_SERVER. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- hm_down_pick_new_server), basic (allowed values- hm_down_pick_new_server) edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the persistence profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
ApplicationpersistenceprofileAppCookiePersistenceProfile, ApplicationpersistenceprofileAppCookiePersistenceProfileArgs
- Prst
Hdr stringName - Encryption
Key string - Timeout string
- Prst
Hdr stringName - Encryption
Key string - Timeout string
- prst
Hdr StringName - encryption
Key String - timeout String
- prst
Hdr stringName - encryption
Key string - timeout string
- prst_
hdr_ strname - encryption_
key str - timeout str
- prst
Hdr StringName - encryption
Key String - timeout String
ApplicationpersistenceprofileConfigpbAttribute, ApplicationpersistenceprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
ApplicationpersistenceprofileDiameterAppPersistenceProfile, ApplicationpersistenceprofileDiameterAppPersistenceProfileArgs
- Avp
Key stringType - Timeout string
- Avp
Key stringType - Timeout string
- avp
Key StringType - timeout String
- avp
Key stringType - timeout string
- avp_
key_ strtype - timeout str
- avp
Key StringType - timeout String
ApplicationpersistenceprofileHdrPersistenceProfile, ApplicationpersistenceprofileHdrPersistenceProfileArgs
- Prst
Hdr stringName
- Prst
Hdr stringName
- prst
Hdr StringName
- prst
Hdr stringName
- prst_
hdr_ strname
- prst
Hdr StringName
ApplicationpersistenceprofileHttpCookiePersistenceProfile, ApplicationpersistenceprofileHttpCookiePersistenceProfileArgs
- string
- string
- Encryption
Key string - Http
Only string - string
- Keys
List<Applicationpersistenceprofile
Http Cookie Persistence Profile Key> - Timeout string
- string
- string
- Encryption
Key string - Http
Only string - string
- Keys
[]Applicationpersistenceprofile
Http Cookie Persistence Profile Key - Timeout string
- String
- String
- encryption
Key String - http
Only String - String
- keys
List<Applicationpersistenceprofile
Http Cookie Persistence Profile Key> - timeout String
- string
- string
- encryption
Key string - http
Only string - string
- keys
Applicationpersistenceprofile
Http Cookie Persistence Profile Key[] - timeout string
- String
- String
- encryption
Key String - http
Only String - String
- keys List<Property Map>
- timeout String
ApplicationpersistenceprofileHttpCookiePersistenceProfileKey, ApplicationpersistenceprofileHttpCookiePersistenceProfileKeyArgs
ApplicationpersistenceprofileIpPersistenceProfile, ApplicationpersistenceprofileIpPersistenceProfileArgs
- Ip
Mask string - Ip
Persistent stringTimeout
- Ip
Mask string - Ip
Persistent stringTimeout
- ip
Mask String - ip
Persistent StringTimeout
- ip
Mask string - ip
Persistent stringTimeout
- ip_
mask str - ip_
persistent_ strtimeout
- ip
Mask String - ip
Persistent StringTimeout
ApplicationpersistenceprofileMarker, ApplicationpersistenceprofileMarkerArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.