f5bigip.ltm.ProfileHttp2
Explore with Pulumi AI
f5bigip.ltm.ProfileHttp2
Configures a custom profile_http2 for use by health checks.
For resources should be named with their “full path”. The full path is the combination of the partition + name of the resource. For example /Common/my-pool.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const nyhttp2 = new f5bigip.ltm.ProfileHttp2("nyhttp2", {
name: "/Common/test-profile-http2",
frameSize: 2021,
receiveWindow: 31,
writeSize: 16380,
headerTableSize: 4092,
includeContentLength: "enabled",
enforceTlsRequirements: "enabled",
insertHeader: "disabled",
concurrentStreamsPerConnection: 30,
connectionIdleTimeout: 100,
activationModes: ["always"],
});
//Child Profile which inherits parent http2 profile
const nyhttp2_child = new f5bigip.ltm.ProfileHttp2("nyhttp2-child", {
name: "/Common/test-profile-http2-child",
defaultsFrom: nyhttp2.name,
});
import pulumi
import pulumi_f5bigip as f5bigip
nyhttp2 = f5bigip.ltm.ProfileHttp2("nyhttp2",
name="/Common/test-profile-http2",
frame_size=2021,
receive_window=31,
write_size=16380,
header_table_size=4092,
include_content_length="enabled",
enforce_tls_requirements="enabled",
insert_header="disabled",
concurrent_streams_per_connection=30,
connection_idle_timeout=100,
activation_modes=["always"])
#Child Profile which inherits parent http2 profile
nyhttp2_child = f5bigip.ltm.ProfileHttp2("nyhttp2-child",
name="/Common/test-profile-http2-child",
defaults_from=nyhttp2.name)
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 {
nyhttp2, err := ltm.NewProfileHttp2(ctx, "nyhttp2", <m.ProfileHttp2Args{
Name: pulumi.String("/Common/test-profile-http2"),
FrameSize: pulumi.Int(2021),
ReceiveWindow: pulumi.Int(31),
WriteSize: pulumi.Int(16380),
HeaderTableSize: pulumi.Int(4092),
IncludeContentLength: pulumi.String("enabled"),
EnforceTlsRequirements: pulumi.String("enabled"),
InsertHeader: pulumi.String("disabled"),
ConcurrentStreamsPerConnection: pulumi.Int(30),
ConnectionIdleTimeout: pulumi.Int(100),
ActivationModes: pulumi.StringArray{
pulumi.String("always"),
},
})
if err != nil {
return err
}
// Child Profile which inherits parent http2 profile
_, err = ltm.NewProfileHttp2(ctx, "nyhttp2-child", <m.ProfileHttp2Args{
Name: pulumi.String("/Common/test-profile-http2-child"),
DefaultsFrom: nyhttp2.Name,
})
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 nyhttp2 = new F5BigIP.Ltm.ProfileHttp2("nyhttp2", new()
{
Name = "/Common/test-profile-http2",
FrameSize = 2021,
ReceiveWindow = 31,
WriteSize = 16380,
HeaderTableSize = 4092,
IncludeContentLength = "enabled",
EnforceTlsRequirements = "enabled",
InsertHeader = "disabled",
ConcurrentStreamsPerConnection = 30,
ConnectionIdleTimeout = 100,
ActivationModes = new[]
{
"always",
},
});
//Child Profile which inherits parent http2 profile
var nyhttp2_child = new F5BigIP.Ltm.ProfileHttp2("nyhttp2-child", new()
{
Name = "/Common/test-profile-http2-child",
DefaultsFrom = nyhttp2.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.ProfileHttp2;
import com.pulumi.f5bigip.ltm.ProfileHttp2Args;
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 nyhttp2 = new ProfileHttp2("nyhttp2", ProfileHttp2Args.builder()
.name("/Common/test-profile-http2")
.frameSize(2021)
.receiveWindow(31)
.writeSize(16380)
.headerTableSize(4092)
.includeContentLength("enabled")
.enforceTlsRequirements("enabled")
.insertHeader("disabled")
.concurrentStreamsPerConnection(30)
.connectionIdleTimeout(100)
.activationModes("always")
.build());
//Child Profile which inherits parent http2 profile
var nyhttp2_child = new ProfileHttp2("nyhttp2-child", ProfileHttp2Args.builder()
.name("/Common/test-profile-http2-child")
.defaultsFrom(nyhttp2.name())
.build());
}
}
resources:
nyhttp2:
type: f5bigip:ltm:ProfileHttp2
properties:
name: /Common/test-profile-http2
frameSize: 2021
receiveWindow: 31
writeSize: 16380
headerTableSize: 4092
includeContentLength: enabled
enforceTlsRequirements: enabled
insertHeader: disabled
concurrentStreamsPerConnection: 30
connectionIdleTimeout: 100
activationModes:
- always
#Child Profile which inherits parent http2 profile
nyhttp2-child:
type: f5bigip:ltm:ProfileHttp2
properties:
name: /Common/test-profile-http2-child
defaultsFrom: ${nyhttp2.name}
Create ProfileHttp2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProfileHttp2(name: string, args: ProfileHttp2Args, opts?: CustomResourceOptions);
@overload
def ProfileHttp2(resource_name: str,
args: ProfileHttp2Args,
opts: Optional[ResourceOptions] = None)
@overload
def ProfileHttp2(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
header_table_size: Optional[int] = None,
connection_idle_timeout: Optional[int] = None,
defaults_from: Optional[str] = None,
enforce_tls_requirements: Optional[str] = None,
frame_size: Optional[int] = None,
activation_modes: Optional[Sequence[str]] = None,
include_content_length: Optional[str] = None,
insert_header: Optional[str] = None,
insert_header_name: Optional[str] = None,
concurrent_streams_per_connection: Optional[int] = None,
receive_window: Optional[int] = None,
write_size: Optional[int] = None)
func NewProfileHttp2(ctx *Context, name string, args ProfileHttp2Args, opts ...ResourceOption) (*ProfileHttp2, error)
public ProfileHttp2(string name, ProfileHttp2Args args, CustomResourceOptions? opts = null)
public ProfileHttp2(String name, ProfileHttp2Args args)
public ProfileHttp2(String name, ProfileHttp2Args args, CustomResourceOptions options)
type: f5bigip:ltm:ProfileHttp2
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 ProfileHttp2Args
- 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 ProfileHttp2Args
- 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 ProfileHttp2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileHttp2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileHttp2Args
- 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 profileHttp2Resource = new F5BigIP.Ltm.ProfileHttp2("profileHttp2Resource", new()
{
Name = "string",
HeaderTableSize = 0,
ConnectionIdleTimeout = 0,
DefaultsFrom = "string",
EnforceTlsRequirements = "string",
FrameSize = 0,
ActivationModes = new[]
{
"string",
},
IncludeContentLength = "string",
InsertHeader = "string",
InsertHeaderName = "string",
ConcurrentStreamsPerConnection = 0,
ReceiveWindow = 0,
WriteSize = 0,
});
example, err := ltm.NewProfileHttp2(ctx, "profileHttp2Resource", <m.ProfileHttp2Args{
Name: pulumi.String("string"),
HeaderTableSize: pulumi.Int(0),
ConnectionIdleTimeout: pulumi.Int(0),
DefaultsFrom: pulumi.String("string"),
EnforceTlsRequirements: pulumi.String("string"),
FrameSize: pulumi.Int(0),
ActivationModes: pulumi.StringArray{
pulumi.String("string"),
},
IncludeContentLength: pulumi.String("string"),
InsertHeader: pulumi.String("string"),
InsertHeaderName: pulumi.String("string"),
ConcurrentStreamsPerConnection: pulumi.Int(0),
ReceiveWindow: pulumi.Int(0),
WriteSize: pulumi.Int(0),
})
var profileHttp2Resource = new ProfileHttp2("profileHttp2Resource", ProfileHttp2Args.builder()
.name("string")
.headerTableSize(0)
.connectionIdleTimeout(0)
.defaultsFrom("string")
.enforceTlsRequirements("string")
.frameSize(0)
.activationModes("string")
.includeContentLength("string")
.insertHeader("string")
.insertHeaderName("string")
.concurrentStreamsPerConnection(0)
.receiveWindow(0)
.writeSize(0)
.build());
profile_http2_resource = f5bigip.ltm.ProfileHttp2("profileHttp2Resource",
name="string",
header_table_size=0,
connection_idle_timeout=0,
defaults_from="string",
enforce_tls_requirements="string",
frame_size=0,
activation_modes=["string"],
include_content_length="string",
insert_header="string",
insert_header_name="string",
concurrent_streams_per_connection=0,
receive_window=0,
write_size=0)
const profileHttp2Resource = new f5bigip.ltm.ProfileHttp2("profileHttp2Resource", {
name: "string",
headerTableSize: 0,
connectionIdleTimeout: 0,
defaultsFrom: "string",
enforceTlsRequirements: "string",
frameSize: 0,
activationModes: ["string"],
includeContentLength: "string",
insertHeader: "string",
insertHeaderName: "string",
concurrentStreamsPerConnection: 0,
receiveWindow: 0,
writeSize: 0,
});
type: f5bigip:ltm:ProfileHttp2
properties:
activationModes:
- string
concurrentStreamsPerConnection: 0
connectionIdleTimeout: 0
defaultsFrom: string
enforceTlsRequirements: string
frameSize: 0
headerTableSize: 0
includeContentLength: string
insertHeader: string
insertHeaderName: string
name: string
receiveWindow: 0
writeSize: 0
ProfileHttp2 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 ProfileHttp2 resource accepts the following input properties:
- Name string
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - Activation
Modes List<string> - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - Concurrent
Streams intPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- Connection
Idle intTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Enforce
Tls stringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - Frame
Size int - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - Header
Table intSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- Include
Content stringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- Insert
Header string - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - Insert
Header stringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- Receive
Window int - The flow-control size for upload streams, in KB.
Default: 32
. - Write
Size int - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- Name string
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - Activation
Modes []string - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - Concurrent
Streams intPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- Connection
Idle intTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Enforce
Tls stringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - Frame
Size int - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - Header
Table intSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- Include
Content stringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- Insert
Header string - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - Insert
Header stringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- Receive
Window int - The flow-control size for upload streams, in KB.
Default: 32
. - Write
Size int - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- name String
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - activation
Modes List<String> - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent
Streams IntegerPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection
Idle IntegerTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce
Tls StringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame
Size Integer - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header
Table IntegerSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include
Content StringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert
Header String - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert
Header StringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- receive
Window Integer - The flow-control size for upload streams, in KB.
Default: 32
. - write
Size Integer - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- name string
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - activation
Modes string[] - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent
Streams numberPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection
Idle numberTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce
Tls stringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame
Size number - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header
Table numberSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include
Content stringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert
Header string - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert
Header stringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- receive
Window number - The flow-control size for upload streams, in KB.
Default: 32
. - write
Size number - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- name str
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - activation_
modes Sequence[str] - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent_
streams_ intper_ connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection_
idle_ inttimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults_
from str - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce_
tls_ strrequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame_
size int - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header_
table_ intsize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include_
content_ strlength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert_
header str - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert_
header_ strname - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- receive_
window int - The flow-control size for upload streams, in KB.
Default: 32
. - write_
size int - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- name String
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - activation
Modes List<String> - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent
Streams NumberPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection
Idle NumberTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce
Tls StringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame
Size Number - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header
Table NumberSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include
Content StringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert
Header String - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert
Header StringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- receive
Window Number - The flow-control size for upload streams, in KB.
Default: 32
. - write
Size Number - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
Outputs
All input properties are implicitly available as output properties. Additionally, the ProfileHttp2 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 ProfileHttp2 Resource
Get an existing ProfileHttp2 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?: ProfileHttp2State, opts?: CustomResourceOptions): ProfileHttp2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
activation_modes: Optional[Sequence[str]] = None,
concurrent_streams_per_connection: Optional[int] = None,
connection_idle_timeout: Optional[int] = None,
defaults_from: Optional[str] = None,
enforce_tls_requirements: Optional[str] = None,
frame_size: Optional[int] = None,
header_table_size: Optional[int] = None,
include_content_length: Optional[str] = None,
insert_header: Optional[str] = None,
insert_header_name: Optional[str] = None,
name: Optional[str] = None,
receive_window: Optional[int] = None,
write_size: Optional[int] = None) -> ProfileHttp2
func GetProfileHttp2(ctx *Context, name string, id IDInput, state *ProfileHttp2State, opts ...ResourceOption) (*ProfileHttp2, error)
public static ProfileHttp2 Get(string name, Input<string> id, ProfileHttp2State? state, CustomResourceOptions? opts = null)
public static ProfileHttp2 get(String name, Output<String> id, ProfileHttp2State 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.
- Activation
Modes List<string> - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - Concurrent
Streams intPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- Connection
Idle intTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Enforce
Tls stringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - Frame
Size int - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - Header
Table intSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- Include
Content stringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- Insert
Header string - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - Insert
Header stringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- Name string
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - Receive
Window int - The flow-control size for upload streams, in KB.
Default: 32
. - Write
Size int - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- Activation
Modes []string - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - Concurrent
Streams intPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- Connection
Idle intTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Enforce
Tls stringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - Frame
Size int - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - Header
Table intSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- Include
Content stringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- Insert
Header string - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - Insert
Header stringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- Name string
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - Receive
Window int - The flow-control size for upload streams, in KB.
Default: 32
. - Write
Size int - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- activation
Modes List<String> - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent
Streams IntegerPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection
Idle IntegerTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce
Tls StringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame
Size Integer - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header
Table IntegerSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include
Content StringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert
Header String - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert
Header StringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- name String
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - receive
Window Integer - The flow-control size for upload streams, in KB.
Default: 32
. - write
Size Integer - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- activation
Modes string[] - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent
Streams numberPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection
Idle numberTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce
Tls stringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame
Size number - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header
Table numberSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include
Content stringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert
Header string - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert
Header stringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- name string
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - receive
Window number - The flow-control size for upload streams, in KB.
Default: 32
. - write
Size number - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- activation_
modes Sequence[str] - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent_
streams_ intper_ connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection_
idle_ inttimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults_
from str - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce_
tls_ strrequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame_
size int - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header_
table_ intsize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include_
content_ strlength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert_
header str - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert_
header_ strname - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- name str
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - receive_
window int - The flow-control size for upload streams, in KB.
Default: 32
. - write_
size int - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
- activation
Modes List<String> - This setting specifies the condition that will cause the BIG-IP system to handle an incoming connection as an HTTP/2 connection, Allowed values :
[“alpn”]
(or)[“always”]
. - concurrent
Streams NumberPer Connection - Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
- connection
Idle NumberTimeout - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- enforce
Tls StringRequirements - Enable or disable enforcement of TLS requirements,Allowed Values :
"enabled"/"disabled"
[Default:"enabled"
]. - frame
Size Number - The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client.
Default: 2048
. - header
Table NumberSize - The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
- include
Content StringLength - Enable to include content-length in HTTP/2 headers,Default : disabled
- insert
Header String - This setting specifies whether the BIG-IP system should add an HTTP header to the HTTP request to show that the request was received over HTTP/2, Allowed Values :
"enabled"/"disabled"
[ Default:"disabled"
]. - insert
Header StringName - This setting specifies the name of the header that the BIG-IP system will add to the HTTP request when the Insert Header is enabled.
- name String
- Name of Profile should be full path.The full path is the combination of the
partition + profile name
,For example/Common/test-http2-profile
. - receive
Window Number - The flow-control size for upload streams, in KB.
Default: 32
. - write
Size Number - The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function.
Default: 16384
".
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.