alicloud.esa.OriginPool
Explore with Pulumi AI
Provides a ESA Origin Pool resource.
For information about ESA Origin Pool and how to use it, see What is Origin Pool.
NOTE: Available since v1.244.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") || "example.site";
const _default = alicloud.esa.getSites({
planSubscribeType: "enterpriseplan",
});
const defaultSite = new alicloud.esa.Site("default", {
siteName: name,
instanceId: _default.then(_default => _default.sites?.[0]?.instanceId),
coverage: "overseas",
accessType: "NS",
});
const defaultOriginPool = new alicloud.esa.OriginPool("default", {
origins: [
{
type: "OSS",
address: "example.oss-cn-beijing.aliyuncs.com",
header: "{\"Host\":[\"example.oss-cn-beijing.aliyuncs.com\"]}",
enabled: true,
authConf: {
secretKey: "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
authType: "private_cross_account",
accessKey: "LTAI5tGLgmPe1wFwpX8645BF",
},
weight: 50,
name: "origin1",
},
{
address: "example.s3.com",
header: "{\"Host\": [\"example1.com\"]}",
enabled: true,
authConf: {
version: "v2",
region: "us-east-1",
authType: "private",
accessKey: "LTAI5tGLgmPe1wFwpX8645BF",
secretKey: "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
},
weight: 50,
name: "origin2",
type: "S3",
},
{
type: "S3",
address: "example1111.s3.com",
header: "{\"Host\":[\"example1111.com\"]}",
enabled: true,
authConf: {
secretKey: "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
version: "v2",
region: "us-east-1",
authType: "private",
accessKey: "LTAI5tGLgmPe1wFwpX8645BF",
},
weight: 30,
name: "origin3",
},
],
siteId: defaultSite.id,
originPoolName: "exampleoriginpool",
enabled: true,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "example.site"
default = alicloud.esa.get_sites(plan_subscribe_type="enterpriseplan")
default_site = alicloud.esa.Site("default",
site_name=name,
instance_id=default.sites[0].instance_id,
coverage="overseas",
access_type="NS")
default_origin_pool = alicloud.esa.OriginPool("default",
origins=[
{
"type": "OSS",
"address": "example.oss-cn-beijing.aliyuncs.com",
"header": "{\"Host\":[\"example.oss-cn-beijing.aliyuncs.com\"]}",
"enabled": True,
"auth_conf": {
"secret_key": "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
"auth_type": "private_cross_account",
"access_key": "LTAI5tGLgmPe1wFwpX8645BF",
},
"weight": 50,
"name": "origin1",
},
{
"address": "example.s3.com",
"header": "{\"Host\": [\"example1.com\"]}",
"enabled": True,
"auth_conf": {
"version": "v2",
"region": "us-east-1",
"auth_type": "private",
"access_key": "LTAI5tGLgmPe1wFwpX8645BF",
"secret_key": "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
},
"weight": 50,
"name": "origin2",
"type": "S3",
},
{
"type": "S3",
"address": "example1111.s3.com",
"header": "{\"Host\":[\"example1111.com\"]}",
"enabled": True,
"auth_conf": {
"secret_key": "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
"version": "v2",
"region": "us-east-1",
"auth_type": "private",
"access_key": "LTAI5tGLgmPe1wFwpX8645BF",
},
"weight": 30,
"name": "origin3",
},
],
site_id=default_site.id,
origin_pool_name="exampleoriginpool",
enabled=True)
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 := "example.site"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := esa.GetSites(ctx, &esa.GetSitesArgs{
PlanSubscribeType: pulumi.StringRef("enterpriseplan"),
}, nil)
if err != nil {
return err
}
defaultSite, err := esa.NewSite(ctx, "default", &esa.SiteArgs{
SiteName: pulumi.String(name),
InstanceId: pulumi.String(_default.Sites[0].InstanceId),
Coverage: pulumi.String("overseas"),
AccessType: pulumi.String("NS"),
})
if err != nil {
return err
}
_, err = esa.NewOriginPool(ctx, "default", &esa.OriginPoolArgs{
Origins: esa.OriginPoolOriginArray{
&esa.OriginPoolOriginArgs{
Type: pulumi.String("OSS"),
Address: pulumi.String("example.oss-cn-beijing.aliyuncs.com"),
Header: pulumi.String("{\"Host\":[\"example.oss-cn-beijing.aliyuncs.com\"]}"),
Enabled: pulumi.Bool(true),
AuthConf: &esa.OriginPoolOriginAuthConfArgs{
SecretKey: pulumi.String("bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ"),
AuthType: pulumi.String("private_cross_account"),
AccessKey: pulumi.String("LTAI5tGLgmPe1wFwpX8645BF"),
},
Weight: pulumi.Int(50),
Name: pulumi.String("origin1"),
},
&esa.OriginPoolOriginArgs{
Address: pulumi.String("example.s3.com"),
Header: pulumi.String("{\"Host\": [\"example1.com\"]}"),
Enabled: pulumi.Bool(true),
AuthConf: &esa.OriginPoolOriginAuthConfArgs{
Version: pulumi.String("v2"),
Region: pulumi.String("us-east-1"),
AuthType: pulumi.String("private"),
AccessKey: pulumi.String("LTAI5tGLgmPe1wFwpX8645BF"),
SecretKey: pulumi.String("bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ"),
},
Weight: pulumi.Int(50),
Name: pulumi.String("origin2"),
Type: pulumi.String("S3"),
},
&esa.OriginPoolOriginArgs{
Type: pulumi.String("S3"),
Address: pulumi.String("example1111.s3.com"),
Header: pulumi.String("{\"Host\":[\"example1111.com\"]}"),
Enabled: pulumi.Bool(true),
AuthConf: &esa.OriginPoolOriginAuthConfArgs{
SecretKey: pulumi.String("bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ"),
Version: pulumi.String("v2"),
Region: pulumi.String("us-east-1"),
AuthType: pulumi.String("private"),
AccessKey: pulumi.String("LTAI5tGLgmPe1wFwpX8645BF"),
},
Weight: pulumi.Int(30),
Name: pulumi.String("origin3"),
},
},
SiteId: defaultSite.ID(),
OriginPoolName: pulumi.String("exampleoriginpool"),
Enabled: pulumi.Bool(true),
})
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") ?? "example.site";
var @default = AliCloud.Esa.GetSites.Invoke(new()
{
PlanSubscribeType = "enterpriseplan",
});
var defaultSite = new AliCloud.Esa.Site("default", new()
{
SiteName = name,
InstanceId = @default.Apply(@default => @default.Apply(getSitesResult => getSitesResult.Sites[0]?.InstanceId)),
Coverage = "overseas",
AccessType = "NS",
});
var defaultOriginPool = new AliCloud.Esa.OriginPool("default", new()
{
Origins = new[]
{
new AliCloud.Esa.Inputs.OriginPoolOriginArgs
{
Type = "OSS",
Address = "example.oss-cn-beijing.aliyuncs.com",
Header = "{\"Host\":[\"example.oss-cn-beijing.aliyuncs.com\"]}",
Enabled = true,
AuthConf = new AliCloud.Esa.Inputs.OriginPoolOriginAuthConfArgs
{
SecretKey = "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
AuthType = "private_cross_account",
AccessKey = "LTAI5tGLgmPe1wFwpX8645BF",
},
Weight = 50,
Name = "origin1",
},
new AliCloud.Esa.Inputs.OriginPoolOriginArgs
{
Address = "example.s3.com",
Header = "{\"Host\": [\"example1.com\"]}",
Enabled = true,
AuthConf = new AliCloud.Esa.Inputs.OriginPoolOriginAuthConfArgs
{
Version = "v2",
Region = "us-east-1",
AuthType = "private",
AccessKey = "LTAI5tGLgmPe1wFwpX8645BF",
SecretKey = "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
},
Weight = 50,
Name = "origin2",
Type = "S3",
},
new AliCloud.Esa.Inputs.OriginPoolOriginArgs
{
Type = "S3",
Address = "example1111.s3.com",
Header = "{\"Host\":[\"example1111.com\"]}",
Enabled = true,
AuthConf = new AliCloud.Esa.Inputs.OriginPoolOriginAuthConfArgs
{
SecretKey = "bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ",
Version = "v2",
Region = "us-east-1",
AuthType = "private",
AccessKey = "LTAI5tGLgmPe1wFwpX8645BF",
},
Weight = 30,
Name = "origin3",
},
},
SiteId = defaultSite.Id,
OriginPoolName = "exampleoriginpool",
Enabled = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.EsaFunctions;
import com.pulumi.alicloud.esa.inputs.GetSitesArgs;
import com.pulumi.alicloud.esa.Site;
import com.pulumi.alicloud.esa.SiteArgs;
import com.pulumi.alicloud.esa.OriginPool;
import com.pulumi.alicloud.esa.OriginPoolArgs;
import com.pulumi.alicloud.esa.inputs.OriginPoolOriginArgs;
import com.pulumi.alicloud.esa.inputs.OriginPoolOriginAuthConfArgs;
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("example.site");
final var default = EsaFunctions.getSites(GetSitesArgs.builder()
.planSubscribeType("enterpriseplan")
.build());
var defaultSite = new Site("defaultSite", SiteArgs.builder()
.siteName(name)
.instanceId(default_.sites()[0].instanceId())
.coverage("overseas")
.accessType("NS")
.build());
var defaultOriginPool = new OriginPool("defaultOriginPool", OriginPoolArgs.builder()
.origins(
OriginPoolOriginArgs.builder()
.type("OSS")
.address("example.oss-cn-beijing.aliyuncs.com")
.header("{\"Host\":[\"example.oss-cn-beijing.aliyuncs.com\"]}")
.enabled("true")
.authConf(OriginPoolOriginAuthConfArgs.builder()
.secretKey("bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ")
.authType("private_cross_account")
.accessKey("LTAI5tGLgmPe1wFwpX8645BF")
.build())
.weight("50")
.name("origin1")
.build(),
OriginPoolOriginArgs.builder()
.address("example.s3.com")
.header("{\"Host\": [\"example1.com\"]}")
.enabled("true")
.authConf(OriginPoolOriginAuthConfArgs.builder()
.version("v2")
.region("us-east-1")
.authType("private")
.accessKey("LTAI5tGLgmPe1wFwpX8645BF")
.secretKey("bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ")
.build())
.weight("50")
.name("origin2")
.type("S3")
.build(),
OriginPoolOriginArgs.builder()
.type("S3")
.address("example1111.s3.com")
.header("{\"Host\":[\"example1111.com\"]}")
.enabled("true")
.authConf(OriginPoolOriginAuthConfArgs.builder()
.secretKey("bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ")
.version("v2")
.region("us-east-1")
.authType("private")
.accessKey("LTAI5tGLgmPe1wFwpX8645BF")
.build())
.weight("30")
.name("origin3")
.build())
.siteId(defaultSite.id())
.originPoolName("exampleoriginpool")
.enabled("true")
.build());
}
}
configuration:
name:
type: string
default: example.site
resources:
defaultSite:
type: alicloud:esa:Site
name: default
properties:
siteName: ${name}
instanceId: ${default.sites[0].instanceId}
coverage: overseas
accessType: NS
defaultOriginPool:
type: alicloud:esa:OriginPool
name: default
properties:
origins:
- type: OSS
address: example.oss-cn-beijing.aliyuncs.com
header: '{"Host":["example.oss-cn-beijing.aliyuncs.com"]}'
enabled: 'true'
authConf:
secretKey: bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ
authType: private_cross_account
accessKey: LTAI5tGLgmPe1wFwpX8645BF
weight: '50'
name: origin1
- address: example.s3.com
header: '{"Host": ["example1.com"]}'
enabled: 'true'
authConf:
version: v2
region: us-east-1
authType: private
accessKey: LTAI5tGLgmPe1wFwpX8645BF
secretKey: bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ
weight: '50'
name: origin2
type: S3
- type: S3
address: example1111.s3.com
header: '{"Host":["example1111.com"]}'
enabled: 'true'
authConf:
secretKey: bd8tjba5lXxxxxiRXFIBvoCIfJIL2WJ
version: v2
region: us-east-1
authType: private
accessKey: LTAI5tGLgmPe1wFwpX8645BF
weight: '30'
name: origin3
siteId: ${defaultSite.id}
originPoolName: exampleoriginpool
enabled: 'true'
variables:
default:
fn::invoke:
function: alicloud:esa:getSites
arguments:
planSubscribeType: enterpriseplan
Create OriginPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OriginPool(name: string, args: OriginPoolArgs, opts?: CustomResourceOptions);
@overload
def OriginPool(resource_name: str,
args: OriginPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OriginPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
origin_pool_name: Optional[str] = None,
site_id: Optional[int] = None,
enabled: Optional[bool] = None,
origins: Optional[Sequence[OriginPoolOriginArgs]] = None)
func NewOriginPool(ctx *Context, name string, args OriginPoolArgs, opts ...ResourceOption) (*OriginPool, error)
public OriginPool(string name, OriginPoolArgs args, CustomResourceOptions? opts = null)
public OriginPool(String name, OriginPoolArgs args)
public OriginPool(String name, OriginPoolArgs args, CustomResourceOptions options)
type: alicloud:esa:OriginPool
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 OriginPoolArgs
- 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 OriginPoolArgs
- 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 OriginPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OriginPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OriginPoolArgs
- 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 originPoolResource = new AliCloud.Esa.OriginPool("originPoolResource", new()
{
OriginPoolName = "string",
SiteId = 0,
Enabled = false,
Origins = new[]
{
new AliCloud.Esa.Inputs.OriginPoolOriginArgs
{
Address = "string",
AuthConf = new AliCloud.Esa.Inputs.OriginPoolOriginAuthConfArgs
{
AccessKey = "string",
AuthType = "string",
Region = "string",
SecretKey = "string",
Version = "string",
},
Enabled = false,
Header = "string",
Name = "string",
OriginId = 0,
Type = "string",
Weight = 0,
},
},
});
example, err := esa.NewOriginPool(ctx, "originPoolResource", &esa.OriginPoolArgs{
OriginPoolName: pulumi.String("string"),
SiteId: pulumi.Int(0),
Enabled: pulumi.Bool(false),
Origins: esa.OriginPoolOriginArray{
&esa.OriginPoolOriginArgs{
Address: pulumi.String("string"),
AuthConf: &esa.OriginPoolOriginAuthConfArgs{
AccessKey: pulumi.String("string"),
AuthType: pulumi.String("string"),
Region: pulumi.String("string"),
SecretKey: pulumi.String("string"),
Version: pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Header: pulumi.String("string"),
Name: pulumi.String("string"),
OriginId: pulumi.Int(0),
Type: pulumi.String("string"),
Weight: pulumi.Int(0),
},
},
})
var originPoolResource = new OriginPool("originPoolResource", OriginPoolArgs.builder()
.originPoolName("string")
.siteId(0)
.enabled(false)
.origins(OriginPoolOriginArgs.builder()
.address("string")
.authConf(OriginPoolOriginAuthConfArgs.builder()
.accessKey("string")
.authType("string")
.region("string")
.secretKey("string")
.version("string")
.build())
.enabled(false)
.header("string")
.name("string")
.originId(0)
.type("string")
.weight(0)
.build())
.build());
origin_pool_resource = alicloud.esa.OriginPool("originPoolResource",
origin_pool_name="string",
site_id=0,
enabled=False,
origins=[{
"address": "string",
"auth_conf": {
"access_key": "string",
"auth_type": "string",
"region": "string",
"secret_key": "string",
"version": "string",
},
"enabled": False,
"header": "string",
"name": "string",
"origin_id": 0,
"type": "string",
"weight": 0,
}])
const originPoolResource = new alicloud.esa.OriginPool("originPoolResource", {
originPoolName: "string",
siteId: 0,
enabled: false,
origins: [{
address: "string",
authConf: {
accessKey: "string",
authType: "string",
region: "string",
secretKey: "string",
version: "string",
},
enabled: false,
header: "string",
name: "string",
originId: 0,
type: "string",
weight: 0,
}],
});
type: alicloud:esa:OriginPool
properties:
enabled: false
originPoolName: string
origins:
- address: string
authConf:
accessKey: string
authType: string
region: string
secretKey: string
version: string
enabled: false
header: string
name: string
originId: 0
type: string
weight: 0
siteId: 0
OriginPool 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 OriginPool resource accepts the following input properties:
- Origin
Pool stringName - The source address pool name.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Enabled bool
- Whether the source address pool is enabled:
- Origins
List<Pulumi.
Ali Cloud. Esa. Inputs. Origin Pool Origin> - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below.
- Origin
Pool stringName - The source address pool name.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Enabled bool
- Whether the source address pool is enabled:
- Origins
[]Origin
Pool Origin Args - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below.
- origin
Pool StringName - The source address pool name.
- site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- enabled Boolean
- Whether the source address pool is enabled:
- origins
List<Origin
Pool Origin> - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below.
- origin
Pool stringName - The source address pool name.
- site
Id number - The site ID, which can be obtained by calling the ListSites API.
- enabled boolean
- Whether the source address pool is enabled:
- origins
Origin
Pool Origin[] - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below.
- origin_
pool_ strname - The source address pool name.
- site_
id int - The site ID, which can be obtained by calling the ListSites API.
- enabled bool
- Whether the source address pool is enabled:
- origins
Sequence[Origin
Pool Origin Args] - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below.
- origin
Pool StringName - The source address pool name.
- site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- enabled Boolean
- Whether the source address pool is enabled:
- origins List<Property Map>
- The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below.
Outputs
All input properties are implicitly available as output properties. Additionally, the OriginPool resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Origin
Pool intId - OriginPool Id
- Id string
- The provider-assigned unique ID for this managed resource.
- Origin
Pool intId - OriginPool Id
- id String
- The provider-assigned unique ID for this managed resource.
- origin
Pool IntegerId - OriginPool Id
- id string
- The provider-assigned unique ID for this managed resource.
- origin
Pool numberId - OriginPool Id
- id str
- The provider-assigned unique ID for this managed resource.
- origin_
pool_ intid - OriginPool Id
- id String
- The provider-assigned unique ID for this managed resource.
- origin
Pool NumberId - OriginPool Id
Look up Existing OriginPool Resource
Get an existing OriginPool 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?: OriginPoolState, opts?: CustomResourceOptions): OriginPool
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
origin_pool_id: Optional[int] = None,
origin_pool_name: Optional[str] = None,
origins: Optional[Sequence[OriginPoolOriginArgs]] = None,
site_id: Optional[int] = None) -> OriginPool
func GetOriginPool(ctx *Context, name string, id IDInput, state *OriginPoolState, opts ...ResourceOption) (*OriginPool, error)
public static OriginPool Get(string name, Input<string> id, OriginPoolState? state, CustomResourceOptions? opts = null)
public static OriginPool get(String name, Output<String> id, OriginPoolState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:OriginPool 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.
- Enabled bool
- Whether the source address pool is enabled:
- Origin
Pool intId - OriginPool Id
- Origin
Pool stringName - The source address pool name.
- Origins
List<Pulumi.
Ali Cloud. Esa. Inputs. Origin Pool Origin> - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below. - Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Enabled bool
- Whether the source address pool is enabled:
- Origin
Pool intId - OriginPool Id
- Origin
Pool stringName - The source address pool name.
- Origins
[]Origin
Pool Origin Args - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below. - Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- enabled Boolean
- Whether the source address pool is enabled:
- origin
Pool IntegerId - OriginPool Id
- origin
Pool StringName - The source address pool name.
- origins
List<Origin
Pool Origin> - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below. - site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- enabled boolean
- Whether the source address pool is enabled:
- origin
Pool numberId - OriginPool Id
- origin
Pool stringName - The source address pool name.
- origins
Origin
Pool Origin[] - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below. - site
Id number - The site ID, which can be obtained by calling the ListSites API.
- enabled bool
- Whether the source address pool is enabled:
- origin_
pool_ intid - OriginPool Id
- origin_
pool_ strname - The source address pool name.
- origins
Sequence[Origin
Pool Origin Args] - The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below. - site_
id int - The site ID, which can be obtained by calling the ListSites API.
- enabled Boolean
- Whether the source address pool is enabled:
- origin
Pool NumberId - OriginPool Id
- origin
Pool StringName - The source address pool name.
- origins List<Property Map>
- The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See
origins
below. - site
Id Number - The site ID, which can be obtained by calling the ListSites API.
Supporting Types
OriginPoolOrigin, OriginPoolOriginArgs
- Address string
- Origin Address.
- Auth
Conf Pulumi.Ali Cloud. Esa. Inputs. Origin Pool Origin Auth Conf - The authentication information. When the source Station is an OSS or S3 and other source stations need to be authenticated, the authentication-related configuration information needs to be transmitted. See
auth_conf
below. - Enabled bool
- Whether the source station is enabled:
- Header string
- The request header that is sent when returning to the source. Only Host is supported.
- Name string
- Origin Name.
- Origin
Id int - Origin ID.
- Type string
- Source station type:
- Weight int
- Weight, 0-100.
- Address string
- Origin Address.
- Auth
Conf OriginPool Origin Auth Conf - The authentication information. When the source Station is an OSS or S3 and other source stations need to be authenticated, the authentication-related configuration information needs to be transmitted. See
auth_conf
below. - Enabled bool
- Whether the source station is enabled:
- Header string
- The request header that is sent when returning to the source. Only Host is supported.
- Name string
- Origin Name.
- Origin
Id int - Origin ID.
- Type string
- Source station type:
- Weight int
- Weight, 0-100.
- address String
- Origin Address.
- auth
Conf OriginPool Origin Auth Conf - The authentication information. When the source Station is an OSS or S3 and other source stations need to be authenticated, the authentication-related configuration information needs to be transmitted. See
auth_conf
below. - enabled Boolean
- Whether the source station is enabled:
- header String
- The request header that is sent when returning to the source. Only Host is supported.
- name String
- Origin Name.
- origin
Id Integer - Origin ID.
- type String
- Source station type:
- weight Integer
- Weight, 0-100.
- address string
- Origin Address.
- auth
Conf OriginPool Origin Auth Conf - The authentication information. When the source Station is an OSS or S3 and other source stations need to be authenticated, the authentication-related configuration information needs to be transmitted. See
auth_conf
below. - enabled boolean
- Whether the source station is enabled:
- header string
- The request header that is sent when returning to the source. Only Host is supported.
- name string
- Origin Name.
- origin
Id number - Origin ID.
- type string
- Source station type:
- weight number
- Weight, 0-100.
- address str
- Origin Address.
- auth_
conf OriginPool Origin Auth Conf - The authentication information. When the source Station is an OSS or S3 and other source stations need to be authenticated, the authentication-related configuration information needs to be transmitted. See
auth_conf
below. - enabled bool
- Whether the source station is enabled:
- header str
- The request header that is sent when returning to the source. Only Host is supported.
- name str
- Origin Name.
- origin_
id int - Origin ID.
- type str
- Source station type:
- weight int
- Weight, 0-100.
- address String
- Origin Address.
- auth
Conf Property Map - The authentication information. When the source Station is an OSS or S3 and other source stations need to be authenticated, the authentication-related configuration information needs to be transmitted. See
auth_conf
below. - enabled Boolean
- Whether the source station is enabled:
- header String
- The request header that is sent when returning to the source. Only Host is supported.
- name String
- Origin Name.
- origin
Id Number - Origin ID.
- type String
- Source station type:
- weight Number
- Weight, 0-100.
OriginPoolOriginAuthConf, OriginPoolOriginAuthConfArgs
- Access
Key string - The AccessKey to be passed when AuthType is set to private_cross_account or private.
- Auth
Type string - Authentication type.
- Region string
- The Region of the source station to be transmitted when the source station is AWS S3.
- Secret
Key string - The SecretKey to be passed when AuthType is set to private_cross_account or private.
- Version string
- The signature version to be transmitted when the source station is AWS S3.
- Access
Key string - The AccessKey to be passed when AuthType is set to private_cross_account or private.
- Auth
Type string - Authentication type.
- Region string
- The Region of the source station to be transmitted when the source station is AWS S3.
- Secret
Key string - The SecretKey to be passed when AuthType is set to private_cross_account or private.
- Version string
- The signature version to be transmitted when the source station is AWS S3.
- access
Key String - The AccessKey to be passed when AuthType is set to private_cross_account or private.
- auth
Type String - Authentication type.
- region String
- The Region of the source station to be transmitted when the source station is AWS S3.
- secret
Key String - The SecretKey to be passed when AuthType is set to private_cross_account or private.
- version String
- The signature version to be transmitted when the source station is AWS S3.
- access
Key string - The AccessKey to be passed when AuthType is set to private_cross_account or private.
- auth
Type string - Authentication type.
- region string
- The Region of the source station to be transmitted when the source station is AWS S3.
- secret
Key string - The SecretKey to be passed when AuthType is set to private_cross_account or private.
- version string
- The signature version to be transmitted when the source station is AWS S3.
- access_
key str - The AccessKey to be passed when AuthType is set to private_cross_account or private.
- auth_
type str - Authentication type.
- region str
- The Region of the source station to be transmitted when the source station is AWS S3.
- secret_
key str - The SecretKey to be passed when AuthType is set to private_cross_account or private.
- version str
- The signature version to be transmitted when the source station is AWS S3.
- access
Key String - The AccessKey to be passed when AuthType is set to private_cross_account or private.
- auth
Type String - Authentication type.
- region String
- The Region of the source station to be transmitted when the source station is AWS S3.
- secret
Key String - The SecretKey to be passed when AuthType is set to private_cross_account or private.
- version String
- The signature version to be transmitted when the source station is AWS S3.
Import
ESA Origin Pool can be imported using the id, e.g.
$ pulumi import alicloud:esa/originPool:OriginPool example <site_id>:<origin_pool_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.