alicloud.esa.RewriteUrlRule
Explore with Pulumi AI
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:
- Site
Id int - The website ID, which can be obtained by calling the ListSites operation.
- Query
String string - The desired query string to which you want to rewrite the query string in the original request.
- Rewrite
Query stringString Type - The query string rewrite method. Valid value:
- static
- Rewrite
Uri stringType - The path rewrite method. Valid value:
- static
- Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name 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.
- Site
Version 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.
- Site
Id int - The website ID, which can be obtained by calling the ListSites operation.
- Query
String string - The desired query string to which you want to rewrite the query string in the original request.
- Rewrite
Query stringString Type - The query string rewrite method. Valid value:
- static
- Rewrite
Uri stringType - The path rewrite method. Valid value:
- static
- Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name 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.
- Site
Version 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.
- site
Id Integer - The website ID, which can be obtained by calling the ListSites operation.
- query
String String - The desired query string to which you want to rewrite the query string in the original request.
- rewrite
Query StringString Type - The query string rewrite method. Valid value:
- static
- rewrite
Uri StringType - The path rewrite method. Valid value:
- static
- rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name 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.
- site
Version 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.
- site
Id number - The website ID, which can be obtained by calling the ListSites operation.
- query
String string - The desired query string to which you want to rewrite the query string in the original request.
- rewrite
Query stringString Type - The query string rewrite method. Valid value:
- static
- rewrite
Uri stringType - The path rewrite method. Valid value:
- static
- rule string
- The rule content.
- rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name 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.
- site
Version 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_ strstring_ type - The query string rewrite method. Valid value:
- static
- rewrite_
uri_ strtype - 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.
- site
Id Number - The website ID, which can be obtained by calling the ListSites operation.
- query
String String - The desired query string to which you want to rewrite the query string in the original request.
- rewrite
Query StringString Type - The query string rewrite method. Valid value:
- static
- rewrite
Uri StringType - The path rewrite method. Valid value:
- static
- rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name 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.
- site
Version 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:
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.
- Config
Id int - ConfigId
- Query
String string - The desired query string to which you want to rewrite the query string in the original request.
- Rewrite
Query stringString Type - The query string rewrite method. Valid value:
- static
- Rewrite
Uri stringType - The path rewrite method. Valid value:
- static
- Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name 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.
- 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 string
- The desired URI to which you want to rewrite the path in the original request.
- Config
Id int - ConfigId
- Query
String string - The desired query string to which you want to rewrite the query string in the original request.
- Rewrite
Query stringString Type - The query string rewrite method. Valid value:
- static
- Rewrite
Uri stringType - The path rewrite method. Valid value:
- static
- Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name 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.
- 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 string
- The desired URI to which you want to rewrite the path in the original request.
- config
Id Integer - ConfigId
- query
String String - The desired query string to which you want to rewrite the query string in the original request.
- rewrite
Query StringString Type - The query string rewrite method. Valid value:
- static
- rewrite
Uri StringType - The path rewrite method. Valid value:
- static
- rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name 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.
- site
Id Integer - The website ID, which can be obtained by calling the ListSites operation.
- site
Version 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.
- config
Id number - ConfigId
- query
String string - The desired query string to which you want to rewrite the query string in the original request.
- rewrite
Query stringString Type - The query string rewrite method. Valid value:
- static
- rewrite
Uri stringType - The path rewrite method. Valid value:
- static
- rule string
- The rule content.
- rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name 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.
- site
Id number - The website ID, which can be obtained by calling the ListSites operation.
- site
Version 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_ strstring_ type - The query string rewrite method. Valid value:
- static
- rewrite_
uri_ strtype - 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.
- config
Id Number - ConfigId
- query
String String - The desired query string to which you want to rewrite the query string in the original request.
- rewrite
Query StringString Type - The query string rewrite method. Valid value:
- static
- rewrite
Uri StringType - The path rewrite method. Valid value:
- static
- rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name 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.
- site
Id Number - The website ID, which can be obtained by calling the ListSites operation.
- site
Version 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.