1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. CssOriginStreamInfo
Viewing docs for tencentcloud 1.82.97
published on Saturday, May 23, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.97
published on Saturday, May 23, 2026 by tencentcloudstack

    Provides a resource to create a CSS origin stream info.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.CssOriginStreamInfo("example", {
        domainName: "www.demo.com",
        originStreamPlayType: "rtmp",
        cdnStreamPlayTypes: ["rtmp"],
        originStreamType: 1,
        originAddressType: 1,
        originAddresses: ["1.1.1.1:8080"],
        originTimeout: 10000,
        originRetryTimes: 10,
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.CssOriginStreamInfo("example",
        domain_name="www.demo.com",
        origin_stream_play_type="rtmp",
        cdn_stream_play_types=["rtmp"],
        origin_stream_type=1,
        origin_address_type=1,
        origin_addresses=["1.1.1.1:8080"],
        origin_timeout=10000,
        origin_retry_times=10)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewCssOriginStreamInfo(ctx, "example", &tencentcloud.CssOriginStreamInfoArgs{
    			DomainName:           pulumi.String("www.demo.com"),
    			OriginStreamPlayType: pulumi.String("rtmp"),
    			CdnStreamPlayTypes: pulumi.StringArray{
    				pulumi.String("rtmp"),
    			},
    			OriginStreamType:  pulumi.Float64(1),
    			OriginAddressType: pulumi.Float64(1),
    			OriginAddresses: pulumi.StringArray{
    				pulumi.String("1.1.1.1:8080"),
    			},
    			OriginTimeout:    pulumi.Float64(10000),
    			OriginRetryTimes: pulumi.Float64(10),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.CssOriginStreamInfo("example", new()
        {
            DomainName = "www.demo.com",
            OriginStreamPlayType = "rtmp",
            CdnStreamPlayTypes = new[]
            {
                "rtmp",
            },
            OriginStreamType = 1,
            OriginAddressType = 1,
            OriginAddresses = new[]
            {
                "1.1.1.1:8080",
            },
            OriginTimeout = 10000,
            OriginRetryTimes = 10,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CssOriginStreamInfo;
    import com.pulumi.tencentcloud.CssOriginStreamInfoArgs;
    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) {
            var example = new CssOriginStreamInfo("example", CssOriginStreamInfoArgs.builder()
                .domainName("www.demo.com")
                .originStreamPlayType("rtmp")
                .cdnStreamPlayTypes("rtmp")
                .originStreamType(1.0)
                .originAddressType(1.0)
                .originAddresses("1.1.1.1:8080")
                .originTimeout(10000.0)
                .originRetryTimes(10.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:CssOriginStreamInfo
        properties:
          domainName: www.demo.com
          originStreamPlayType: rtmp
          cdnStreamPlayTypes:
            - rtmp
          originStreamType: 1
          originAddressType: 1
          originAddresses:
            - 1.1.1.1:8080
          originTimeout: 10000
          originRetryTimes: 10
    
    Example coming soon!
    

    Create CssOriginStreamInfo Resource

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

    Constructor syntax

    new CssOriginStreamInfo(name: string, args: CssOriginStreamInfoArgs, opts?: CustomResourceOptions);
    @overload
    def CssOriginStreamInfo(resource_name: str,
                            args: CssOriginStreamInfoArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def CssOriginStreamInfo(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            domain_name: Optional[str] = None,
                            origin_stream_type: Optional[float] = None,
                            origin_stream_play_type: Optional[str] = None,
                            cdn_stream_play_types: Optional[Sequence[str]] = None,
                            origin_addresses: Optional[Sequence[str]] = None,
                            origin_address_type: Optional[float] = None,
                            follow_redirect: Optional[str] = None,
                            options_request: Optional[str] = None,
                            cache_follow_origin: Optional[str] = None,
                            fragment_cache: Optional[float] = None,
                            fragment_headers: Optional[Sequence[str]] = None,
                            fragment_keep_params: Optional[Sequence[str]] = None,
                            hls_play_fragment_count: Optional[float] = None,
                            hls_play_fragment_duration: Optional[float] = None,
                            indexer_cache: Optional[float] = None,
                            indexer_headers: Optional[Sequence[str]] = None,
                            indexer_keep_params: Optional[Sequence[str]] = None,
                            media_package_channel_types: Optional[Sequence[str]] = None,
                            media_package_type: Optional[str] = None,
                            customization_rules: Optional[Sequence[CssOriginStreamInfoCustomizationRuleArgs]] = None,
                            customer_name: Optional[str] = None,
                            css_origin_stream_info_id: Optional[str] = None,
                            origin_host: Optional[str] = None,
                            origin_retry_times: Optional[float] = None,
                            cache_status_codes: Optional[Sequence[str]] = None,
                            cache_format_rule: Optional[float] = None,
                            origin_timeout: Optional[float] = None,
                            pass_through_http_header: Optional[str] = None,
                            pass_through_param: Optional[str] = None,
                            pass_through_response: Optional[str] = None,
                            time_jitter: Optional[str] = None,
                            timeouts: Optional[CssOriginStreamInfoTimeoutsArgs] = None,
                            url_replace_rules: Optional[Sequence[str]] = None,
                            using_https: Optional[str] = None)
    func NewCssOriginStreamInfo(ctx *Context, name string, args CssOriginStreamInfoArgs, opts ...ResourceOption) (*CssOriginStreamInfo, error)
    public CssOriginStreamInfo(string name, CssOriginStreamInfoArgs args, CustomResourceOptions? opts = null)
    public CssOriginStreamInfo(String name, CssOriginStreamInfoArgs args)
    public CssOriginStreamInfo(String name, CssOriginStreamInfoArgs args, CustomResourceOptions options)
    
    type: tencentcloud:CssOriginStreamInfo
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_cssoriginstreaminfo" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CssOriginStreamInfoArgs
    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 CssOriginStreamInfoArgs
    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 CssOriginStreamInfoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CssOriginStreamInfoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CssOriginStreamInfoArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    CdnStreamPlayTypes List<string>
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    DomainName string
    Domain name.
    OriginAddressType double
    Origin address type. 1: IP. 2: domain name.
    OriginAddresses List<string>
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    OriginStreamPlayType string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    OriginStreamType double
    Origin type. 1: live origin. 2: mediaPackage.
    CacheFollowOrigin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    CacheFormatRule double
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    CacheStatusCodes List<string>
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    CssOriginStreamInfoId string
    ID of the resource.
    CustomerName string
    Custom name.
    CustomizationRules List<CssOriginStreamInfoCustomizationRule>
    Customization rules list. Effective only when origin_stream_play_type is customization.
    FollowRedirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    FragmentCache double
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    FragmentHeaders List<string>
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    FragmentKeepParams List<string>
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    HlsPlayFragmentCount double
    Fragment count, range: 1~10, default: 3.
    HlsPlayFragmentDuration double
    Fragment duration in ms, range: 1~10000, default: 3000.
    IndexerCache double
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    IndexerHeaders List<string>
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    IndexerKeepParams List<string>
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    MediaPackageChannelTypes List<string>
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    MediaPackageType string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    OptionsRequest string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    OriginHost string
    Origin host. Effective only when origin_stream_play_type is hls.
    OriginRetryTimes double
    Retry count, range: 1~10, default: 10.
    OriginTimeout double
    Timeout in ms, range: 1~60000, default: 10000.
    PassThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughParam string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughResponse string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    TimeJitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    Timeouts CssOriginStreamInfoTimeouts
    UrlReplaceRules List<string>
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    UsingHttps string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    CdnStreamPlayTypes []string
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    DomainName string
    Domain name.
    OriginAddressType float64
    Origin address type. 1: IP. 2: domain name.
    OriginAddresses []string
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    OriginStreamPlayType string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    OriginStreamType float64
    Origin type. 1: live origin. 2: mediaPackage.
    CacheFollowOrigin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    CacheFormatRule float64
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    CacheStatusCodes []string
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    CssOriginStreamInfoId string
    ID of the resource.
    CustomerName string
    Custom name.
    CustomizationRules []CssOriginStreamInfoCustomizationRuleArgs
    Customization rules list. Effective only when origin_stream_play_type is customization.
    FollowRedirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    FragmentCache float64
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    FragmentHeaders []string
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    FragmentKeepParams []string
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    HlsPlayFragmentCount float64
    Fragment count, range: 1~10, default: 3.
    HlsPlayFragmentDuration float64
    Fragment duration in ms, range: 1~10000, default: 3000.
    IndexerCache float64
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    IndexerHeaders []string
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    IndexerKeepParams []string
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    MediaPackageChannelTypes []string
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    MediaPackageType string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    OptionsRequest string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    OriginHost string
    Origin host. Effective only when origin_stream_play_type is hls.
    OriginRetryTimes float64
    Retry count, range: 1~10, default: 10.
    OriginTimeout float64
    Timeout in ms, range: 1~60000, default: 10000.
    PassThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughParam string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughResponse string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    TimeJitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    Timeouts CssOriginStreamInfoTimeoutsArgs
    UrlReplaceRules []string
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    UsingHttps string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cdn_stream_play_types list(string)
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    domain_name string
    Domain name.
    origin_address_type number
    Origin address type. 1: IP. 2: domain name.
    origin_addresses list(string)
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    origin_stream_play_type string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    origin_stream_type number
    Origin type. 1: live origin. 2: mediaPackage.
    cache_follow_origin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cache_format_rule number
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cache_status_codes list(string)
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    css_origin_stream_info_id string
    ID of the resource.
    customer_name string
    Custom name.
    customization_rules list(object)
    Customization rules list. Effective only when origin_stream_play_type is customization.
    follow_redirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragment_cache number
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragment_headers list(string)
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragment_keep_params list(string)
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hls_play_fragment_count number
    Fragment count, range: 1~10, default: 3.
    hls_play_fragment_duration number
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexer_cache number
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexer_headers list(string)
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexer_keep_params list(string)
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    media_package_channel_types list(string)
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    media_package_type string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    options_request string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    origin_host string
    Origin host. Effective only when origin_stream_play_type is hls.
    origin_retry_times number
    Retry count, range: 1~10, default: 10.
    origin_timeout number
    Timeout in ms, range: 1~60000, default: 10000.
    pass_through_http_header string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_param string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_response string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    time_jitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts object
    url_replace_rules list(string)
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    using_https string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cdnStreamPlayTypes List<String>
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    domainName String
    Domain name.
    originAddressType Double
    Origin address type. 1: IP. 2: domain name.
    originAddresses List<String>
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    originStreamPlayType String
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    originStreamType Double
    Origin type. 1: live origin. 2: mediaPackage.
    cacheFollowOrigin String
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cacheFormatRule Double
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cacheStatusCodes List<String>
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cssOriginStreamInfoId String
    ID of the resource.
    customerName String
    Custom name.
    customizationRules List<CssOriginStreamInfoCustomizationRule>
    Customization rules list. Effective only when origin_stream_play_type is customization.
    followRedirect String
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragmentCache Double
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragmentHeaders List<String>
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragmentKeepParams List<String>
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hlsPlayFragmentCount Double
    Fragment count, range: 1~10, default: 3.
    hlsPlayFragmentDuration Double
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexerCache Double
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexerHeaders List<String>
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexerKeepParams List<String>
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    mediaPackageChannelTypes List<String>
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    mediaPackageType String
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    optionsRequest String
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    originHost String
    Origin host. Effective only when origin_stream_play_type is hls.
    originRetryTimes Double
    Retry count, range: 1~10, default: 10.
    originTimeout Double
    Timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader String
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughParam String
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughResponse String
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    timeJitter String
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts CssOriginStreamInfoTimeouts
    urlReplaceRules List<String>
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    usingHttps String
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cdnStreamPlayTypes string[]
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    domainName string
    Domain name.
    originAddressType number
    Origin address type. 1: IP. 2: domain name.
    originAddresses string[]
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    originStreamPlayType string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    originStreamType number
    Origin type. 1: live origin. 2: mediaPackage.
    cacheFollowOrigin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cacheFormatRule number
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cacheStatusCodes string[]
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cssOriginStreamInfoId string
    ID of the resource.
    customerName string
    Custom name.
    customizationRules CssOriginStreamInfoCustomizationRule[]
    Customization rules list. Effective only when origin_stream_play_type is customization.
    followRedirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragmentCache number
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragmentHeaders string[]
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragmentKeepParams string[]
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hlsPlayFragmentCount number
    Fragment count, range: 1~10, default: 3.
    hlsPlayFragmentDuration number
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexerCache number
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexerHeaders string[]
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexerKeepParams string[]
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    mediaPackageChannelTypes string[]
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    mediaPackageType string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    optionsRequest string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    originHost string
    Origin host. Effective only when origin_stream_play_type is hls.
    originRetryTimes number
    Retry count, range: 1~10, default: 10.
    originTimeout number
    Timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughParam string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughResponse string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    timeJitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts CssOriginStreamInfoTimeouts
    urlReplaceRules string[]
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    usingHttps string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cdn_stream_play_types Sequence[str]
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    domain_name str
    Domain name.
    origin_address_type float
    Origin address type. 1: IP. 2: domain name.
    origin_addresses Sequence[str]
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    origin_stream_play_type str
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    origin_stream_type float
    Origin type. 1: live origin. 2: mediaPackage.
    cache_follow_origin str
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cache_format_rule float
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cache_status_codes Sequence[str]
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    css_origin_stream_info_id str
    ID of the resource.
    customer_name str
    Custom name.
    customization_rules Sequence[CssOriginStreamInfoCustomizationRuleArgs]
    Customization rules list. Effective only when origin_stream_play_type is customization.
    follow_redirect str
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragment_cache float
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragment_headers Sequence[str]
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragment_keep_params Sequence[str]
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hls_play_fragment_count float
    Fragment count, range: 1~10, default: 3.
    hls_play_fragment_duration float
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexer_cache float
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexer_headers Sequence[str]
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexer_keep_params Sequence[str]
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    media_package_channel_types Sequence[str]
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    media_package_type str
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    options_request str
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    origin_host str
    Origin host. Effective only when origin_stream_play_type is hls.
    origin_retry_times float
    Retry count, range: 1~10, default: 10.
    origin_timeout float
    Timeout in ms, range: 1~60000, default: 10000.
    pass_through_http_header str
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_param str
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_response str
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    time_jitter str
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts CssOriginStreamInfoTimeoutsArgs
    url_replace_rules Sequence[str]
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    using_https str
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cdnStreamPlayTypes List<String>
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    domainName String
    Domain name.
    originAddressType Number
    Origin address type. 1: IP. 2: domain name.
    originAddresses List<String>
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    originStreamPlayType String
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    originStreamType Number
    Origin type. 1: live origin. 2: mediaPackage.
    cacheFollowOrigin String
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cacheFormatRule Number
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cacheStatusCodes List<String>
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cssOriginStreamInfoId String
    ID of the resource.
    customerName String
    Custom name.
    customizationRules List<Property Map>
    Customization rules list. Effective only when origin_stream_play_type is customization.
    followRedirect String
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragmentCache Number
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragmentHeaders List<String>
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragmentKeepParams List<String>
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hlsPlayFragmentCount Number
    Fragment count, range: 1~10, default: 3.
    hlsPlayFragmentDuration Number
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexerCache Number
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexerHeaders List<String>
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexerKeepParams List<String>
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    mediaPackageChannelTypes List<String>
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    mediaPackageType String
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    optionsRequest String
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    originHost String
    Origin host. Effective only when origin_stream_play_type is hls.
    originRetryTimes Number
    Retry count, range: 1~10, default: 10.
    originTimeout Number
    Timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader String
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughParam String
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughResponse String
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    timeJitter String
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts Property Map
    urlReplaceRules List<String>
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    usingHttps String
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status double
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status float64
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    id string
    The provider-assigned unique ID for this managed resource.
    status number
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    id String
    The provider-assigned unique ID for this managed resource.
    status Double
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    id string
    The provider-assigned unique ID for this managed resource.
    status number
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    id str
    The provider-assigned unique ID for this managed resource.
    status float
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    id String
    The provider-assigned unique ID for this managed resource.
    status Number
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.

    Look up Existing CssOriginStreamInfo Resource

    Get an existing CssOriginStreamInfo 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?: CssOriginStreamInfoState, opts?: CustomResourceOptions): CssOriginStreamInfo
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cache_follow_origin: Optional[str] = None,
            cache_format_rule: Optional[float] = None,
            cache_status_codes: Optional[Sequence[str]] = None,
            cdn_stream_play_types: Optional[Sequence[str]] = None,
            css_origin_stream_info_id: Optional[str] = None,
            customer_name: Optional[str] = None,
            customization_rules: Optional[Sequence[CssOriginStreamInfoCustomizationRuleArgs]] = None,
            domain_name: Optional[str] = None,
            follow_redirect: Optional[str] = None,
            fragment_cache: Optional[float] = None,
            fragment_headers: Optional[Sequence[str]] = None,
            fragment_keep_params: Optional[Sequence[str]] = None,
            hls_play_fragment_count: Optional[float] = None,
            hls_play_fragment_duration: Optional[float] = None,
            indexer_cache: Optional[float] = None,
            indexer_headers: Optional[Sequence[str]] = None,
            indexer_keep_params: Optional[Sequence[str]] = None,
            media_package_channel_types: Optional[Sequence[str]] = None,
            media_package_type: Optional[str] = None,
            options_request: Optional[str] = None,
            origin_address_type: Optional[float] = None,
            origin_addresses: Optional[Sequence[str]] = None,
            origin_host: Optional[str] = None,
            origin_retry_times: Optional[float] = None,
            origin_stream_play_type: Optional[str] = None,
            origin_stream_type: Optional[float] = None,
            origin_timeout: Optional[float] = None,
            pass_through_http_header: Optional[str] = None,
            pass_through_param: Optional[str] = None,
            pass_through_response: Optional[str] = None,
            status: Optional[float] = None,
            time_jitter: Optional[str] = None,
            timeouts: Optional[CssOriginStreamInfoTimeoutsArgs] = None,
            url_replace_rules: Optional[Sequence[str]] = None,
            using_https: Optional[str] = None) -> CssOriginStreamInfo
    func GetCssOriginStreamInfo(ctx *Context, name string, id IDInput, state *CssOriginStreamInfoState, opts ...ResourceOption) (*CssOriginStreamInfo, error)
    public static CssOriginStreamInfo Get(string name, Input<string> id, CssOriginStreamInfoState? state, CustomResourceOptions? opts = null)
    public static CssOriginStreamInfo get(String name, Output<String> id, CssOriginStreamInfoState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:CssOriginStreamInfo    get:      id: ${id}
    import {
      to = tencentcloud_cssoriginstreaminfo.example
      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:
    CacheFollowOrigin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    CacheFormatRule double
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    CacheStatusCodes List<string>
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    CdnStreamPlayTypes List<string>
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    CssOriginStreamInfoId string
    ID of the resource.
    CustomerName string
    Custom name.
    CustomizationRules List<CssOriginStreamInfoCustomizationRule>
    Customization rules list. Effective only when origin_stream_play_type is customization.
    DomainName string
    Domain name.
    FollowRedirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    FragmentCache double
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    FragmentHeaders List<string>
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    FragmentKeepParams List<string>
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    HlsPlayFragmentCount double
    Fragment count, range: 1~10, default: 3.
    HlsPlayFragmentDuration double
    Fragment duration in ms, range: 1~10000, default: 3000.
    IndexerCache double
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    IndexerHeaders List<string>
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    IndexerKeepParams List<string>
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    MediaPackageChannelTypes List<string>
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    MediaPackageType string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    OptionsRequest string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    OriginAddressType double
    Origin address type. 1: IP. 2: domain name.
    OriginAddresses List<string>
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    OriginHost string
    Origin host. Effective only when origin_stream_play_type is hls.
    OriginRetryTimes double
    Retry count, range: 1~10, default: 10.
    OriginStreamPlayType string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    OriginStreamType double
    Origin type. 1: live origin. 2: mediaPackage.
    OriginTimeout double
    Timeout in ms, range: 1~60000, default: 10000.
    PassThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughParam string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughResponse string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    Status double
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    TimeJitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    Timeouts CssOriginStreamInfoTimeouts
    UrlReplaceRules List<string>
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    UsingHttps string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    CacheFollowOrigin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    CacheFormatRule float64
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    CacheStatusCodes []string
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    CdnStreamPlayTypes []string
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    CssOriginStreamInfoId string
    ID of the resource.
    CustomerName string
    Custom name.
    CustomizationRules []CssOriginStreamInfoCustomizationRuleArgs
    Customization rules list. Effective only when origin_stream_play_type is customization.
    DomainName string
    Domain name.
    FollowRedirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    FragmentCache float64
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    FragmentHeaders []string
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    FragmentKeepParams []string
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    HlsPlayFragmentCount float64
    Fragment count, range: 1~10, default: 3.
    HlsPlayFragmentDuration float64
    Fragment duration in ms, range: 1~10000, default: 3000.
    IndexerCache float64
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    IndexerHeaders []string
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    IndexerKeepParams []string
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    MediaPackageChannelTypes []string
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    MediaPackageType string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    OptionsRequest string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    OriginAddressType float64
    Origin address type. 1: IP. 2: domain name.
    OriginAddresses []string
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    OriginHost string
    Origin host. Effective only when origin_stream_play_type is hls.
    OriginRetryTimes float64
    Retry count, range: 1~10, default: 10.
    OriginStreamPlayType string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    OriginStreamType float64
    Origin type. 1: live origin. 2: mediaPackage.
    OriginTimeout float64
    Timeout in ms, range: 1~60000, default: 10000.
    PassThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughParam string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    PassThroughResponse string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    Status float64
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    TimeJitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    Timeouts CssOriginStreamInfoTimeoutsArgs
    UrlReplaceRules []string
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    UsingHttps string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cache_follow_origin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cache_format_rule number
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cache_status_codes list(string)
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cdn_stream_play_types list(string)
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    css_origin_stream_info_id string
    ID of the resource.
    customer_name string
    Custom name.
    customization_rules list(object)
    Customization rules list. Effective only when origin_stream_play_type is customization.
    domain_name string
    Domain name.
    follow_redirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragment_cache number
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragment_headers list(string)
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragment_keep_params list(string)
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hls_play_fragment_count number
    Fragment count, range: 1~10, default: 3.
    hls_play_fragment_duration number
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexer_cache number
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexer_headers list(string)
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexer_keep_params list(string)
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    media_package_channel_types list(string)
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    media_package_type string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    options_request string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    origin_address_type number
    Origin address type. 1: IP. 2: domain name.
    origin_addresses list(string)
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    origin_host string
    Origin host. Effective only when origin_stream_play_type is hls.
    origin_retry_times number
    Retry count, range: 1~10, default: 10.
    origin_stream_play_type string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    origin_stream_type number
    Origin type. 1: live origin. 2: mediaPackage.
    origin_timeout number
    Timeout in ms, range: 1~60000, default: 10000.
    pass_through_http_header string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_param string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_response string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    status number
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    time_jitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts object
    url_replace_rules list(string)
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    using_https string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cacheFollowOrigin String
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cacheFormatRule Double
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cacheStatusCodes List<String>
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cdnStreamPlayTypes List<String>
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    cssOriginStreamInfoId String
    ID of the resource.
    customerName String
    Custom name.
    customizationRules List<CssOriginStreamInfoCustomizationRule>
    Customization rules list. Effective only when origin_stream_play_type is customization.
    domainName String
    Domain name.
    followRedirect String
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragmentCache Double
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragmentHeaders List<String>
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragmentKeepParams List<String>
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hlsPlayFragmentCount Double
    Fragment count, range: 1~10, default: 3.
    hlsPlayFragmentDuration Double
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexerCache Double
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexerHeaders List<String>
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexerKeepParams List<String>
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    mediaPackageChannelTypes List<String>
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    mediaPackageType String
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    optionsRequest String
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    originAddressType Double
    Origin address type. 1: IP. 2: domain name.
    originAddresses List<String>
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    originHost String
    Origin host. Effective only when origin_stream_play_type is hls.
    originRetryTimes Double
    Retry count, range: 1~10, default: 10.
    originStreamPlayType String
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    originStreamType Double
    Origin type. 1: live origin. 2: mediaPackage.
    originTimeout Double
    Timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader String
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughParam String
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughResponse String
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    status Double
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    timeJitter String
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts CssOriginStreamInfoTimeouts
    urlReplaceRules List<String>
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    usingHttps String
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cacheFollowOrigin string
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cacheFormatRule number
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cacheStatusCodes string[]
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cdnStreamPlayTypes string[]
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    cssOriginStreamInfoId string
    ID of the resource.
    customerName string
    Custom name.
    customizationRules CssOriginStreamInfoCustomizationRule[]
    Customization rules list. Effective only when origin_stream_play_type is customization.
    domainName string
    Domain name.
    followRedirect string
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragmentCache number
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragmentHeaders string[]
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragmentKeepParams string[]
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hlsPlayFragmentCount number
    Fragment count, range: 1~10, default: 3.
    hlsPlayFragmentDuration number
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexerCache number
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexerHeaders string[]
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexerKeepParams string[]
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    mediaPackageChannelTypes string[]
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    mediaPackageType string
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    optionsRequest string
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    originAddressType number
    Origin address type. 1: IP. 2: domain name.
    originAddresses string[]
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    originHost string
    Origin host. Effective only when origin_stream_play_type is hls.
    originRetryTimes number
    Retry count, range: 1~10, default: 10.
    originStreamPlayType string
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    originStreamType number
    Origin type. 1: live origin. 2: mediaPackage.
    originTimeout number
    Timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughParam string
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughResponse string
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    status number
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    timeJitter string
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts CssOriginStreamInfoTimeouts
    urlReplaceRules string[]
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    usingHttps string
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cache_follow_origin str
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cache_format_rule float
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cache_status_codes Sequence[str]
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cdn_stream_play_types Sequence[str]
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    css_origin_stream_info_id str
    ID of the resource.
    customer_name str
    Custom name.
    customization_rules Sequence[CssOriginStreamInfoCustomizationRuleArgs]
    Customization rules list. Effective only when origin_stream_play_type is customization.
    domain_name str
    Domain name.
    follow_redirect str
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragment_cache float
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragment_headers Sequence[str]
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragment_keep_params Sequence[str]
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hls_play_fragment_count float
    Fragment count, range: 1~10, default: 3.
    hls_play_fragment_duration float
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexer_cache float
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexer_headers Sequence[str]
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexer_keep_params Sequence[str]
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    media_package_channel_types Sequence[str]
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    media_package_type str
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    options_request str
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    origin_address_type float
    Origin address type. 1: IP. 2: domain name.
    origin_addresses Sequence[str]
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    origin_host str
    Origin host. Effective only when origin_stream_play_type is hls.
    origin_retry_times float
    Retry count, range: 1~10, default: 10.
    origin_stream_play_type str
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    origin_stream_type float
    Origin type. 1: live origin. 2: mediaPackage.
    origin_timeout float
    Timeout in ms, range: 1~60000, default: 10000.
    pass_through_http_header str
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_param str
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    pass_through_response str
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    status float
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    time_jitter str
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts CssOriginStreamInfoTimeoutsArgs
    url_replace_rules Sequence[str]
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    using_https str
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.
    cacheFollowOrigin String
    Follow origin cache. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    cacheFormatRule Number
    Cache format rule. 0: default. 1: live origin format. Effective only when origin_stream_play_type is customization.
    cacheStatusCodes List<String>
    Status code cache list. Format: cacheKey:interval. Effective only when origin_stream_play_type is hls.
    cdnStreamPlayTypes List<String>
    CDN play protocol list. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    cssOriginStreamInfoId String
    ID of the resource.
    customerName String
    Custom name.
    customizationRules List<Property Map>
    Customization rules list. Effective only when origin_stream_play_type is customization.
    domainName String
    Domain name.
    followRedirect String
    Follow 301/302. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    fragmentCache Number
    Fragment cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    fragmentHeaders List<String>
    Fragment custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    fragmentKeepParams List<String>
    Fragment cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    hlsPlayFragmentCount Number
    Fragment count, range: 1~10, default: 3.
    hlsPlayFragmentDuration Number
    Fragment duration in ms, range: 1~10000, default: 3000.
    indexerCache Number
    Index cache in ms, range: 1~60000, default: 10000. Effective only when origin_stream_play_type is hls.
    indexerHeaders List<String>
    Index custom headers, max 10 items. Effective only when origin_stream_play_type is hls.
    indexerKeepParams List<String>
    Index cache keep param list, max 30 items. Effective only when origin_stream_play_type is hls.
    mediaPackageChannelTypes List<String>
    MediaPackage channel types. Valid values: normal, ssai, linear_assembly. Effective only when origin_stream_type is 2 and media_package_type is media_package.
    mediaPackageType String
    MediaPackage type. Valid values: media_package, media_package_pure_ad, media_package_mix_ad. Effective only when origin_stream_type is 2.
    optionsRequest String
    OPTIONS support. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    originAddressType Number
    Origin address type. 1: IP. 2: domain name.
    originAddresses List<String>
    Origin address list. Each item format: host:port. Port can be empty but colon is required.
    originHost String
    Origin host. Effective only when origin_stream_play_type is hls.
    originRetryTimes Number
    Retry count, range: 1~10, default: 10.
    originStreamPlayType String
    Origin stream play protocol. Valid values: rtmp, flv, hls, dash, hls|dash, customization.
    originStreamType Number
    Origin type. 1: live origin. 2: mediaPackage.
    originTimeout Number
    Timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader String
    Whether to pass through HTTP headers. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughParam String
    Whether to pass through parameters. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    passThroughResponse String
    Whether to pass through response. Valid values: on, off. Effective only when origin_stream_play_type is hls.
    status Number
    Configuration status. 0: configuring. 1: success. 2: closing. 3: closed successfully.
    timeJitter String
    Timestamp correction. Valid values: on, off. Effective only when origin_stream_play_type is rtmp or flv.
    timeouts Property Map
    urlReplaceRules List<String>
    URL rewrite rules. Format: url1<|>url2. Effective only when origin_stream_play_type is hls.
    usingHttps String
    HTTPS back-to-origin. Valid values: on, off. Effective only when origin_stream_play_type is flv or hls.

    Supporting Types

    CssOriginStreamInfoCustomizationRule, CssOriginStreamInfoCustomizationRuleArgs

    MatchRule string
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    OriginAddressType double
    Origin address type. 1: IP. 2: domain name.
    OriginAddresses List<string>
    Origin address list.
    Cache double
    Cache duration in s, range: 0~31536000.
    CacheStatusCodes List<string>
    Status code cache list.
    CustomizationCacheFollowOrigin double
    Custom cache follow origin. 0: disabled. 1: enabled.
    HttpHeaders List<string>
    Custom headers list.
    KeepHttpHeaders List<string>
    Cache HTTP header key list.
    KeepParams List<string>
    Cache key list.
    OptionsRequest string
    OPTIONS support. Valid values: on, off.
    OriginHost string
    Origin host.
    OriginRetryTimes double
    Retry count, range: 1~10.
    OriginTimeout double
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    PassThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off.
    PassThroughParam string
    Whether to pass through parameters. Valid values: on, off.
    PassThroughResponse string
    Whether to pass through response. Valid values: on, off.
    UrlReplaceRules List<string>
    URL rewrite rules.
    MatchRule string
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    OriginAddressType float64
    Origin address type. 1: IP. 2: domain name.
    OriginAddresses []string
    Origin address list.
    Cache float64
    Cache duration in s, range: 0~31536000.
    CacheStatusCodes []string
    Status code cache list.
    CustomizationCacheFollowOrigin float64
    Custom cache follow origin. 0: disabled. 1: enabled.
    HttpHeaders []string
    Custom headers list.
    KeepHttpHeaders []string
    Cache HTTP header key list.
    KeepParams []string
    Cache key list.
    OptionsRequest string
    OPTIONS support. Valid values: on, off.
    OriginHost string
    Origin host.
    OriginRetryTimes float64
    Retry count, range: 1~10.
    OriginTimeout float64
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    PassThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off.
    PassThroughParam string
    Whether to pass through parameters. Valid values: on, off.
    PassThroughResponse string
    Whether to pass through response. Valid values: on, off.
    UrlReplaceRules []string
    URL rewrite rules.
    match_rule string
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    origin_address_type number
    Origin address type. 1: IP. 2: domain name.
    origin_addresses list(string)
    Origin address list.
    cache number
    Cache duration in s, range: 0~31536000.
    cache_status_codes list(string)
    Status code cache list.
    customization_cache_follow_origin number
    Custom cache follow origin. 0: disabled. 1: enabled.
    http_headers list(string)
    Custom headers list.
    keep_http_headers list(string)
    Cache HTTP header key list.
    keep_params list(string)
    Cache key list.
    options_request string
    OPTIONS support. Valid values: on, off.
    origin_host string
    Origin host.
    origin_retry_times number
    Retry count, range: 1~10.
    origin_timeout number
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    pass_through_http_header string
    Whether to pass through HTTP headers. Valid values: on, off.
    pass_through_param string
    Whether to pass through parameters. Valid values: on, off.
    pass_through_response string
    Whether to pass through response. Valid values: on, off.
    url_replace_rules list(string)
    URL rewrite rules.
    matchRule String
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    originAddressType Double
    Origin address type. 1: IP. 2: domain name.
    originAddresses List<String>
    Origin address list.
    cache Double
    Cache duration in s, range: 0~31536000.
    cacheStatusCodes List<String>
    Status code cache list.
    customizationCacheFollowOrigin Double
    Custom cache follow origin. 0: disabled. 1: enabled.
    httpHeaders List<String>
    Custom headers list.
    keepHttpHeaders List<String>
    Cache HTTP header key list.
    keepParams List<String>
    Cache key list.
    optionsRequest String
    OPTIONS support. Valid values: on, off.
    originHost String
    Origin host.
    originRetryTimes Double
    Retry count, range: 1~10.
    originTimeout Double
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader String
    Whether to pass through HTTP headers. Valid values: on, off.
    passThroughParam String
    Whether to pass through parameters. Valid values: on, off.
    passThroughResponse String
    Whether to pass through response. Valid values: on, off.
    urlReplaceRules List<String>
    URL rewrite rules.
    matchRule string
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    originAddressType number
    Origin address type. 1: IP. 2: domain name.
    originAddresses string[]
    Origin address list.
    cache number
    Cache duration in s, range: 0~31536000.
    cacheStatusCodes string[]
    Status code cache list.
    customizationCacheFollowOrigin number
    Custom cache follow origin. 0: disabled. 1: enabled.
    httpHeaders string[]
    Custom headers list.
    keepHttpHeaders string[]
    Cache HTTP header key list.
    keepParams string[]
    Cache key list.
    optionsRequest string
    OPTIONS support. Valid values: on, off.
    originHost string
    Origin host.
    originRetryTimes number
    Retry count, range: 1~10.
    originTimeout number
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader string
    Whether to pass through HTTP headers. Valid values: on, off.
    passThroughParam string
    Whether to pass through parameters. Valid values: on, off.
    passThroughResponse string
    Whether to pass through response. Valid values: on, off.
    urlReplaceRules string[]
    URL rewrite rules.
    match_rule str
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    origin_address_type float
    Origin address type. 1: IP. 2: domain name.
    origin_addresses Sequence[str]
    Origin address list.
    cache float
    Cache duration in s, range: 0~31536000.
    cache_status_codes Sequence[str]
    Status code cache list.
    customization_cache_follow_origin float
    Custom cache follow origin. 0: disabled. 1: enabled.
    http_headers Sequence[str]
    Custom headers list.
    keep_http_headers Sequence[str]
    Cache HTTP header key list.
    keep_params Sequence[str]
    Cache key list.
    options_request str
    OPTIONS support. Valid values: on, off.
    origin_host str
    Origin host.
    origin_retry_times float
    Retry count, range: 1~10.
    origin_timeout float
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    pass_through_http_header str
    Whether to pass through HTTP headers. Valid values: on, off.
    pass_through_param str
    Whether to pass through parameters. Valid values: on, off.
    pass_through_response str
    Whether to pass through response. Valid values: on, off.
    url_replace_rules Sequence[str]
    URL rewrite rules.
    matchRule String
    Match rule. Valid values: .m3u8, .mpd, .ts, .mp4, .m4s, .m4a, .m4i, .m4v, .m4f, .aac, .webm.
    originAddressType Number
    Origin address type. 1: IP. 2: domain name.
    originAddresses List<String>
    Origin address list.
    cache Number
    Cache duration in s, range: 0~31536000.
    cacheStatusCodes List<String>
    Status code cache list.
    customizationCacheFollowOrigin Number
    Custom cache follow origin. 0: disabled. 1: enabled.
    httpHeaders List<String>
    Custom headers list.
    keepHttpHeaders List<String>
    Cache HTTP header key list.
    keepParams List<String>
    Cache key list.
    optionsRequest String
    OPTIONS support. Valid values: on, off.
    originHost String
    Origin host.
    originRetryTimes Number
    Retry count, range: 1~10.
    originTimeout Number
    Back-to-origin timeout in ms, range: 1~60000, default: 10000.
    passThroughHttpHeader String
    Whether to pass through HTTP headers. Valid values: on, off.
    passThroughParam String
    Whether to pass through parameters. Valid values: on, off.
    passThroughResponse String
    Whether to pass through response. Valid values: on, off.
    urlReplaceRules List<String>
    URL rewrite rules.

    CssOriginStreamInfoTimeouts, CssOriginStreamInfoTimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create string
    delete string
    update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    CSS origin stream info can be imported using the domain name, e.g.

    $ pulumi import tencentcloud:index/cssOriginStreamInfo:CssOriginStreamInfo example www.demo.com
    

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

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.82.97
    published on Saturday, May 23, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial