1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. esa
  5. HttpResponseHeaderModificationRule
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.esa.HttpResponseHeaderModificationRule

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a ESA Http Response Header Modification Rule resource.

    For information about ESA Http Response Header Modification Rule and how to use it, see What is Http Response Header Modification Rule.

    NOTE: Available since v1.243.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const resourceHttpResponseHeaderModificationRuleExample = new alicloud.esa.RatePlanInstance("resource_HttpResponseHeaderModificationRule_example", {
        type: "NS",
        autoRenew: false,
        period: 1,
        paymentType: "Subscription",
        coverage: "overseas",
        autoPay: true,
        planName: "high",
    });
    const resourceSiteHttpResponseHeaderModificationRuleExample = new alicloud.esa.Site("resource_Site_HttpResponseHeaderModificationRule_example", {
        siteName: "gositecdn.cn",
        instanceId: resourceHttpResponseHeaderModificationRuleExample.id,
        coverage: "overseas",
        accessType: "NS",
    });
    const _default = new alicloud.esa.HttpResponseHeaderModificationRule("default", {
        ruleEnable: "on",
        responseHeaderModifications: [
            {
                value: "add",
                operation: "add",
                name: "exampleadd",
            },
            {
                operation: "del",
                name: "exampledel",
            },
            {
                operation: "modify",
                name: "examplemodify",
                value: "modify",
            },
        ],
        rule: "(http.host eq \"video.example.com\")",
        siteVersion: 0,
        ruleName: "exampleResponseHeader",
        siteId: resourceSiteHttpResponseHeaderModificationRuleExample.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    resource_http_response_header_modification_rule_example = alicloud.esa.RatePlanInstance("resource_HttpResponseHeaderModificationRule_example",
        type="NS",
        auto_renew=False,
        period=1,
        payment_type="Subscription",
        coverage="overseas",
        auto_pay=True,
        plan_name="high")
    resource_site_http_response_header_modification_rule_example = alicloud.esa.Site("resource_Site_HttpResponseHeaderModificationRule_example",
        site_name="gositecdn.cn",
        instance_id=resource_http_response_header_modification_rule_example.id,
        coverage="overseas",
        access_type="NS")
    default = alicloud.esa.HttpResponseHeaderModificationRule("default",
        rule_enable="on",
        response_header_modifications=[
            {
                "value": "add",
                "operation": "add",
                "name": "exampleadd",
            },
            {
                "operation": "del",
                "name": "exampledel",
            },
            {
                "operation": "modify",
                "name": "examplemodify",
                "value": "modify",
            },
        ],
        rule="(http.host eq \"video.example.com\")",
        site_version=0,
        rule_name="exampleResponseHeader",
        site_id=resource_site_http_response_header_modification_rule_example.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		resourceHttpResponseHeaderModificationRuleExample, err := esa.NewRatePlanInstance(ctx, "resource_HttpResponseHeaderModificationRule_example", &esa.RatePlanInstanceArgs{
    			Type:        pulumi.String("NS"),
    			AutoRenew:   pulumi.Bool(false),
    			Period:      pulumi.Int(1),
    			PaymentType: pulumi.String("Subscription"),
    			Coverage:    pulumi.String("overseas"),
    			AutoPay:     pulumi.Bool(true),
    			PlanName:    pulumi.String("high"),
    		})
    		if err != nil {
    			return err
    		}
    		resourceSiteHttpResponseHeaderModificationRuleExample, err := esa.NewSite(ctx, "resource_Site_HttpResponseHeaderModificationRule_example", &esa.SiteArgs{
    			SiteName:   pulumi.String("gositecdn.cn"),
    			InstanceId: resourceHttpResponseHeaderModificationRuleExample.ID(),
    			Coverage:   pulumi.String("overseas"),
    			AccessType: pulumi.String("NS"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = esa.NewHttpResponseHeaderModificationRule(ctx, "default", &esa.HttpResponseHeaderModificationRuleArgs{
    			RuleEnable: pulumi.String("on"),
    			ResponseHeaderModifications: esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArray{
    				&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
    					Value:     pulumi.String("add"),
    					Operation: pulumi.String("add"),
    					Name:      pulumi.String("exampleadd"),
    				},
    				&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
    					Operation: pulumi.String("del"),
    					Name:      pulumi.String("exampledel"),
    				},
    				&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
    					Operation: pulumi.String("modify"),
    					Name:      pulumi.String("examplemodify"),
    					Value:     pulumi.String("modify"),
    				},
    			},
    			Rule:        pulumi.String("(http.host eq \"video.example.com\")"),
    			SiteVersion: pulumi.Int(0),
    			RuleName:    pulumi.String("exampleResponseHeader"),
    			SiteId:      resourceSiteHttpResponseHeaderModificationRuleExample.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var resourceHttpResponseHeaderModificationRuleExample = new AliCloud.Esa.RatePlanInstance("resource_HttpResponseHeaderModificationRule_example", new()
        {
            Type = "NS",
            AutoRenew = false,
            Period = 1,
            PaymentType = "Subscription",
            Coverage = "overseas",
            AutoPay = true,
            PlanName = "high",
        });
    
        var resourceSiteHttpResponseHeaderModificationRuleExample = new AliCloud.Esa.Site("resource_Site_HttpResponseHeaderModificationRule_example", new()
        {
            SiteName = "gositecdn.cn",
            InstanceId = resourceHttpResponseHeaderModificationRuleExample.Id,
            Coverage = "overseas",
            AccessType = "NS",
        });
    
        var @default = new AliCloud.Esa.HttpResponseHeaderModificationRule("default", new()
        {
            RuleEnable = "on",
            ResponseHeaderModifications = new[]
            {
                new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
                {
                    Value = "add",
                    Operation = "add",
                    Name = "exampleadd",
                },
                new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
                {
                    Operation = "del",
                    Name = "exampledel",
                },
                new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
                {
                    Operation = "modify",
                    Name = "examplemodify",
                    Value = "modify",
                },
            },
            Rule = "(http.host eq \"video.example.com\")",
            SiteVersion = 0,
            RuleName = "exampleResponseHeader",
            SiteId = resourceSiteHttpResponseHeaderModificationRuleExample.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.esa.RatePlanInstance;
    import com.pulumi.alicloud.esa.RatePlanInstanceArgs;
    import com.pulumi.alicloud.esa.Site;
    import com.pulumi.alicloud.esa.SiteArgs;
    import com.pulumi.alicloud.esa.HttpResponseHeaderModificationRule;
    import com.pulumi.alicloud.esa.HttpResponseHeaderModificationRuleArgs;
    import com.pulumi.alicloud.esa.inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs;
    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) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            var resourceHttpResponseHeaderModificationRuleExample = new RatePlanInstance("resourceHttpResponseHeaderModificationRuleExample", RatePlanInstanceArgs.builder()
                .type("NS")
                .autoRenew("false")
                .period("1")
                .paymentType("Subscription")
                .coverage("overseas")
                .autoPay("true")
                .planName("high")
                .build());
    
            var resourceSiteHttpResponseHeaderModificationRuleExample = new Site("resourceSiteHttpResponseHeaderModificationRuleExample", SiteArgs.builder()
                .siteName("gositecdn.cn")
                .instanceId(resourceHttpResponseHeaderModificationRuleExample.id())
                .coverage("overseas")
                .accessType("NS")
                .build());
    
            var default_ = new HttpResponseHeaderModificationRule("default", HttpResponseHeaderModificationRuleArgs.builder()
                .ruleEnable("on")
                .responseHeaderModifications(            
                    HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
                        .value("add")
                        .operation("add")
                        .name("exampleadd")
                        .build(),
                    HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
                        .operation("del")
                        .name("exampledel")
                        .build(),
                    HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
                        .operation("modify")
                        .name("examplemodify")
                        .value("modify")
                        .build())
                .rule("(http.host eq \"video.example.com\")")
                .siteVersion("0")
                .ruleName("exampleResponseHeader")
                .siteId(resourceSiteHttpResponseHeaderModificationRuleExample.id())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      resourceHttpResponseHeaderModificationRuleExample:
        type: alicloud:esa:RatePlanInstance
        name: resource_HttpResponseHeaderModificationRule_example
        properties:
          type: NS
          autoRenew: 'false'
          period: '1'
          paymentType: Subscription
          coverage: overseas
          autoPay: 'true'
          planName: high
      resourceSiteHttpResponseHeaderModificationRuleExample:
        type: alicloud:esa:Site
        name: resource_Site_HttpResponseHeaderModificationRule_example
        properties:
          siteName: gositecdn.cn
          instanceId: ${resourceHttpResponseHeaderModificationRuleExample.id}
          coverage: overseas
          accessType: NS
      default:
        type: alicloud:esa:HttpResponseHeaderModificationRule
        properties:
          ruleEnable: on
          responseHeaderModifications:
            - value: add
              operation: add
              name: exampleadd
            - operation: del
              name: exampledel
            - operation: modify
              name: examplemodify
              value: modify
          rule: (http.host eq "video.example.com")
          siteVersion: '0'
          ruleName: exampleResponseHeader
          siteId: ${resourceSiteHttpResponseHeaderModificationRuleExample.id}
    

    Create HttpResponseHeaderModificationRule Resource

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

    Constructor syntax

    new HttpResponseHeaderModificationRule(name: string, args: HttpResponseHeaderModificationRuleArgs, opts?: CustomResourceOptions);
    @overload
    def HttpResponseHeaderModificationRule(resource_name: str,
                                           args: HttpResponseHeaderModificationRuleArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def HttpResponseHeaderModificationRule(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           response_header_modifications: Optional[Sequence[HttpResponseHeaderModificationRuleResponseHeaderModificationArgs]] = None,
                                           site_id: Optional[int] = None,
                                           rule: Optional[str] = None,
                                           rule_enable: Optional[str] = None,
                                           rule_name: Optional[str] = None,
                                           site_version: Optional[int] = None)
    func NewHttpResponseHeaderModificationRule(ctx *Context, name string, args HttpResponseHeaderModificationRuleArgs, opts ...ResourceOption) (*HttpResponseHeaderModificationRule, error)
    public HttpResponseHeaderModificationRule(string name, HttpResponseHeaderModificationRuleArgs args, CustomResourceOptions? opts = null)
    public HttpResponseHeaderModificationRule(String name, HttpResponseHeaderModificationRuleArgs args)
    public HttpResponseHeaderModificationRule(String name, HttpResponseHeaderModificationRuleArgs args, CustomResourceOptions options)
    
    type: alicloud:esa:HttpResponseHeaderModificationRule
    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 HttpResponseHeaderModificationRuleArgs
    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 HttpResponseHeaderModificationRuleArgs
    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 HttpResponseHeaderModificationRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HttpResponseHeaderModificationRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HttpResponseHeaderModificationRuleArgs
    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 httpResponseHeaderModificationRuleResource = new AliCloud.Esa.HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource", new()
    {
        ResponseHeaderModifications = new[]
        {
            new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
            {
                Name = "string",
                Operation = "string",
                Value = "string",
            },
        },
        SiteId = 0,
        Rule = "string",
        RuleEnable = "string",
        RuleName = "string",
        SiteVersion = 0,
    });
    
    example, err := esa.NewHttpResponseHeaderModificationRule(ctx, "httpResponseHeaderModificationRuleResource", &esa.HttpResponseHeaderModificationRuleArgs{
    	ResponseHeaderModifications: esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArray{
    		&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
    			Name:      pulumi.String("string"),
    			Operation: pulumi.String("string"),
    			Value:     pulumi.String("string"),
    		},
    	},
    	SiteId:      pulumi.Int(0),
    	Rule:        pulumi.String("string"),
    	RuleEnable:  pulumi.String("string"),
    	RuleName:    pulumi.String("string"),
    	SiteVersion: pulumi.Int(0),
    })
    
    var httpResponseHeaderModificationRuleResource = new HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource", HttpResponseHeaderModificationRuleArgs.builder()
        .responseHeaderModifications(HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
            .name("string")
            .operation("string")
            .value("string")
            .build())
        .siteId(0)
        .rule("string")
        .ruleEnable("string")
        .ruleName("string")
        .siteVersion(0)
        .build());
    
    http_response_header_modification_rule_resource = alicloud.esa.HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource",
        response_header_modifications=[{
            "name": "string",
            "operation": "string",
            "value": "string",
        }],
        site_id=0,
        rule="string",
        rule_enable="string",
        rule_name="string",
        site_version=0)
    
    const httpResponseHeaderModificationRuleResource = new alicloud.esa.HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource", {
        responseHeaderModifications: [{
            name: "string",
            operation: "string",
            value: "string",
        }],
        siteId: 0,
        rule: "string",
        ruleEnable: "string",
        ruleName: "string",
        siteVersion: 0,
    });
    
    type: alicloud:esa:HttpResponseHeaderModificationRule
    properties:
        responseHeaderModifications:
            - name: string
              operation: string
              value: string
        rule: string
        ruleEnable: string
        ruleName: string
        siteId: 0
        siteVersion: 0
    

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

    ResponseHeaderModifications List<Pulumi.AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModification>
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    The rule name.
    SiteVersion int
    The version number of the website configurations.
    ResponseHeaderModifications []HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    The rule name.
    SiteVersion int
    The version number of the website configurations.
    responseHeaderModifications List<HttpResponseHeaderModificationRuleResponseHeaderModification>
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    siteId Integer
    The site ID, which can be obtained by calling the ListSites API.
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    The rule name.
    siteVersion Integer
    The version number of the website configurations.
    responseHeaderModifications HttpResponseHeaderModificationRuleResponseHeaderModification[]
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    siteId number
    The site ID, which can be obtained by calling the ListSites API.
    rule string
    The rule content.
    ruleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName string
    The rule name.
    siteVersion number
    The version number of the website configurations.
    response_header_modifications Sequence[HttpResponseHeaderModificationRuleResponseHeaderModificationArgs]
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    site_id int
    The site ID, which can be obtained by calling the ListSites API.
    rule str
    The rule content.
    rule_enable str
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    rule_name str
    The rule name.
    site_version int
    The version number of the website configurations.
    responseHeaderModifications List<Property Map>
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    siteId Number
    The site ID, which can be obtained by calling the ListSites API.
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    The rule name.
    siteVersion Number
    The version number of the website configurations.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the HttpResponseHeaderModificationRule resource produces the following output properties:

    ConfigId int
    Config Id
    Id string
    The provider-assigned unique ID for this managed resource.
    ConfigId int
    Config Id
    Id string
    The provider-assigned unique ID for this managed resource.
    configId Integer
    Config Id
    id String
    The provider-assigned unique ID for this managed resource.
    configId number
    Config Id
    id string
    The provider-assigned unique ID for this managed resource.
    config_id int
    Config Id
    id str
    The provider-assigned unique ID for this managed resource.
    configId Number
    Config Id
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing HttpResponseHeaderModificationRule Resource

    Get an existing HttpResponseHeaderModificationRule 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?: HttpResponseHeaderModificationRuleState, opts?: CustomResourceOptions): HttpResponseHeaderModificationRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config_id: Optional[int] = None,
            response_header_modifications: Optional[Sequence[HttpResponseHeaderModificationRuleResponseHeaderModificationArgs]] = None,
            rule: Optional[str] = None,
            rule_enable: Optional[str] = None,
            rule_name: Optional[str] = None,
            site_id: Optional[int] = None,
            site_version: Optional[int] = None) -> HttpResponseHeaderModificationRule
    func GetHttpResponseHeaderModificationRule(ctx *Context, name string, id IDInput, state *HttpResponseHeaderModificationRuleState, opts ...ResourceOption) (*HttpResponseHeaderModificationRule, error)
    public static HttpResponseHeaderModificationRule Get(string name, Input<string> id, HttpResponseHeaderModificationRuleState? state, CustomResourceOptions? opts = null)
    public static HttpResponseHeaderModificationRule get(String name, Output<String> id, HttpResponseHeaderModificationRuleState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:esa:HttpResponseHeaderModificationRule    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ConfigId int
    Config Id
    ResponseHeaderModifications List<Pulumi.AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModification>
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    The rule name.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    SiteVersion int
    The version number of the website configurations.
    ConfigId int
    Config Id
    ResponseHeaderModifications []HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    The rule name.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    SiteVersion int
    The version number of the website configurations.
    configId Integer
    Config Id
    responseHeaderModifications List<HttpResponseHeaderModificationRuleResponseHeaderModification>
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    The rule name.
    siteId Integer
    The site ID, which can be obtained by calling the ListSites API.
    siteVersion Integer
    The version number of the website configurations.
    configId number
    Config Id
    responseHeaderModifications HttpResponseHeaderModificationRuleResponseHeaderModification[]
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    rule string
    The rule content.
    ruleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName string
    The rule name.
    siteId number
    The site ID, which can be obtained by calling the ListSites API.
    siteVersion number
    The version number of the website configurations.
    config_id int
    Config Id
    response_header_modifications Sequence[HttpResponseHeaderModificationRuleResponseHeaderModificationArgs]
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    rule str
    The rule content.
    rule_enable str
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    rule_name str
    The rule name.
    site_id int
    The site ID, which can be obtained by calling the ListSites API.
    site_version int
    The version number of the website configurations.
    configId Number
    Config Id
    responseHeaderModifications List<Property Map>
    The configurations of modifying response headers. You can add, delete, or modify a response header. See response_header_modification below.
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    The rule name.
    siteId Number
    The site ID, which can be obtained by calling the ListSites API.
    siteVersion Number
    The version number of the website configurations.

    Supporting Types

    HttpResponseHeaderModificationRuleResponseHeaderModification, HttpResponseHeaderModificationRuleResponseHeaderModificationArgs

    Name string
    The response header name.
    Operation string
    Mode of operation.
    Value string
    The response header value.
    Name string
    The response header name.
    Operation string
    Mode of operation.
    Value string
    The response header value.
    name String
    The response header name.
    operation String
    Mode of operation.
    value String
    The response header value.
    name string
    The response header name.
    operation string
    Mode of operation.
    value string
    The response header value.
    name str
    The response header name.
    operation str
    Mode of operation.
    value str
    The response header value.
    name String
    The response header name.
    operation String
    Mode of operation.
    value String
    The response header value.

    Import

    ESA Http Response Header Modification Rule can be imported using the id, e.g.

    $ pulumi import alicloud:esa/httpResponseHeaderModificationRule:HttpResponseHeaderModificationRule example <site_id>:<config_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi