1. Packages
  2. F5bigip Provider
  3. API Docs
  4. ltm
  5. ProfileHttp2
f5 BIG-IP v3.17.10 published on Tuesday, Apr 8, 2025 by Pulumi

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,
});
Copy
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)
Copy
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", &ltm.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", &ltm.ProfileHttp2Args{
			Name:         pulumi.String("/Common/test-profile-http2-child"),
			DefaultsFrom: nyhttp2.Name,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
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}
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. ProfileHttp2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ProfileHttp2Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ProfileHttp2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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,
});
Copy
example, err := ltm.NewProfileHttp2(ctx, "profileHttp2Resource", &ltm.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),
})
Copy
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());
Copy
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)
Copy
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,
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ProfileHttp2 resource accepts the following input properties:

Name
This property is required.
Changes to this property will trigger replacement.
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.
ActivationModes 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”].
ConcurrentStreamsPerConnection int
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
ConnectionIdleTimeout int
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
DefaultsFrom 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.
EnforceTlsRequirements string
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
FrameSize int
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
HeaderTableSize int
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
IncludeContentLength string
Enable to include content-length in HTTP/2 headers,Default : disabled
InsertHeader 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"].
InsertHeaderName string
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.
ReceiveWindow int
The flow-control size for upload streams, in KB. Default: 32.
WriteSize int
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
Name
This property is required.
Changes to this property will trigger replacement.
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.
ActivationModes []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”].
ConcurrentStreamsPerConnection int
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
ConnectionIdleTimeout int
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
DefaultsFrom 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.
EnforceTlsRequirements string
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
FrameSize int
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
HeaderTableSize int
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
IncludeContentLength string
Enable to include content-length in HTTP/2 headers,Default : disabled
InsertHeader 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"].
InsertHeaderName string
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.
ReceiveWindow int
The flow-control size for upload streams, in KB. Default: 32.
WriteSize int
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
name
This property is required.
Changes to this property will trigger replacement.
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.
activationModes 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”].
concurrentStreamsPerConnection Integer
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connectionIdleTimeout Integer
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
defaultsFrom 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.
enforceTlsRequirements String
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
frameSize Integer
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
headerTableSize Integer
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
includeContentLength String
Enable to include content-length in HTTP/2 headers,Default : disabled
insertHeader 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"].
insertHeaderName String
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.
receiveWindow Integer
The flow-control size for upload streams, in KB. Default: 32.
writeSize Integer
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
name
This property is required.
Changes to this property will trigger replacement.
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.
activationModes 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”].
concurrentStreamsPerConnection number
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connectionIdleTimeout number
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
defaultsFrom 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.
enforceTlsRequirements string
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
frameSize number
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
headerTableSize number
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
includeContentLength string
Enable to include content-length in HTTP/2 headers,Default : disabled
insertHeader 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"].
insertHeaderName string
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.
receiveWindow number
The flow-control size for upload streams, in KB. Default: 32.
writeSize number
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
name
This property is required.
Changes to this property will trigger replacement.
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_per_connection int
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connection_idle_timeout int
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_requirements str
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_size int
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
include_content_length str
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_name str
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
This property is required.
Changes to this property will trigger replacement.
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.
activationModes 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”].
concurrentStreamsPerConnection Number
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connectionIdleTimeout Number
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
defaultsFrom 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.
enforceTlsRequirements String
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
frameSize Number
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
headerTableSize Number
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
includeContentLength String
Enable to include content-length in HTTP/2 headers,Default : disabled
insertHeader 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"].
insertHeaderName String
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.
receiveWindow Number
The flow-control size for upload streams, in KB. Default: 32.
writeSize 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)
resources:  _:    type: f5bigip:ltm:ProfileHttp2    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ActivationModes 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”].
ConcurrentStreamsPerConnection int
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
ConnectionIdleTimeout int
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
DefaultsFrom 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.
EnforceTlsRequirements string
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
FrameSize int
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
HeaderTableSize int
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
IncludeContentLength string
Enable to include content-length in HTTP/2 headers,Default : disabled
InsertHeader 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"].
InsertHeaderName string
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 Changes to this property will trigger replacement. 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.
ReceiveWindow int
The flow-control size for upload streams, in KB. Default: 32.
WriteSize int
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
ActivationModes []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”].
ConcurrentStreamsPerConnection int
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
ConnectionIdleTimeout int
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
DefaultsFrom 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.
EnforceTlsRequirements string
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
FrameSize int
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
HeaderTableSize int
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
IncludeContentLength string
Enable to include content-length in HTTP/2 headers,Default : disabled
InsertHeader 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"].
InsertHeaderName string
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 Changes to this property will trigger replacement. 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.
ReceiveWindow int
The flow-control size for upload streams, in KB. Default: 32.
WriteSize int
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
activationModes 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”].
concurrentStreamsPerConnection Integer
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connectionIdleTimeout Integer
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
defaultsFrom 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.
enforceTlsRequirements String
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
frameSize Integer
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
headerTableSize Integer
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
includeContentLength String
Enable to include content-length in HTTP/2 headers,Default : disabled
insertHeader 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"].
insertHeaderName String
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 Changes to this property will trigger replacement. 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.
receiveWindow Integer
The flow-control size for upload streams, in KB. Default: 32.
writeSize Integer
The total size of combined data frames, in bytes, that the HTTP/2 protocol sends in a single write function. Default: 16384".
activationModes 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”].
concurrentStreamsPerConnection number
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connectionIdleTimeout number
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
defaultsFrom 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.
enforceTlsRequirements string
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
frameSize number
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
headerTableSize number
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
includeContentLength string
Enable to include content-length in HTTP/2 headers,Default : disabled
insertHeader 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"].
insertHeaderName string
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 Changes to this property will trigger replacement. 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.
receiveWindow number
The flow-control size for upload streams, in KB. Default: 32.
writeSize 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_per_connection int
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connection_idle_timeout int
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_requirements str
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_size int
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
include_content_length str
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_name str
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 Changes to this property will trigger replacement. 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".
activationModes 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”].
concurrentStreamsPerConnection Number
Specifies how many concurrent requests are allowed to be outstanding on a single HTTP/2 connection.
connectionIdleTimeout Number
Specifies the number of seconds that a connection is idle before the connection is eligible for deletion.
defaultsFrom 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.
enforceTlsRequirements String
Enable or disable enforcement of TLS requirements,Allowed Values : "enabled"/"disabled" [Default:"enabled"].
frameSize Number
The size of the data frames, in bytes, that the HTTP/2 protocol sends to the client. Default: 2048.
headerTableSize Number
The size of the header table, in KB, for the HTTP headers that the HTTP/2 protocol compresses to save bandwidth.
includeContentLength String
Enable to include content-length in HTTP/2 headers,Default : disabled
insertHeader 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"].
insertHeaderName String
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 Changes to this property will trigger replacement. 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.
receiveWindow Number
The flow-control size for upload streams, in KB. Default: 32.
writeSize 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.