1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getCdnDomains
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getCdnDomains

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query the detail information of CDN domain.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const foo = tencentcloud.getCdnDomains({
        domain: "xxxx.com",
        fullUrlCache: false,
        httpsSwitch: "on",
        originPullProtocol: "follow",
        serviceType: "web",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo = tencentcloud.get_cdn_domains(domain="xxxx.com",
        full_url_cache=False,
        https_switch="on",
        origin_pull_protocol="follow",
        service_type="web")
    
    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.GetCdnDomains(ctx, &tencentcloud.GetCdnDomainsArgs{
    			Domain:             pulumi.StringRef("xxxx.com"),
    			FullUrlCache:       pulumi.BoolRef(false),
    			HttpsSwitch:        pulumi.StringRef("on"),
    			OriginPullProtocol: pulumi.StringRef("follow"),
    			ServiceType:        pulumi.StringRef("web"),
    		}, nil)
    		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 foo = Tencentcloud.GetCdnDomains.Invoke(new()
        {
            Domain = "xxxx.com",
            FullUrlCache = false,
            HttpsSwitch = "on",
            OriginPullProtocol = "follow",
            ServiceType = "web",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetCdnDomainsArgs;
    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 foo = TencentcloudFunctions.getCdnDomains(GetCdnDomainsArgs.builder()
                .domain("xxxx.com")
                .fullUrlCache(false)
                .httpsSwitch("on")
                .originPullProtocol("follow")
                .serviceType("web")
                .build());
    
        }
    }
    
    variables:
      foo:
        fn::invoke:
          function: tencentcloud:getCdnDomains
          arguments:
            domain: xxxx.com
            fullUrlCache: false
            httpsSwitch: on
            originPullProtocol: follow
            serviceType: web
    

    Using getCdnDomains

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCdnDomains(args: GetCdnDomainsArgs, opts?: InvokeOptions): Promise<GetCdnDomainsResult>
    function getCdnDomainsOutput(args: GetCdnDomainsOutputArgs, opts?: InvokeOptions): Output<GetCdnDomainsResult>
    def get_cdn_domains(domain: Optional[str] = None,
                        full_url_cache: Optional[bool] = None,
                        https_switch: Optional[str] = None,
                        id: Optional[str] = None,
                        origin_pull_protocol: Optional[str] = None,
                        result_output_file: Optional[str] = None,
                        service_type: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetCdnDomainsResult
    def get_cdn_domains_output(domain: Optional[pulumi.Input[str]] = None,
                        full_url_cache: Optional[pulumi.Input[bool]] = None,
                        https_switch: Optional[pulumi.Input[str]] = None,
                        id: Optional[pulumi.Input[str]] = None,
                        origin_pull_protocol: Optional[pulumi.Input[str]] = None,
                        result_output_file: Optional[pulumi.Input[str]] = None,
                        service_type: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetCdnDomainsResult]
    func GetCdnDomains(ctx *Context, args *GetCdnDomainsArgs, opts ...InvokeOption) (*GetCdnDomainsResult, error)
    func GetCdnDomainsOutput(ctx *Context, args *GetCdnDomainsOutputArgs, opts ...InvokeOption) GetCdnDomainsResultOutput

    > Note: This function is named GetCdnDomains in the Go SDK.

    public static class GetCdnDomains 
    {
        public static Task<GetCdnDomainsResult> InvokeAsync(GetCdnDomainsArgs args, InvokeOptions? opts = null)
        public static Output<GetCdnDomainsResult> Invoke(GetCdnDomainsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCdnDomainsResult> getCdnDomains(GetCdnDomainsArgs args, InvokeOptions options)
    public static Output<GetCdnDomainsResult> getCdnDomains(GetCdnDomainsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getCdnDomains:getCdnDomains
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Domain string
    Acceleration domain name.
    FullUrlCache bool
    Whether to enable full-path cache.
    HttpsSwitch string
    HTTPS configuration. Valid values: on, off and processing.
    Id string
    Domain name ID.
    OriginPullProtocol string
    Origin-pull protocol configuration. Valid values: http, https and follow.
    ResultOutputFile string
    Used to save results.
    ServiceType string
    Service type of acceleration domain name. The available value include web, download and media.
    Domain string
    Acceleration domain name.
    FullUrlCache bool
    Whether to enable full-path cache.
    HttpsSwitch string
    HTTPS configuration. Valid values: on, off and processing.
    Id string
    Domain name ID.
    OriginPullProtocol string
    Origin-pull protocol configuration. Valid values: http, https and follow.
    ResultOutputFile string
    Used to save results.
    ServiceType string
    Service type of acceleration domain name. The available value include web, download and media.
    domain String
    Acceleration domain name.
    fullUrlCache Boolean
    Whether to enable full-path cache.
    httpsSwitch String
    HTTPS configuration. Valid values: on, off and processing.
    id String
    Domain name ID.
    originPullProtocol String
    Origin-pull protocol configuration. Valid values: http, https and follow.
    resultOutputFile String
    Used to save results.
    serviceType String
    Service type of acceleration domain name. The available value include web, download and media.
    domain string
    Acceleration domain name.
    fullUrlCache boolean
    Whether to enable full-path cache.
    httpsSwitch string
    HTTPS configuration. Valid values: on, off and processing.
    id string
    Domain name ID.
    originPullProtocol string
    Origin-pull protocol configuration. Valid values: http, https and follow.
    resultOutputFile string
    Used to save results.
    serviceType string
    Service type of acceleration domain name. The available value include web, download and media.
    domain str
    Acceleration domain name.
    full_url_cache bool
    Whether to enable full-path cache.
    https_switch str
    HTTPS configuration. Valid values: on, off and processing.
    id str
    Domain name ID.
    origin_pull_protocol str
    Origin-pull protocol configuration. Valid values: http, https and follow.
    result_output_file str
    Used to save results.
    service_type str
    Service type of acceleration domain name. The available value include web, download and media.
    domain String
    Acceleration domain name.
    fullUrlCache Boolean
    Whether to enable full-path cache.
    httpsSwitch String
    HTTPS configuration. Valid values: on, off and processing.
    id String
    Domain name ID.
    originPullProtocol String
    Origin-pull protocol configuration. Valid values: http, https and follow.
    resultOutputFile String
    Used to save results.
    serviceType String
    Service type of acceleration domain name. The available value include web, download and media.

    getCdnDomains Result

    The following output properties are available:

    DomainLists List<GetCdnDomainsDomainList>
    An information list of cdn domain. Each element contains the following attributes:
    Id string
    Domain name ID.
    Domain string
    Acceleration domain name.
    FullUrlCache bool
    Whether to enable full-path cache.
    HttpsSwitch string
    HTTPS configuration switch.
    OriginPullProtocol string
    Origin-pull protocol configuration.
    ResultOutputFile string
    ServiceType string
    Service type of acceleration domain name.
    DomainLists []GetCdnDomainsDomainList
    An information list of cdn domain. Each element contains the following attributes:
    Id string
    Domain name ID.
    Domain string
    Acceleration domain name.
    FullUrlCache bool
    Whether to enable full-path cache.
    HttpsSwitch string
    HTTPS configuration switch.
    OriginPullProtocol string
    Origin-pull protocol configuration.
    ResultOutputFile string
    ServiceType string
    Service type of acceleration domain name.
    domainLists List<GetCdnDomainsDomainList>
    An information list of cdn domain. Each element contains the following attributes:
    id String
    Domain name ID.
    domain String
    Acceleration domain name.
    fullUrlCache Boolean
    Whether to enable full-path cache.
    httpsSwitch String
    HTTPS configuration switch.
    originPullProtocol String
    Origin-pull protocol configuration.
    resultOutputFile String
    serviceType String
    Service type of acceleration domain name.
    domainLists GetCdnDomainsDomainList[]
    An information list of cdn domain. Each element contains the following attributes:
    id string
    Domain name ID.
    domain string
    Acceleration domain name.
    fullUrlCache boolean
    Whether to enable full-path cache.
    httpsSwitch string
    HTTPS configuration switch.
    originPullProtocol string
    Origin-pull protocol configuration.
    resultOutputFile string
    serviceType string
    Service type of acceleration domain name.
    domain_lists Sequence[GetCdnDomainsDomainList]
    An information list of cdn domain. Each element contains the following attributes:
    id str
    Domain name ID.
    domain str
    Acceleration domain name.
    full_url_cache bool
    Whether to enable full-path cache.
    https_switch str
    HTTPS configuration switch.
    origin_pull_protocol str
    Origin-pull protocol configuration.
    result_output_file str
    service_type str
    Service type of acceleration domain name.
    domainLists List<Property Map>
    An information list of cdn domain. Each element contains the following attributes:
    id String
    Domain name ID.
    domain String
    Acceleration domain name.
    fullUrlCache Boolean
    Whether to enable full-path cache.
    httpsSwitch String
    HTTPS configuration switch.
    originPullProtocol String
    Origin-pull protocol configuration.
    resultOutputFile String
    serviceType String
    Service type of acceleration domain name.

    Supporting Types

    GetCdnDomainsDomainList

    Area string
    Acceleration region.
    Cname string
    CNAME address of domain name.
    CreateTime string
    Domain name creation time.
    Domain string
    Acceleration domain name.
    FullUrlCache bool
    Whether to enable full-path cache.
    HttpsConfigs List<GetCdnDomainsDomainListHttpsConfig>
    HTTPS acceleration configuration. It's a list and consist of at most one item.
    Id string
    Domain name ID.
    Origins List<GetCdnDomainsDomainListOrigin>
    Origin server configuration.
    ProjectId double
    The project CDN belongs to.
    RangeOriginSwitch string
    Sharding back to source configuration switch.
    RequestHeaders List<GetCdnDomainsDomainListRequestHeader>
    Request header configuration.
    RuleCaches List<GetCdnDomainsDomainListRuleCach>
    Advanced path cache configuration.
    ServiceType string
    Service type of acceleration domain name. The available value include web, download and media.
    Status string
    Acceleration service status.
    Tags Dictionary<string, string>
    Tags of cdn domain.
    UpdateTime string
    Last modified time of domain name.
    Area string
    Acceleration region.
    Cname string
    CNAME address of domain name.
    CreateTime string
    Domain name creation time.
    Domain string
    Acceleration domain name.
    FullUrlCache bool
    Whether to enable full-path cache.
    HttpsConfigs []GetCdnDomainsDomainListHttpsConfig
    HTTPS acceleration configuration. It's a list and consist of at most one item.
    Id string
    Domain name ID.
    Origins []GetCdnDomainsDomainListOrigin
    Origin server configuration.
    ProjectId float64
    The project CDN belongs to.
    RangeOriginSwitch string
    Sharding back to source configuration switch.
    RequestHeaders []GetCdnDomainsDomainListRequestHeader
    Request header configuration.
    RuleCaches []GetCdnDomainsDomainListRuleCach
    Advanced path cache configuration.
    ServiceType string
    Service type of acceleration domain name. The available value include web, download and media.
    Status string
    Acceleration service status.
    Tags map[string]string
    Tags of cdn domain.
    UpdateTime string
    Last modified time of domain name.
    area String
    Acceleration region.
    cname String
    CNAME address of domain name.
    createTime String
    Domain name creation time.
    domain String
    Acceleration domain name.
    fullUrlCache Boolean
    Whether to enable full-path cache.
    httpsConfigs List<GetCdnDomainsDomainListHttpsConfig>
    HTTPS acceleration configuration. It's a list and consist of at most one item.
    id String
    Domain name ID.
    origins List<GetCdnDomainsDomainListOrigin>
    Origin server configuration.
    projectId Double
    The project CDN belongs to.
    rangeOriginSwitch String
    Sharding back to source configuration switch.
    requestHeaders List<GetCdnDomainsDomainListRequestHeader>
    Request header configuration.
    ruleCaches List<GetCdnDomainsDomainListRuleCach>
    Advanced path cache configuration.
    serviceType String
    Service type of acceleration domain name. The available value include web, download and media.
    status String
    Acceleration service status.
    tags Map<String,String>
    Tags of cdn domain.
    updateTime String
    Last modified time of domain name.
    area string
    Acceleration region.
    cname string
    CNAME address of domain name.
    createTime string
    Domain name creation time.
    domain string
    Acceleration domain name.
    fullUrlCache boolean
    Whether to enable full-path cache.
    httpsConfigs GetCdnDomainsDomainListHttpsConfig[]
    HTTPS acceleration configuration. It's a list and consist of at most one item.
    id string
    Domain name ID.
    origins GetCdnDomainsDomainListOrigin[]
    Origin server configuration.
    projectId number
    The project CDN belongs to.
    rangeOriginSwitch string
    Sharding back to source configuration switch.
    requestHeaders GetCdnDomainsDomainListRequestHeader[]
    Request header configuration.
    ruleCaches GetCdnDomainsDomainListRuleCach[]
    Advanced path cache configuration.
    serviceType string
    Service type of acceleration domain name. The available value include web, download and media.
    status string
    Acceleration service status.
    tags {[key: string]: string}
    Tags of cdn domain.
    updateTime string
    Last modified time of domain name.
    area str
    Acceleration region.
    cname str
    CNAME address of domain name.
    create_time str
    Domain name creation time.
    domain str
    Acceleration domain name.
    full_url_cache bool
    Whether to enable full-path cache.
    https_configs Sequence[GetCdnDomainsDomainListHttpsConfig]
    HTTPS acceleration configuration. It's a list and consist of at most one item.
    id str
    Domain name ID.
    origins Sequence[GetCdnDomainsDomainListOrigin]
    Origin server configuration.
    project_id float
    The project CDN belongs to.
    range_origin_switch str
    Sharding back to source configuration switch.
    request_headers Sequence[GetCdnDomainsDomainListRequestHeader]
    Request header configuration.
    rule_caches Sequence[GetCdnDomainsDomainListRuleCach]
    Advanced path cache configuration.
    service_type str
    Service type of acceleration domain name. The available value include web, download and media.
    status str
    Acceleration service status.
    tags Mapping[str, str]
    Tags of cdn domain.
    update_time str
    Last modified time of domain name.
    area String
    Acceleration region.
    cname String
    CNAME address of domain name.
    createTime String
    Domain name creation time.
    domain String
    Acceleration domain name.
    fullUrlCache Boolean
    Whether to enable full-path cache.
    httpsConfigs List<Property Map>
    HTTPS acceleration configuration. It's a list and consist of at most one item.
    id String
    Domain name ID.
    origins List<Property Map>
    Origin server configuration.
    projectId Number
    The project CDN belongs to.
    rangeOriginSwitch String
    Sharding back to source configuration switch.
    requestHeaders List<Property Map>
    Request header configuration.
    ruleCaches List<Property Map>
    Advanced path cache configuration.
    serviceType String
    Service type of acceleration domain name. The available value include web, download and media.
    status String
    Acceleration service status.
    tags Map<String>
    Tags of cdn domain.
    updateTime String
    Last modified time of domain name.

    GetCdnDomainsDomainListHttpsConfig

    Http2Switch string
    HTTP2 configuration switch.
    HttpsSwitch string
    HTTPS configuration. Valid values: on, off and processing.
    OcspStaplingSwitch string
    OCSP configuration switch.
    SpdySwitch string
    Spdy configuration switch.
    VerifyClient string
    Client certificate authentication feature.
    Http2Switch string
    HTTP2 configuration switch.
    HttpsSwitch string
    HTTPS configuration. Valid values: on, off and processing.
    OcspStaplingSwitch string
    OCSP configuration switch.
    SpdySwitch string
    Spdy configuration switch.
    VerifyClient string
    Client certificate authentication feature.
    http2Switch String
    HTTP2 configuration switch.
    httpsSwitch String
    HTTPS configuration. Valid values: on, off and processing.
    ocspStaplingSwitch String
    OCSP configuration switch.
    spdySwitch String
    Spdy configuration switch.
    verifyClient String
    Client certificate authentication feature.
    http2Switch string
    HTTP2 configuration switch.
    httpsSwitch string
    HTTPS configuration. Valid values: on, off and processing.
    ocspStaplingSwitch string
    OCSP configuration switch.
    spdySwitch string
    Spdy configuration switch.
    verifyClient string
    Client certificate authentication feature.
    http2_switch str
    HTTP2 configuration switch.
    https_switch str
    HTTPS configuration. Valid values: on, off and processing.
    ocsp_stapling_switch str
    OCSP configuration switch.
    spdy_switch str
    Spdy configuration switch.
    verify_client str
    Client certificate authentication feature.
    http2Switch String
    HTTP2 configuration switch.
    httpsSwitch String
    HTTPS configuration. Valid values: on, off and processing.
    ocspStaplingSwitch String
    OCSP configuration switch.
    spdySwitch String
    Spdy configuration switch.
    verifyClient String
    Client certificate authentication feature.

    GetCdnDomainsDomainListOrigin

    BackupOriginLists List<string>
    Backup origin server list.
    BackupOriginType string
    Backup origin server type.
    BackupServerName string
    Host header used when accessing the backup origin server. If left empty, the ServerName of master origin server will be used by default.
    CosPrivateAccess string
    When OriginType is COS, you can specify if access to private buckets is allowed.
    OriginLists List<string>
    Master origin server list.
    OriginPullProtocol string
    Origin-pull protocol configuration. Valid values: http, https and follow.
    OriginType string
    Master origin server type.
    ServerName string
    Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
    BackupOriginLists []string
    Backup origin server list.
    BackupOriginType string
    Backup origin server type.
    BackupServerName string
    Host header used when accessing the backup origin server. If left empty, the ServerName of master origin server will be used by default.
    CosPrivateAccess string
    When OriginType is COS, you can specify if access to private buckets is allowed.
    OriginLists []string
    Master origin server list.
    OriginPullProtocol string
    Origin-pull protocol configuration. Valid values: http, https and follow.
    OriginType string
    Master origin server type.
    ServerName string
    Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
    backupOriginLists List<String>
    Backup origin server list.
    backupOriginType String
    Backup origin server type.
    backupServerName String
    Host header used when accessing the backup origin server. If left empty, the ServerName of master origin server will be used by default.
    cosPrivateAccess String
    When OriginType is COS, you can specify if access to private buckets is allowed.
    originLists List<String>
    Master origin server list.
    originPullProtocol String
    Origin-pull protocol configuration. Valid values: http, https and follow.
    originType String
    Master origin server type.
    serverName String
    Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
    backupOriginLists string[]
    Backup origin server list.
    backupOriginType string
    Backup origin server type.
    backupServerName string
    Host header used when accessing the backup origin server. If left empty, the ServerName of master origin server will be used by default.
    cosPrivateAccess string
    When OriginType is COS, you can specify if access to private buckets is allowed.
    originLists string[]
    Master origin server list.
    originPullProtocol string
    Origin-pull protocol configuration. Valid values: http, https and follow.
    originType string
    Master origin server type.
    serverName string
    Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
    backup_origin_lists Sequence[str]
    Backup origin server list.
    backup_origin_type str
    Backup origin server type.
    backup_server_name str
    Host header used when accessing the backup origin server. If left empty, the ServerName of master origin server will be used by default.
    cos_private_access str
    When OriginType is COS, you can specify if access to private buckets is allowed.
    origin_lists Sequence[str]
    Master origin server list.
    origin_pull_protocol str
    Origin-pull protocol configuration. Valid values: http, https and follow.
    origin_type str
    Master origin server type.
    server_name str
    Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
    backupOriginLists List<String>
    Backup origin server list.
    backupOriginType String
    Backup origin server type.
    backupServerName String
    Host header used when accessing the backup origin server. If left empty, the ServerName of master origin server will be used by default.
    cosPrivateAccess String
    When OriginType is COS, you can specify if access to private buckets is allowed.
    originLists List<String>
    Master origin server list.
    originPullProtocol String
    Origin-pull protocol configuration. Valid values: http, https and follow.
    originType String
    Master origin server type.
    serverName String
    Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.

    GetCdnDomainsDomainListRequestHeader

    HeaderRules List<GetCdnDomainsDomainListRequestHeaderHeaderRule>
    Custom request header configuration rules.
    Switch string
    Cache configuration switch.
    HeaderRules []GetCdnDomainsDomainListRequestHeaderHeaderRule
    Custom request header configuration rules.
    Switch string
    Cache configuration switch.
    headerRules List<GetCdnDomainsDomainListRequestHeaderHeaderRule>
    Custom request header configuration rules.
    switch_ String
    Cache configuration switch.
    headerRules GetCdnDomainsDomainListRequestHeaderHeaderRule[]
    Custom request header configuration rules.
    switch string
    Cache configuration switch.
    header_rules Sequence[GetCdnDomainsDomainListRequestHeaderHeaderRule]
    Custom request header configuration rules.
    switch str
    Cache configuration switch.
    headerRules List<Property Map>
    Custom request header configuration rules.
    switch String
    Cache configuration switch.

    GetCdnDomainsDomainListRequestHeaderHeaderRule

    HeaderMode string
    Http header setting method.
    HeaderName string
    Http header name.
    HeaderValue string
    Http header value.
    RulePaths List<string>
    Rule paths.
    RuleType string
    Rule type.
    HeaderMode string
    Http header setting method.
    HeaderName string
    Http header name.
    HeaderValue string
    Http header value.
    RulePaths []string
    Rule paths.
    RuleType string
    Rule type.
    headerMode String
    Http header setting method.
    headerName String
    Http header name.
    headerValue String
    Http header value.
    rulePaths List<String>
    Rule paths.
    ruleType String
    Rule type.
    headerMode string
    Http header setting method.
    headerName string
    Http header name.
    headerValue string
    Http header value.
    rulePaths string[]
    Rule paths.
    ruleType string
    Rule type.
    header_mode str
    Http header setting method.
    header_name str
    Http header name.
    header_value str
    Http header value.
    rule_paths Sequence[str]
    Rule paths.
    rule_type str
    Rule type.
    headerMode String
    Http header setting method.
    headerName String
    Http header name.
    headerValue String
    Http header value.
    rulePaths List<String>
    Rule paths.
    ruleType String
    Rule type.

    GetCdnDomainsDomainListRuleCach

    CacheTime double
    CompareMaxAge string
    FollowOriginSwitch string
    Follow the source station configuration switch.
    IgnoreCacheControl string
    IgnoreSetCookie string
    Ignore the Set-Cookie header of the origin site.
    NoCacheSwitch string
    Cache configuration switch.
    ReValidate string
    Always check back to origin.
    RulePaths List<string>
    Rule paths.
    RuleType string
    Rule type.
    Switch string
    Cache configuration switch.
    CacheTime float64
    CompareMaxAge string
    FollowOriginSwitch string
    Follow the source station configuration switch.
    IgnoreCacheControl string
    IgnoreSetCookie string
    Ignore the Set-Cookie header of the origin site.
    NoCacheSwitch string
    Cache configuration switch.
    ReValidate string
    Always check back to origin.
    RulePaths []string
    Rule paths.
    RuleType string
    Rule type.
    Switch string
    Cache configuration switch.
    cacheTime Double
    compareMaxAge String
    followOriginSwitch String
    Follow the source station configuration switch.
    ignoreCacheControl String
    ignoreSetCookie String
    Ignore the Set-Cookie header of the origin site.
    noCacheSwitch String
    Cache configuration switch.
    reValidate String
    Always check back to origin.
    rulePaths List<String>
    Rule paths.
    ruleType String
    Rule type.
    switch_ String
    Cache configuration switch.
    cacheTime number
    compareMaxAge string
    followOriginSwitch string
    Follow the source station configuration switch.
    ignoreCacheControl string
    ignoreSetCookie string
    Ignore the Set-Cookie header of the origin site.
    noCacheSwitch string
    Cache configuration switch.
    reValidate string
    Always check back to origin.
    rulePaths string[]
    Rule paths.
    ruleType string
    Rule type.
    switch string
    Cache configuration switch.
    cache_time float
    compare_max_age str
    follow_origin_switch str
    Follow the source station configuration switch.
    ignore_cache_control str
    ignore_set_cookie str
    Ignore the Set-Cookie header of the origin site.
    no_cache_switch str
    Cache configuration switch.
    re_validate str
    Always check back to origin.
    rule_paths Sequence[str]
    Rule paths.
    rule_type str
    Rule type.
    switch str
    Cache configuration switch.
    cacheTime Number
    compareMaxAge String
    followOriginSwitch String
    Follow the source station configuration switch.
    ignoreCacheControl String
    ignoreSetCookie String
    Ignore the Set-Cookie header of the origin site.
    noCacheSwitch String
    Cache configuration switch.
    reValidate String
    Always check back to origin.
    rulePaths List<String>
    Rule paths.
    ruleType String
    Rule type.
    switch String
    Cache configuration switch.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack