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

alicloud.esa.RewriteUrlRule

Explore with Pulumi AI

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

    Provides a ESA Rewrite Url Rule resource.

    For information about ESA Rewrite Url Rule and how to use it, see What is Rewrite Url 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 resourceRewriteUrlRuleRatePlanInstanceExample = new alicloud.esa.RatePlanInstance("resource_RewriteUrlRule_RatePlanInstance_example", {
        type: "NS",
        autoRenew: false,
        period: 1,
        paymentType: "Subscription",
        coverage: "overseas",
        autoPay: true,
        planName: "high",
    });
    const resourceRewriteUrlRuleSiteExample = new alicloud.esa.Site("resource_RewriteUrlRule_Site_example", {
        siteName: "gositecdn.cn",
        instanceId: resourceRewriteUrlRuleRatePlanInstanceExample.id,
        coverage: "overseas",
        accessType: "NS",
    });
    const _default = new alicloud.esa.RewriteUrlRule("default", {
        rewriteUriType: "static",
        rewriteQueryStringType: "static",
        siteId: resourceRewriteUrlRuleSiteExample.id,
        ruleName: "example",
        ruleEnable: "on",
        queryString: "example=123",
        siteVersion: 0,
        rule: "http.host eq \"video.example.com\"",
        uri: "/image/example.jpg",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    resource_rewrite_url_rule_rate_plan_instance_example = alicloud.esa.RatePlanInstance("resource_RewriteUrlRule_RatePlanInstance_example",
        type="NS",
        auto_renew=False,
        period=1,
        payment_type="Subscription",
        coverage="overseas",
        auto_pay=True,
        plan_name="high")
    resource_rewrite_url_rule_site_example = alicloud.esa.Site("resource_RewriteUrlRule_Site_example",
        site_name="gositecdn.cn",
        instance_id=resource_rewrite_url_rule_rate_plan_instance_example.id,
        coverage="overseas",
        access_type="NS")
    default = alicloud.esa.RewriteUrlRule("default",
        rewrite_uri_type="static",
        rewrite_query_string_type="static",
        site_id=resource_rewrite_url_rule_site_example.id,
        rule_name="example",
        rule_enable="on",
        query_string="example=123",
        site_version=0,
        rule="http.host eq \"video.example.com\"",
        uri="/image/example.jpg")
    
    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
    		}
    		resourceRewriteUrlRuleRatePlanInstanceExample, err := esa.NewRatePlanInstance(ctx, "resource_RewriteUrlRule_RatePlanInstance_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
    		}
    		resourceRewriteUrlRuleSiteExample, err := esa.NewSite(ctx, "resource_RewriteUrlRule_Site_example", &esa.SiteArgs{
    			SiteName:   pulumi.String("gositecdn.cn"),
    			InstanceId: resourceRewriteUrlRuleRatePlanInstanceExample.ID(),
    			Coverage:   pulumi.String("overseas"),
    			AccessType: pulumi.String("NS"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = esa.NewRewriteUrlRule(ctx, "default", &esa.RewriteUrlRuleArgs{
    			RewriteUriType:         pulumi.String("static"),
    			RewriteQueryStringType: pulumi.String("static"),
    			SiteId:                 resourceRewriteUrlRuleSiteExample.ID(),
    			RuleName:               pulumi.String("example"),
    			RuleEnable:             pulumi.String("on"),
    			QueryString:            pulumi.String("example=123"),
    			SiteVersion:            pulumi.Int(0),
    			Rule:                   pulumi.String("http.host eq \"video.example.com\""),
    			Uri:                    pulumi.String("/image/example.jpg"),
    		})
    		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 resourceRewriteUrlRuleRatePlanInstanceExample = new AliCloud.Esa.RatePlanInstance("resource_RewriteUrlRule_RatePlanInstance_example", new()
        {
            Type = "NS",
            AutoRenew = false,
            Period = 1,
            PaymentType = "Subscription",
            Coverage = "overseas",
            AutoPay = true,
            PlanName = "high",
        });
    
        var resourceRewriteUrlRuleSiteExample = new AliCloud.Esa.Site("resource_RewriteUrlRule_Site_example", new()
        {
            SiteName = "gositecdn.cn",
            InstanceId = resourceRewriteUrlRuleRatePlanInstanceExample.Id,
            Coverage = "overseas",
            AccessType = "NS",
        });
    
        var @default = new AliCloud.Esa.RewriteUrlRule("default", new()
        {
            RewriteUriType = "static",
            RewriteQueryStringType = "static",
            SiteId = resourceRewriteUrlRuleSiteExample.Id,
            RuleName = "example",
            RuleEnable = "on",
            QueryString = "example=123",
            SiteVersion = 0,
            Rule = "http.host eq \"video.example.com\"",
            Uri = "/image/example.jpg",
        });
    
    });
    
    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.RewriteUrlRule;
    import com.pulumi.alicloud.esa.RewriteUrlRuleArgs;
    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 resourceRewriteUrlRuleRatePlanInstanceExample = new RatePlanInstance("resourceRewriteUrlRuleRatePlanInstanceExample", RatePlanInstanceArgs.builder()
                .type("NS")
                .autoRenew("false")
                .period("1")
                .paymentType("Subscription")
                .coverage("overseas")
                .autoPay("true")
                .planName("high")
                .build());
    
            var resourceRewriteUrlRuleSiteExample = new Site("resourceRewriteUrlRuleSiteExample", SiteArgs.builder()
                .siteName("gositecdn.cn")
                .instanceId(resourceRewriteUrlRuleRatePlanInstanceExample.id())
                .coverage("overseas")
                .accessType("NS")
                .build());
    
            var default_ = new RewriteUrlRule("default", RewriteUrlRuleArgs.builder()
                .rewriteUriType("static")
                .rewriteQueryStringType("static")
                .siteId(resourceRewriteUrlRuleSiteExample.id())
                .ruleName("example")
                .ruleEnable("on")
                .queryString("example=123")
                .siteVersion("0")
                .rule("http.host eq \"video.example.com\"")
                .uri("/image/example.jpg")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      resourceRewriteUrlRuleRatePlanInstanceExample:
        type: alicloud:esa:RatePlanInstance
        name: resource_RewriteUrlRule_RatePlanInstance_example
        properties:
          type: NS
          autoRenew: 'false'
          period: '1'
          paymentType: Subscription
          coverage: overseas
          autoPay: 'true'
          planName: high
      resourceRewriteUrlRuleSiteExample:
        type: alicloud:esa:Site
        name: resource_RewriteUrlRule_Site_example
        properties:
          siteName: gositecdn.cn
          instanceId: ${resourceRewriteUrlRuleRatePlanInstanceExample.id}
          coverage: overseas
          accessType: NS
      default:
        type: alicloud:esa:RewriteUrlRule
        properties:
          rewriteUriType: static
          rewriteQueryStringType: static
          siteId: ${resourceRewriteUrlRuleSiteExample.id}
          ruleName: example
          ruleEnable: on
          queryString: example=123
          siteVersion: '0'
          rule: http.host eq "video.example.com"
          uri: /image/example.jpg
    

    Create RewriteUrlRule Resource

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

    Constructor syntax

    new RewriteUrlRule(name: string, args: RewriteUrlRuleArgs, opts?: CustomResourceOptions);
    @overload
    def RewriteUrlRule(resource_name: str,
                       args: RewriteUrlRuleArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def RewriteUrlRule(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       site_id: Optional[int] = None,
                       query_string: Optional[str] = None,
                       rewrite_query_string_type: Optional[str] = None,
                       rewrite_uri_type: Optional[str] = None,
                       rule: Optional[str] = None,
                       rule_enable: Optional[str] = None,
                       rule_name: Optional[str] = None,
                       site_version: Optional[int] = None,
                       uri: Optional[str] = None)
    func NewRewriteUrlRule(ctx *Context, name string, args RewriteUrlRuleArgs, opts ...ResourceOption) (*RewriteUrlRule, error)
    public RewriteUrlRule(string name, RewriteUrlRuleArgs args, CustomResourceOptions? opts = null)
    public RewriteUrlRule(String name, RewriteUrlRuleArgs args)
    public RewriteUrlRule(String name, RewriteUrlRuleArgs args, CustomResourceOptions options)
    
    type: alicloud:esa:RewriteUrlRule
    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 RewriteUrlRuleArgs
    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 RewriteUrlRuleArgs
    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 RewriteUrlRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RewriteUrlRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RewriteUrlRuleArgs
    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 rewriteUrlRuleResource = new AliCloud.Esa.RewriteUrlRule("rewriteUrlRuleResource", new()
    {
        SiteId = 0,
        QueryString = "string",
        RewriteQueryStringType = "string",
        RewriteUriType = "string",
        Rule = "string",
        RuleEnable = "string",
        RuleName = "string",
        SiteVersion = 0,
        Uri = "string",
    });
    
    example, err := esa.NewRewriteUrlRule(ctx, "rewriteUrlRuleResource", &esa.RewriteUrlRuleArgs{
    	SiteId:                 pulumi.Int(0),
    	QueryString:            pulumi.String("string"),
    	RewriteQueryStringType: pulumi.String("string"),
    	RewriteUriType:         pulumi.String("string"),
    	Rule:                   pulumi.String("string"),
    	RuleEnable:             pulumi.String("string"),
    	RuleName:               pulumi.String("string"),
    	SiteVersion:            pulumi.Int(0),
    	Uri:                    pulumi.String("string"),
    })
    
    var rewriteUrlRuleResource = new RewriteUrlRule("rewriteUrlRuleResource", RewriteUrlRuleArgs.builder()
        .siteId(0)
        .queryString("string")
        .rewriteQueryStringType("string")
        .rewriteUriType("string")
        .rule("string")
        .ruleEnable("string")
        .ruleName("string")
        .siteVersion(0)
        .uri("string")
        .build());
    
    rewrite_url_rule_resource = alicloud.esa.RewriteUrlRule("rewriteUrlRuleResource",
        site_id=0,
        query_string="string",
        rewrite_query_string_type="string",
        rewrite_uri_type="string",
        rule="string",
        rule_enable="string",
        rule_name="string",
        site_version=0,
        uri="string")
    
    const rewriteUrlRuleResource = new alicloud.esa.RewriteUrlRule("rewriteUrlRuleResource", {
        siteId: 0,
        queryString: "string",
        rewriteQueryStringType: "string",
        rewriteUriType: "string",
        rule: "string",
        ruleEnable: "string",
        ruleName: "string",
        siteVersion: 0,
        uri: "string",
    });
    
    type: alicloud:esa:RewriteUrlRule
    properties:
        queryString: string
        rewriteQueryStringType: string
        rewriteUriType: string
        rule: string
        ruleEnable: string
        ruleName: string
        siteId: 0
        siteVersion: 0
        uri: string
    

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

    SiteId int
    The website ID, which can be obtained by calling the ListSites operation.
    QueryString string
    The desired query string to which you want to rewrite the query string in the original request.
    RewriteQueryStringType string
    The query string rewrite method. Valid value:

    • static
    RewriteUriType string
    The path rewrite method. Valid value:

    • static
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    SiteVersion int
    The version number of the website configurations.
    Uri string
    The desired URI to which you want to rewrite the path in the original request.
    SiteId int
    The website ID, which can be obtained by calling the ListSites operation.
    QueryString string
    The desired query string to which you want to rewrite the query string in the original request.
    RewriteQueryStringType string
    The query string rewrite method. Valid value:

    • static
    RewriteUriType string
    The path rewrite method. Valid value:

    • static
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    SiteVersion int
    The version number of the website configurations.
    Uri string
    The desired URI to which you want to rewrite the path in the original request.
    siteId Integer
    The website ID, which can be obtained by calling the ListSites operation.
    queryString String
    The desired query string to which you want to rewrite the query string in the original request.
    rewriteQueryStringType String
    The query string rewrite method. Valid value:

    • static
    rewriteUriType String
    The path rewrite method. Valid value:

    • static
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    siteVersion Integer
    The version number of the website configurations.
    uri String
    The desired URI to which you want to rewrite the path in the original request.
    siteId number
    The website ID, which can be obtained by calling the ListSites operation.
    queryString string
    The desired query string to which you want to rewrite the query string in the original request.
    rewriteQueryStringType string
    The query string rewrite method. Valid value:

    • static
    rewriteUriType string
    The path rewrite method. Valid value:

    • static
    rule string
    The rule content.
    ruleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName string
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    siteVersion number
    The version number of the website configurations.
    uri string
    The desired URI to which you want to rewrite the path in the original request.
    site_id int
    The website ID, which can be obtained by calling the ListSites operation.
    query_string str
    The desired query string to which you want to rewrite the query string in the original request.
    rewrite_query_string_type str
    The query string rewrite method. Valid value:

    • static
    rewrite_uri_type str
    The path rewrite method. Valid value:

    • static
    rule str
    The rule content.
    rule_enable str
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    rule_name str
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    site_version int
    The version number of the website configurations.
    uri str
    The desired URI to which you want to rewrite the path in the original request.
    siteId Number
    The website ID, which can be obtained by calling the ListSites operation.
    queryString String
    The desired query string to which you want to rewrite the query string in the original request.
    rewriteQueryStringType String
    The query string rewrite method. Valid value:

    • static
    rewriteUriType String
    The path rewrite method. Valid value:

    • static
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    siteVersion Number
    The version number of the website configurations.
    uri String
    The desired URI to which you want to rewrite the path in the original request.

    Outputs

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

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

    Look up Existing RewriteUrlRule Resource

    Get an existing RewriteUrlRule 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?: RewriteUrlRuleState, opts?: CustomResourceOptions): RewriteUrlRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config_id: Optional[int] = None,
            query_string: Optional[str] = None,
            rewrite_query_string_type: Optional[str] = None,
            rewrite_uri_type: Optional[str] = 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,
            uri: Optional[str] = None) -> RewriteUrlRule
    func GetRewriteUrlRule(ctx *Context, name string, id IDInput, state *RewriteUrlRuleState, opts ...ResourceOption) (*RewriteUrlRule, error)
    public static RewriteUrlRule Get(string name, Input<string> id, RewriteUrlRuleState? state, CustomResourceOptions? opts = null)
    public static RewriteUrlRule get(String name, Output<String> id, RewriteUrlRuleState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:esa:RewriteUrlRule    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
    ConfigId
    QueryString string
    The desired query string to which you want to rewrite the query string in the original request.
    RewriteQueryStringType string
    The query string rewrite method. Valid value:

    • static
    RewriteUriType string
    The path rewrite method. Valid value:

    • static
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    SiteId int
    The website ID, which can be obtained by calling the ListSites operation.
    SiteVersion int
    The version number of the website configurations.
    Uri string
    The desired URI to which you want to rewrite the path in the original request.
    ConfigId int
    ConfigId
    QueryString string
    The desired query string to which you want to rewrite the query string in the original request.
    RewriteQueryStringType string
    The query string rewrite method. Valid value:

    • static
    RewriteUriType string
    The path rewrite method. Valid value:

    • static
    Rule string
    The rule content.
    RuleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    RuleName string
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    SiteId int
    The website ID, which can be obtained by calling the ListSites operation.
    SiteVersion int
    The version number of the website configurations.
    Uri string
    The desired URI to which you want to rewrite the path in the original request.
    configId Integer
    ConfigId
    queryString String
    The desired query string to which you want to rewrite the query string in the original request.
    rewriteQueryStringType String
    The query string rewrite method. Valid value:

    • static
    rewriteUriType String
    The path rewrite method. Valid value:

    • static
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    siteId Integer
    The website ID, which can be obtained by calling the ListSites operation.
    siteVersion Integer
    The version number of the website configurations.
    uri String
    The desired URI to which you want to rewrite the path in the original request.
    configId number
    ConfigId
    queryString string
    The desired query string to which you want to rewrite the query string in the original request.
    rewriteQueryStringType string
    The query string rewrite method. Valid value:

    • static
    rewriteUriType string
    The path rewrite method. Valid value:

    • static
    rule string
    The rule content.
    ruleEnable string
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName string
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    siteId number
    The website ID, which can be obtained by calling the ListSites operation.
    siteVersion number
    The version number of the website configurations.
    uri string
    The desired URI to which you want to rewrite the path in the original request.
    config_id int
    ConfigId
    query_string str
    The desired query string to which you want to rewrite the query string in the original request.
    rewrite_query_string_type str
    The query string rewrite method. Valid value:

    • static
    rewrite_uri_type str
    The path rewrite method. Valid value:

    • static
    rule str
    The rule content.
    rule_enable str
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    rule_name str
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    site_id int
    The website ID, which can be obtained by calling the ListSites operation.
    site_version int
    The version number of the website configurations.
    uri str
    The desired URI to which you want to rewrite the path in the original request.
    configId Number
    ConfigId
    queryString String
    The desired query string to which you want to rewrite the query string in the original request.
    rewriteQueryStringType String
    The query string rewrite method. Valid value:

    • static
    rewriteUriType String
    The path rewrite method. Valid value:

    • static
    rule String
    The rule content.
    ruleEnable String
    Indicates whether the rule is enabled. Valid values:

    • on
    • off
    ruleName String
    Rule name. You can find the rule whose field is passed by the rule name. The rule takes effect only if functionName is passed.
    siteId Number
    The website ID, which can be obtained by calling the ListSites operation.
    siteVersion Number
    The version number of the website configurations.
    uri String
    The desired URI to which you want to rewrite the path in the original request.

    Import

    ESA Rewrite Url Rule can be imported using the id, e.g.

    $ pulumi import alicloud:esa/rewriteUrlRule:RewriteUrlRule 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