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

alicloud.esa.OriginPool

Explore with Pulumi AI

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

    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:

    OriginPoolName string
    The source address pool name.
    SiteId 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.AliCloud.Esa.Inputs.OriginPoolOrigin>
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    OriginPoolName string
    The source address pool name.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    Enabled bool
    Whether the source address pool is enabled:
    Origins []OriginPoolOriginArgs
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    originPoolName String
    The source address pool name.
    siteId Integer
    The site ID, which can be obtained by calling the ListSites API.
    enabled Boolean
    Whether the source address pool is enabled:
    origins List<OriginPoolOrigin>
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    originPoolName string
    The source address pool name.
    siteId number
    The site ID, which can be obtained by calling the ListSites API.
    enabled boolean
    Whether the source address pool is enabled:
    origins OriginPoolOrigin[]
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    origin_pool_name str
    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[OriginPoolOriginArgs]
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    originPoolName String
    The source address pool name.
    siteId 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.
    OriginPoolId int
    OriginPool Id
    Id string
    The provider-assigned unique ID for this managed resource.
    OriginPoolId int
    OriginPool Id
    id String
    The provider-assigned unique ID for this managed resource.
    originPoolId Integer
    OriginPool Id
    id string
    The provider-assigned unique ID for this managed resource.
    originPoolId number
    OriginPool Id
    id str
    The provider-assigned unique ID for this managed resource.
    origin_pool_id int
    OriginPool Id
    id String
    The provider-assigned unique ID for this managed resource.
    originPoolId Number
    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.
    The following state arguments are supported:
    Enabled bool
    Whether the source address pool is enabled:
    OriginPoolId int
    OriginPool Id
    OriginPoolName string
    The source address pool name.
    Origins List<Pulumi.AliCloud.Esa.Inputs.OriginPoolOrigin>
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    Enabled bool
    Whether the source address pool is enabled:
    OriginPoolId int
    OriginPool Id
    OriginPoolName string
    The source address pool name.
    Origins []OriginPoolOriginArgs
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    SiteId int
    The site ID, which can be obtained by calling the ListSites API.
    enabled Boolean
    Whether the source address pool is enabled:
    originPoolId Integer
    OriginPool Id
    originPoolName String
    The source address pool name.
    origins List<OriginPoolOrigin>
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    siteId Integer
    The site ID, which can be obtained by calling the ListSites API.
    enabled boolean
    Whether the source address pool is enabled:
    originPoolId number
    OriginPool Id
    originPoolName string
    The source address pool name.
    origins OriginPoolOrigin[]
    The Source station information added to the source address pool. Multiple Source stations use arrays to transfer values. See origins below.
    siteId number
    The site ID, which can be obtained by calling the ListSites API.
    enabled bool
    Whether the source address pool is enabled:
    origin_pool_id int
    OriginPool Id
    origin_pool_name str
    The source address pool name.
    origins Sequence[OriginPoolOriginArgs]
    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:
    originPoolId Number
    OriginPool Id
    originPoolName String
    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.
    siteId Number
    The site ID, which can be obtained by calling the ListSites API.

    Supporting Types

    OriginPoolOrigin, OriginPoolOriginArgs

    Address string
    Origin Address.
    AuthConf Pulumi.AliCloud.Esa.Inputs.OriginPoolOriginAuthConf
    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.
    OriginId int
    Origin ID.
    Type string
    Source station type:
    Weight int
    Weight, 0-100.
    Address string
    Origin Address.
    AuthConf OriginPoolOriginAuthConf
    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.
    OriginId int
    Origin ID.
    Type string
    Source station type:
    Weight int
    Weight, 0-100.
    address String
    Origin Address.
    authConf OriginPoolOriginAuthConf
    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.
    originId Integer
    Origin ID.
    type String
    Source station type:
    weight Integer
    Weight, 0-100.
    address string
    Origin Address.
    authConf OriginPoolOriginAuthConf
    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.
    originId number
    Origin ID.
    type string
    Source station type:
    weight number
    Weight, 0-100.
    address str
    Origin Address.
    auth_conf OriginPoolOriginAuthConf
    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.
    authConf 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.
    originId Number
    Origin ID.
    type String
    Source station type:
    weight Number
    Weight, 0-100.

    OriginPoolOriginAuthConf, OriginPoolOriginAuthConfArgs

    AccessKey string
    The AccessKey to be passed when AuthType is set to private_cross_account or private.
    AuthType string
    Authentication type.
    Region string
    The Region of the source station to be transmitted when the source station is AWS S3.
    SecretKey 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.
    AccessKey string
    The AccessKey to be passed when AuthType is set to private_cross_account or private.
    AuthType string
    Authentication type.
    Region string
    The Region of the source station to be transmitted when the source station is AWS S3.
    SecretKey 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.
    accessKey String
    The AccessKey to be passed when AuthType is set to private_cross_account or private.
    authType String
    Authentication type.
    region String
    The Region of the source station to be transmitted when the source station is AWS S3.
    secretKey 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.
    accessKey string
    The AccessKey to be passed when AuthType is set to private_cross_account or private.
    authType string
    Authentication type.
    region string
    The Region of the source station to be transmitted when the source station is AWS S3.
    secretKey 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.
    accessKey String
    The AccessKey to be passed when AuthType is set to private_cross_account or private.
    authType String
    Authentication type.
    region String
    The Region of the source station to be transmitted when the source station is AWS S3.
    secretKey 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.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi