1. Packages
  2. F5 BIG-IP
  3. API Docs
  4. ltm
  5. ProfileRewrite
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

f5bigip.ltm.ProfileRewrite

Explore with Pulumi AI

f5bigip logo
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

    bigip_ltm_rewrite_profile Configures ltm policies to manage traffic assigned to a virtual server

    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/test-profile.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as f5bigip from "@pulumi/f5bigip";
    
    const test_profile = new f5bigip.ltm.ProfileRewrite("test-profile", {
        bypassLists: ["http://notouch.com"],
        caFile: "/Common/ca-bundle.crt",
        cacheType: "cache-img-css-js",
        crlFile: "none",
        defaultsFrom: "/Common/rewrite",
        name: "/Common/tf_profile",
        rewriteLists: ["http://some.com"],
        rewriteMode: "portal",
        signingCert: "/Common/default.crt",
        signingKey: "/Common/default.key",
        splitTunneling: "true",
    });
    const test_profile2 = new f5bigip.ltm.ProfileRewrite("test-profile2", {
        cookieRules: [
            {
                clientDomain: "wrong.com",
                clientPath: "/this/",
                ruleName: "cookie1",
                serverDomain: "wrong.com",
                serverPath: "/this/",
            },
            {
                clientDomain: "incorrect.com",
                clientPath: "/this/",
                ruleName: "cookie2",
                serverDomain: "absolute.com",
                serverPath: "/this/",
            },
        ],
        defaultsFrom: "/Common/rewrite",
        name: "/Common/tf_profile_translate",
        requests: [{
            insertXfwdFor: "enabled",
            insertXfwdHost: "disabled",
            insertXfwdProtocol: "enabled",
            rewriteHeaders: "disabled",
        }],
        responses: [{
            rewriteContent: "enabled",
            rewriteHeaders: "disabled",
        }],
        rewriteMode: "uri-translation",
    });
    
    import pulumi
    import pulumi_f5bigip as f5bigip
    
    test_profile = f5bigip.ltm.ProfileRewrite("test-profile",
        bypass_lists=["http://notouch.com"],
        ca_file="/Common/ca-bundle.crt",
        cache_type="cache-img-css-js",
        crl_file="none",
        defaults_from="/Common/rewrite",
        name="/Common/tf_profile",
        rewrite_lists=["http://some.com"],
        rewrite_mode="portal",
        signing_cert="/Common/default.crt",
        signing_key="/Common/default.key",
        split_tunneling="true")
    test_profile2 = f5bigip.ltm.ProfileRewrite("test-profile2",
        cookie_rules=[
            f5bigip.ltm.ProfileRewriteCookieRuleArgs(
                client_domain="wrong.com",
                client_path="/this/",
                rule_name="cookie1",
                server_domain="wrong.com",
                server_path="/this/",
            ),
            f5bigip.ltm.ProfileRewriteCookieRuleArgs(
                client_domain="incorrect.com",
                client_path="/this/",
                rule_name="cookie2",
                server_domain="absolute.com",
                server_path="/this/",
            ),
        ],
        defaults_from="/Common/rewrite",
        name="/Common/tf_profile_translate",
        requests=[f5bigip.ltm.ProfileRewriteRequestArgs(
            insert_xfwd_for="enabled",
            insert_xfwd_host="disabled",
            insert_xfwd_protocol="enabled",
            rewrite_headers="disabled",
        )],
        responses=[f5bigip.ltm.ProfileRewriteResponseArgs(
            rewrite_content="enabled",
            rewrite_headers="disabled",
        )],
        rewrite_mode="uri-translation")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ltm.NewProfileRewrite(ctx, "test-profile", &ltm.ProfileRewriteArgs{
    			BypassLists: pulumi.StringArray{
    				pulumi.String("http://notouch.com"),
    			},
    			CaFile:       pulumi.String("/Common/ca-bundle.crt"),
    			CacheType:    pulumi.String("cache-img-css-js"),
    			CrlFile:      pulumi.String("none"),
    			DefaultsFrom: pulumi.String("/Common/rewrite"),
    			Name:         pulumi.String("/Common/tf_profile"),
    			RewriteLists: pulumi.StringArray{
    				pulumi.String("http://some.com"),
    			},
    			RewriteMode:    pulumi.String("portal"),
    			SigningCert:    pulumi.String("/Common/default.crt"),
    			SigningKey:     pulumi.String("/Common/default.key"),
    			SplitTunneling: pulumi.String("true"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ltm.NewProfileRewrite(ctx, "test-profile2", &ltm.ProfileRewriteArgs{
    			CookieRules: ltm.ProfileRewriteCookieRuleArray{
    				&ltm.ProfileRewriteCookieRuleArgs{
    					ClientDomain: pulumi.String("wrong.com"),
    					ClientPath:   pulumi.String("/this/"),
    					RuleName:     pulumi.String("cookie1"),
    					ServerDomain: pulumi.String("wrong.com"),
    					ServerPath:   pulumi.String("/this/"),
    				},
    				&ltm.ProfileRewriteCookieRuleArgs{
    					ClientDomain: pulumi.String("incorrect.com"),
    					ClientPath:   pulumi.String("/this/"),
    					RuleName:     pulumi.String("cookie2"),
    					ServerDomain: pulumi.String("absolute.com"),
    					ServerPath:   pulumi.String("/this/"),
    				},
    			},
    			DefaultsFrom: pulumi.String("/Common/rewrite"),
    			Name:         pulumi.String("/Common/tf_profile_translate"),
    			Requests: ltm.ProfileRewriteRequestArray{
    				&ltm.ProfileRewriteRequestArgs{
    					InsertXfwdFor:      pulumi.String("enabled"),
    					InsertXfwdHost:     pulumi.String("disabled"),
    					InsertXfwdProtocol: pulumi.String("enabled"),
    					RewriteHeaders:     pulumi.String("disabled"),
    				},
    			},
    			Responses: ltm.ProfileRewriteResponseArray{
    				&ltm.ProfileRewriteResponseArgs{
    					RewriteContent: pulumi.String("enabled"),
    					RewriteHeaders: pulumi.String("disabled"),
    				},
    			},
    			RewriteMode: pulumi.String("uri-translation"),
    		})
    		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 test_profile = new F5BigIP.Ltm.ProfileRewrite("test-profile", new()
        {
            BypassLists = new[]
            {
                "http://notouch.com",
            },
            CaFile = "/Common/ca-bundle.crt",
            CacheType = "cache-img-css-js",
            CrlFile = "none",
            DefaultsFrom = "/Common/rewrite",
            Name = "/Common/tf_profile",
            RewriteLists = new[]
            {
                "http://some.com",
            },
            RewriteMode = "portal",
            SigningCert = "/Common/default.crt",
            SigningKey = "/Common/default.key",
            SplitTunneling = "true",
        });
    
        var test_profile2 = new F5BigIP.Ltm.ProfileRewrite("test-profile2", new()
        {
            CookieRules = new[]
            {
                new F5BigIP.Ltm.Inputs.ProfileRewriteCookieRuleArgs
                {
                    ClientDomain = "wrong.com",
                    ClientPath = "/this/",
                    RuleName = "cookie1",
                    ServerDomain = "wrong.com",
                    ServerPath = "/this/",
                },
                new F5BigIP.Ltm.Inputs.ProfileRewriteCookieRuleArgs
                {
                    ClientDomain = "incorrect.com",
                    ClientPath = "/this/",
                    RuleName = "cookie2",
                    ServerDomain = "absolute.com",
                    ServerPath = "/this/",
                },
            },
            DefaultsFrom = "/Common/rewrite",
            Name = "/Common/tf_profile_translate",
            Requests = new[]
            {
                new F5BigIP.Ltm.Inputs.ProfileRewriteRequestArgs
                {
                    InsertXfwdFor = "enabled",
                    InsertXfwdHost = "disabled",
                    InsertXfwdProtocol = "enabled",
                    RewriteHeaders = "disabled",
                },
            },
            Responses = new[]
            {
                new F5BigIP.Ltm.Inputs.ProfileRewriteResponseArgs
                {
                    RewriteContent = "enabled",
                    RewriteHeaders = "disabled",
                },
            },
            RewriteMode = "uri-translation",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.f5bigip.ltm.ProfileRewrite;
    import com.pulumi.f5bigip.ltm.ProfileRewriteArgs;
    import com.pulumi.f5bigip.ltm.inputs.ProfileRewriteCookieRuleArgs;
    import com.pulumi.f5bigip.ltm.inputs.ProfileRewriteRequestArgs;
    import com.pulumi.f5bigip.ltm.inputs.ProfileRewriteResponseArgs;
    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 test_profile = new ProfileRewrite("test-profile", ProfileRewriteArgs.builder()        
                .bypassLists("http://notouch.com")
                .caFile("/Common/ca-bundle.crt")
                .cacheType("cache-img-css-js")
                .crlFile("none")
                .defaultsFrom("/Common/rewrite")
                .name("/Common/tf_profile")
                .rewriteLists("http://some.com")
                .rewriteMode("portal")
                .signingCert("/Common/default.crt")
                .signingKey("/Common/default.key")
                .splitTunneling("true")
                .build());
    
            var test_profile2 = new ProfileRewrite("test-profile2", ProfileRewriteArgs.builder()        
                .cookieRules(            
                    ProfileRewriteCookieRuleArgs.builder()
                        .clientDomain("wrong.com")
                        .clientPath("/this/")
                        .ruleName("cookie1")
                        .serverDomain("wrong.com")
                        .serverPath("/this/")
                        .build(),
                    ProfileRewriteCookieRuleArgs.builder()
                        .clientDomain("incorrect.com")
                        .clientPath("/this/")
                        .ruleName("cookie2")
                        .serverDomain("absolute.com")
                        .serverPath("/this/")
                        .build())
                .defaultsFrom("/Common/rewrite")
                .name("/Common/tf_profile_translate")
                .requests(ProfileRewriteRequestArgs.builder()
                    .insertXfwdFor("enabled")
                    .insertXfwdHost("disabled")
                    .insertXfwdProtocol("enabled")
                    .rewriteHeaders("disabled")
                    .build())
                .responses(ProfileRewriteResponseArgs.builder()
                    .rewriteContent("enabled")
                    .rewriteHeaders("disabled")
                    .build())
                .rewriteMode("uri-translation")
                .build());
    
        }
    }
    
    resources:
      test-profile:
        type: f5bigip:ltm:ProfileRewrite
        properties:
          bypassLists:
            - http://notouch.com
          caFile: /Common/ca-bundle.crt
          cacheType: cache-img-css-js
          crlFile: none
          defaultsFrom: /Common/rewrite
          name: /Common/tf_profile
          rewriteLists:
            - http://some.com
          rewriteMode: portal
          signingCert: /Common/default.crt
          signingKey: /Common/default.key
          splitTunneling: 'true'
      test-profile2:
        type: f5bigip:ltm:ProfileRewrite
        properties:
          cookieRules:
            - clientDomain: wrong.com
              clientPath: /this/
              ruleName: cookie1
              serverDomain: wrong.com
              serverPath: /this/
            - clientDomain: incorrect.com
              clientPath: /this/
              ruleName: cookie2
              serverDomain: absolute.com
              serverPath: /this/
          defaultsFrom: /Common/rewrite
          name: /Common/tf_profile_translate
          requests:
            - insertXfwdFor: enabled
              insertXfwdHost: disabled
              insertXfwdProtocol: enabled
              rewriteHeaders: disabled
          responses:
            - rewriteContent: enabled
              rewriteHeaders: disabled
          rewriteMode: uri-translation
    

    Create ProfileRewrite Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProfileRewrite(name: string, args: ProfileRewriteArgs, opts?: CustomResourceOptions);
    @overload
    def ProfileRewrite(resource_name: str,
                       args: ProfileRewriteArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProfileRewrite(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       name: Optional[str] = None,
                       rewrite_mode: Optional[str] = None,
                       cookie_rules: Optional[Sequence[ProfileRewriteCookieRuleArgs]] = None,
                       bypass_lists: Optional[Sequence[str]] = None,
                       crl_file: Optional[str] = None,
                       defaults_from: Optional[str] = None,
                       cache_type: Optional[str] = None,
                       requests: Optional[Sequence[ProfileRewriteRequestArgs]] = None,
                       responses: Optional[Sequence[ProfileRewriteResponseArgs]] = None,
                       rewrite_lists: Optional[Sequence[str]] = None,
                       ca_file: Optional[str] = None,
                       signing_cert: Optional[str] = None,
                       signing_key: Optional[str] = None,
                       signing_key_password: Optional[str] = None,
                       split_tunneling: Optional[str] = None)
    func NewProfileRewrite(ctx *Context, name string, args ProfileRewriteArgs, opts ...ResourceOption) (*ProfileRewrite, error)
    public ProfileRewrite(string name, ProfileRewriteArgs args, CustomResourceOptions? opts = null)
    public ProfileRewrite(String name, ProfileRewriteArgs args)
    public ProfileRewrite(String name, ProfileRewriteArgs args, CustomResourceOptions options)
    
    type: f5bigip:ltm:ProfileRewrite
    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 ProfileRewriteArgs
    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 ProfileRewriteArgs
    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 ProfileRewriteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProfileRewriteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProfileRewriteArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var profileRewriteResource = new F5BigIP.Ltm.ProfileRewrite("profileRewriteResource", new()
    {
        Name = "string",
        RewriteMode = "string",
        CookieRules = new[]
        {
            new F5BigIP.Ltm.Inputs.ProfileRewriteCookieRuleArgs
            {
                ClientDomain = "string",
                ClientPath = "string",
                RuleName = "string",
                ServerDomain = "string",
                ServerPath = "string",
            },
        },
        BypassLists = new[]
        {
            "string",
        },
        CrlFile = "string",
        DefaultsFrom = "string",
        CacheType = "string",
        Requests = new[]
        {
            new F5BigIP.Ltm.Inputs.ProfileRewriteRequestArgs
            {
                InsertXfwdFor = "string",
                InsertXfwdHost = "string",
                InsertXfwdProtocol = "string",
                RewriteHeaders = "string",
            },
        },
        Responses = new[]
        {
            new F5BigIP.Ltm.Inputs.ProfileRewriteResponseArgs
            {
                RewriteContent = "string",
                RewriteHeaders = "string",
            },
        },
        RewriteLists = new[]
        {
            "string",
        },
        CaFile = "string",
        SigningCert = "string",
        SigningKey = "string",
        SigningKeyPassword = "string",
        SplitTunneling = "string",
    });
    
    example, err := ltm.NewProfileRewrite(ctx, "profileRewriteResource", &ltm.ProfileRewriteArgs{
    	Name:        pulumi.String("string"),
    	RewriteMode: pulumi.String("string"),
    	CookieRules: ltm.ProfileRewriteCookieRuleArray{
    		&ltm.ProfileRewriteCookieRuleArgs{
    			ClientDomain: pulumi.String("string"),
    			ClientPath:   pulumi.String("string"),
    			RuleName:     pulumi.String("string"),
    			ServerDomain: pulumi.String("string"),
    			ServerPath:   pulumi.String("string"),
    		},
    	},
    	BypassLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CrlFile:      pulumi.String("string"),
    	DefaultsFrom: pulumi.String("string"),
    	CacheType:    pulumi.String("string"),
    	Requests: ltm.ProfileRewriteRequestArray{
    		&ltm.ProfileRewriteRequestArgs{
    			InsertXfwdFor:      pulumi.String("string"),
    			InsertXfwdHost:     pulumi.String("string"),
    			InsertXfwdProtocol: pulumi.String("string"),
    			RewriteHeaders:     pulumi.String("string"),
    		},
    	},
    	Responses: ltm.ProfileRewriteResponseArray{
    		&ltm.ProfileRewriteResponseArgs{
    			RewriteContent: pulumi.String("string"),
    			RewriteHeaders: pulumi.String("string"),
    		},
    	},
    	RewriteLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CaFile:             pulumi.String("string"),
    	SigningCert:        pulumi.String("string"),
    	SigningKey:         pulumi.String("string"),
    	SigningKeyPassword: pulumi.String("string"),
    	SplitTunneling:     pulumi.String("string"),
    })
    
    var profileRewriteResource = new ProfileRewrite("profileRewriteResource", ProfileRewriteArgs.builder()        
        .name("string")
        .rewriteMode("string")
        .cookieRules(ProfileRewriteCookieRuleArgs.builder()
            .clientDomain("string")
            .clientPath("string")
            .ruleName("string")
            .serverDomain("string")
            .serverPath("string")
            .build())
        .bypassLists("string")
        .crlFile("string")
        .defaultsFrom("string")
        .cacheType("string")
        .requests(ProfileRewriteRequestArgs.builder()
            .insertXfwdFor("string")
            .insertXfwdHost("string")
            .insertXfwdProtocol("string")
            .rewriteHeaders("string")
            .build())
        .responses(ProfileRewriteResponseArgs.builder()
            .rewriteContent("string")
            .rewriteHeaders("string")
            .build())
        .rewriteLists("string")
        .caFile("string")
        .signingCert("string")
        .signingKey("string")
        .signingKeyPassword("string")
        .splitTunneling("string")
        .build());
    
    profile_rewrite_resource = f5bigip.ltm.ProfileRewrite("profileRewriteResource",
        name="string",
        rewrite_mode="string",
        cookie_rules=[f5bigip.ltm.ProfileRewriteCookieRuleArgs(
            client_domain="string",
            client_path="string",
            rule_name="string",
            server_domain="string",
            server_path="string",
        )],
        bypass_lists=["string"],
        crl_file="string",
        defaults_from="string",
        cache_type="string",
        requests=[f5bigip.ltm.ProfileRewriteRequestArgs(
            insert_xfwd_for="string",
            insert_xfwd_host="string",
            insert_xfwd_protocol="string",
            rewrite_headers="string",
        )],
        responses=[f5bigip.ltm.ProfileRewriteResponseArgs(
            rewrite_content="string",
            rewrite_headers="string",
        )],
        rewrite_lists=["string"],
        ca_file="string",
        signing_cert="string",
        signing_key="string",
        signing_key_password="string",
        split_tunneling="string")
    
    const profileRewriteResource = new f5bigip.ltm.ProfileRewrite("profileRewriteResource", {
        name: "string",
        rewriteMode: "string",
        cookieRules: [{
            clientDomain: "string",
            clientPath: "string",
            ruleName: "string",
            serverDomain: "string",
            serverPath: "string",
        }],
        bypassLists: ["string"],
        crlFile: "string",
        defaultsFrom: "string",
        cacheType: "string",
        requests: [{
            insertXfwdFor: "string",
            insertXfwdHost: "string",
            insertXfwdProtocol: "string",
            rewriteHeaders: "string",
        }],
        responses: [{
            rewriteContent: "string",
            rewriteHeaders: "string",
        }],
        rewriteLists: ["string"],
        caFile: "string",
        signingCert: "string",
        signingKey: "string",
        signingKeyPassword: "string",
        splitTunneling: "string",
    });
    
    type: f5bigip:ltm:ProfileRewrite
    properties:
        bypassLists:
            - string
        caFile: string
        cacheType: string
        cookieRules:
            - clientDomain: string
              clientPath: string
              ruleName: string
              serverDomain: string
              serverPath: string
        crlFile: string
        defaultsFrom: string
        name: string
        requests:
            - insertXfwdFor: string
              insertXfwdHost: string
              insertXfwdProtocol: string
              rewriteHeaders: string
        responses:
            - rewriteContent: string
              rewriteHeaders: string
        rewriteLists:
            - string
        rewriteMode: string
        signingCert: string
        signingKey: string
        signingKeyPassword: string
        splitTunneling: string
    

    ProfileRewrite 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 ProfileRewrite resource accepts the following input properties:

    Name string
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    RewriteMode string
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    BypassLists List<string>
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    CaFile string
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    CacheType string
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    CookieRules List<Pulumi.F5BigIP.Ltm.Inputs.ProfileRewriteCookieRule>
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    CrlFile string
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    DefaultsFrom string
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    Requests List<Pulumi.F5BigIP.Ltm.Inputs.ProfileRewriteRequest>
    Block type. Each request is block type with following arguments.
    Responses List<Pulumi.F5BigIP.Ltm.Inputs.ProfileRewriteResponse>
    Block type. Each request is block type with following arguments.
    RewriteLists List<string>
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    SigningCert string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    SigningKey string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    SigningKeyPassword string
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    SplitTunneling string
    Specifies the type of Client caching. Valid choices are: true, false
    Name string
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    RewriteMode string
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    BypassLists []string
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    CaFile string
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    CacheType string
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    CookieRules []ProfileRewriteCookieRuleArgs
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    CrlFile string
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    DefaultsFrom string
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    Requests []ProfileRewriteRequestArgs
    Block type. Each request is block type with following arguments.
    Responses []ProfileRewriteResponseArgs
    Block type. Each request is block type with following arguments.
    RewriteLists []string
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    SigningCert string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    SigningKey string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    SigningKeyPassword string
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    SplitTunneling string
    Specifies the type of Client caching. Valid choices are: true, false
    name String
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    rewriteMode String
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    bypassLists List<String>
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    caFile String
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cacheType String
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookieRules List<ProfileRewriteCookieRule>
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crlFile String
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaultsFrom String
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    requests List<ProfileRewriteRequest>
    Block type. Each request is block type with following arguments.
    responses List<ProfileRewriteResponse>
    Block type. Each request is block type with following arguments.
    rewriteLists List<String>
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    signingCert String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signingKey String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signingKeyPassword String
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    splitTunneling String
    Specifies the type of Client caching. Valid choices are: true, false
    name string
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    rewriteMode string
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    bypassLists string[]
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    caFile string
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cacheType string
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookieRules ProfileRewriteCookieRule[]
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crlFile string
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaultsFrom string
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    requests ProfileRewriteRequest[]
    Block type. Each request is block type with following arguments.
    responses ProfileRewriteResponse[]
    Block type. Each request is block type with following arguments.
    rewriteLists string[]
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    signingCert string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signingKey string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signingKeyPassword string
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    splitTunneling string
    Specifies the type of Client caching. Valid choices are: true, false
    name str
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    rewrite_mode str
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    bypass_lists Sequence[str]
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    ca_file str
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cache_type str
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookie_rules Sequence[ProfileRewriteCookieRuleArgs]
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crl_file str
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaults_from str
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    requests Sequence[ProfileRewriteRequestArgs]
    Block type. Each request is block type with following arguments.
    responses Sequence[ProfileRewriteResponseArgs]
    Block type. Each request is block type with following arguments.
    rewrite_lists Sequence[str]
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    signing_cert str
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signing_key str
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signing_key_password str
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    split_tunneling str
    Specifies the type of Client caching. Valid choices are: true, false
    name String
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    rewriteMode String
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    bypassLists List<String>
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    caFile String
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cacheType String
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookieRules List<Property Map>
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crlFile String
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaultsFrom String
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    requests List<Property Map>
    Block type. Each request is block type with following arguments.
    responses List<Property Map>
    Block type. Each request is block type with following arguments.
    rewriteLists List<String>
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    signingCert String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signingKey String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signingKeyPassword String
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    splitTunneling String
    Specifies the type of Client caching. Valid choices are: true, false

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProfileRewrite 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 ProfileRewrite Resource

    Get an existing ProfileRewrite 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?: ProfileRewriteState, opts?: CustomResourceOptions): ProfileRewrite
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bypass_lists: Optional[Sequence[str]] = None,
            ca_file: Optional[str] = None,
            cache_type: Optional[str] = None,
            cookie_rules: Optional[Sequence[ProfileRewriteCookieRuleArgs]] = None,
            crl_file: Optional[str] = None,
            defaults_from: Optional[str] = None,
            name: Optional[str] = None,
            requests: Optional[Sequence[ProfileRewriteRequestArgs]] = None,
            responses: Optional[Sequence[ProfileRewriteResponseArgs]] = None,
            rewrite_lists: Optional[Sequence[str]] = None,
            rewrite_mode: Optional[str] = None,
            signing_cert: Optional[str] = None,
            signing_key: Optional[str] = None,
            signing_key_password: Optional[str] = None,
            split_tunneling: Optional[str] = None) -> ProfileRewrite
    func GetProfileRewrite(ctx *Context, name string, id IDInput, state *ProfileRewriteState, opts ...ResourceOption) (*ProfileRewrite, error)
    public static ProfileRewrite Get(string name, Input<string> id, ProfileRewriteState? state, CustomResourceOptions? opts = null)
    public static ProfileRewrite get(String name, Output<String> id, ProfileRewriteState 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.
    The following state arguments are supported:
    BypassLists List<string>
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    CaFile string
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    CacheType string
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    CookieRules List<Pulumi.F5BigIP.Ltm.Inputs.ProfileRewriteCookieRule>
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    CrlFile string
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    DefaultsFrom string
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    Name string
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    Requests List<Pulumi.F5BigIP.Ltm.Inputs.ProfileRewriteRequest>
    Block type. Each request is block type with following arguments.
    Responses List<Pulumi.F5BigIP.Ltm.Inputs.ProfileRewriteResponse>
    Block type. Each request is block type with following arguments.
    RewriteLists List<string>
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    RewriteMode string
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    SigningCert string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    SigningKey string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    SigningKeyPassword string
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    SplitTunneling string
    Specifies the type of Client caching. Valid choices are: true, false
    BypassLists []string
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    CaFile string
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    CacheType string
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    CookieRules []ProfileRewriteCookieRuleArgs
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    CrlFile string
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    DefaultsFrom string
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    Name string
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    Requests []ProfileRewriteRequestArgs
    Block type. Each request is block type with following arguments.
    Responses []ProfileRewriteResponseArgs
    Block type. Each request is block type with following arguments.
    RewriteLists []string
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    RewriteMode string
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    SigningCert string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    SigningKey string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    SigningKeyPassword string
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    SplitTunneling string
    Specifies the type of Client caching. Valid choices are: true, false
    bypassLists List<String>
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    caFile String
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cacheType String
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookieRules List<ProfileRewriteCookieRule>
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crlFile String
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaultsFrom String
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    name String
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    requests List<ProfileRewriteRequest>
    Block type. Each request is block type with following arguments.
    responses List<ProfileRewriteResponse>
    Block type. Each request is block type with following arguments.
    rewriteLists List<String>
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    rewriteMode String
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    signingCert String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signingKey String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signingKeyPassword String
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    splitTunneling String
    Specifies the type of Client caching. Valid choices are: true, false
    bypassLists string[]
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    caFile string
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cacheType string
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookieRules ProfileRewriteCookieRule[]
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crlFile string
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaultsFrom string
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    name string
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    requests ProfileRewriteRequest[]
    Block type. Each request is block type with following arguments.
    responses ProfileRewriteResponse[]
    Block type. Each request is block type with following arguments.
    rewriteLists string[]
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    rewriteMode string
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    signingCert string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signingKey string
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signingKeyPassword string
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    splitTunneling string
    Specifies the type of Client caching. Valid choices are: true, false
    bypass_lists Sequence[str]
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    ca_file str
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cache_type str
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookie_rules Sequence[ProfileRewriteCookieRuleArgs]
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crl_file str
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaults_from str
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    name str
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    requests Sequence[ProfileRewriteRequestArgs]
    Block type. Each request is block type with following arguments.
    responses Sequence[ProfileRewriteResponseArgs]
    Block type. Each request is block type with following arguments.
    rewrite_lists Sequence[str]
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    rewrite_mode str
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    signing_cert str
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signing_key str
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signing_key_password str
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    split_tunneling str
    Specifies the type of Client caching. Valid choices are: true, false
    bypassLists List<String>
    Specifies a list of URIs to bypass inside a web page when the page is accessed using Portal Access.
    caFile String
    Specifies a CA against which to verify signed Java applets signatures. (name should be in full path which is combination of partition and CA file name )
    cacheType String
    Specifies the type of Client caching. Valid choices are: cache-css-js, cache-all, no-cache, cache-img-css-js. Default value: cache-img-css-js
    cookieRules List<Property Map>
    Specifies the cookie rewrite rules. Block type. Each request is block type with following arguments.
    crlFile String
    Specifies a CRL against which to verify signed Java applets signature certificates. The default option is none.
    defaultsFrom String
    Specifies the profile from which this profile inherits settings. The default is the system-supplied rewrite profile.
    name String
    Name of the rewrite profile. ( profile name should be in full path which is combination of partition and profile name )
    requests List<Property Map>
    Block type. Each request is block type with following arguments.
    responses List<Property Map>
    Block type. Each request is block type with following arguments.
    rewriteLists List<String>
    Specifies a list of URIs to rewrite inside a web page when the page is accessed using Portal Access.
    rewriteMode String
    Specifies the type of Client caching. Valid choices are: portal, uri-translation
    signingCert String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and certificate name )
    signingKey String
    Specifies a certificate to use for re-signing of signed Java applets after patching. (name should be in full path which is combination of partition and key name )
    signingKeyPassword String
    Specifies a pass phrase to use for encrypting the private signing key. Since it's a sensitive entity idempotency will fail in the update call.
    splitTunneling String
    Specifies the type of Client caching. Valid choices are: true, false

    Supporting Types

    ProfileRewriteCookieRule, ProfileRewriteCookieRuleArgs

    ClientDomain string
    ClientPath string
    RuleName string
    Name of the cookie rewrite rule.
    ServerDomain string
    ServerPath string
    ClientDomain string
    ClientPath string
    RuleName string
    Name of the cookie rewrite rule.
    ServerDomain string
    ServerPath string
    clientDomain String
    clientPath String
    ruleName String
    Name of the cookie rewrite rule.
    serverDomain String
    serverPath String
    clientDomain string
    clientPath string
    ruleName string
    Name of the cookie rewrite rule.
    serverDomain string
    serverPath string
    client_domain str
    client_path str
    rule_name str
    Name of the cookie rewrite rule.
    server_domain str
    server_path str
    clientDomain String
    clientPath String
    ruleName String
    Name of the cookie rewrite rule.
    serverDomain String
    serverPath String

    ProfileRewriteRequest, ProfileRewriteRequestArgs

    InsertXfwdFor string
    Enable to add the X-Forwarded For (XFF) header, to specify the originating IP address of the client. Valid choices are: enabled, disabled
    InsertXfwdHost string
    Enable to add the X-Forwarded Host header, to specify the originating host of the client. Valid choices are: enabled, disabled
    InsertXfwdProtocol string
    Enable to add the X-Forwarded Proto header, to specify the originating protocol of the client. Valid choices are: enabled, disabled
    RewriteHeaders string
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    InsertXfwdFor string
    Enable to add the X-Forwarded For (XFF) header, to specify the originating IP address of the client. Valid choices are: enabled, disabled
    InsertXfwdHost string
    Enable to add the X-Forwarded Host header, to specify the originating host of the client. Valid choices are: enabled, disabled
    InsertXfwdProtocol string
    Enable to add the X-Forwarded Proto header, to specify the originating protocol of the client. Valid choices are: enabled, disabled
    RewriteHeaders string
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    insertXfwdFor String
    Enable to add the X-Forwarded For (XFF) header, to specify the originating IP address of the client. Valid choices are: enabled, disabled
    insertXfwdHost String
    Enable to add the X-Forwarded Host header, to specify the originating host of the client. Valid choices are: enabled, disabled
    insertXfwdProtocol String
    Enable to add the X-Forwarded Proto header, to specify the originating protocol of the client. Valid choices are: enabled, disabled
    rewriteHeaders String
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    insertXfwdFor string
    Enable to add the X-Forwarded For (XFF) header, to specify the originating IP address of the client. Valid choices are: enabled, disabled
    insertXfwdHost string
    Enable to add the X-Forwarded Host header, to specify the originating host of the client. Valid choices are: enabled, disabled
    insertXfwdProtocol string
    Enable to add the X-Forwarded Proto header, to specify the originating protocol of the client. Valid choices are: enabled, disabled
    rewriteHeaders string
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    insert_xfwd_for str
    Enable to add the X-Forwarded For (XFF) header, to specify the originating IP address of the client. Valid choices are: enabled, disabled
    insert_xfwd_host str
    Enable to add the X-Forwarded Host header, to specify the originating host of the client. Valid choices are: enabled, disabled
    insert_xfwd_protocol str
    Enable to add the X-Forwarded Proto header, to specify the originating protocol of the client. Valid choices are: enabled, disabled
    rewrite_headers str
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    insertXfwdFor String
    Enable to add the X-Forwarded For (XFF) header, to specify the originating IP address of the client. Valid choices are: enabled, disabled
    insertXfwdHost String
    Enable to add the X-Forwarded Host header, to specify the originating host of the client. Valid choices are: enabled, disabled
    insertXfwdProtocol String
    Enable to add the X-Forwarded Proto header, to specify the originating protocol of the client. Valid choices are: enabled, disabled
    rewriteHeaders String
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled

    ProfileRewriteResponse, ProfileRewriteResponseArgs

    RewriteContent string
    Enable to rewrite links in content in the response. Valid choices are: enabled, disabled
    RewriteHeaders string
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    RewriteContent string
    Enable to rewrite links in content in the response. Valid choices are: enabled, disabled
    RewriteHeaders string
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    rewriteContent String
    Enable to rewrite links in content in the response. Valid choices are: enabled, disabled
    rewriteHeaders String
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    rewriteContent string
    Enable to rewrite links in content in the response. Valid choices are: enabled, disabled
    rewriteHeaders string
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    rewrite_content str
    Enable to rewrite links in content in the response. Valid choices are: enabled, disabled
    rewrite_headers str
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled
    rewriteContent String
    Enable to rewrite links in content in the response. Valid choices are: enabled, disabled
    rewriteHeaders String
    Enable to rewrite headers in the response. Valid choices are: enabled, disabled

    Package Details

    Repository
    f5 BIG-IP pulumi/pulumi-f5bigip
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the bigip Terraform Provider.
    f5bigip logo
    f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi