tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getCdnDomains
Explore with Pulumi AI
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.
- Full
Url boolCache - Whether to enable full-path cache.
- Https
Switch string - HTTPS configuration. Valid values:
on
,off
andprocessing
. - Id string
- Domain name ID.
- Origin
Pull stringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - Result
Output stringFile - Used to save results.
- Service
Type string - Service type of acceleration domain name. The available value include
web
,download
andmedia
.
- Domain string
- Acceleration domain name.
- Full
Url boolCache - Whether to enable full-path cache.
- Https
Switch string - HTTPS configuration. Valid values:
on
,off
andprocessing
. - Id string
- Domain name ID.
- Origin
Pull stringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - Result
Output stringFile - Used to save results.
- Service
Type string - Service type of acceleration domain name. The available value include
web
,download
andmedia
.
- domain String
- Acceleration domain name.
- full
Url BooleanCache - Whether to enable full-path cache.
- https
Switch String - HTTPS configuration. Valid values:
on
,off
andprocessing
. - id String
- Domain name ID.
- origin
Pull StringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - result
Output StringFile - Used to save results.
- service
Type String - Service type of acceleration domain name. The available value include
web
,download
andmedia
.
- domain string
- Acceleration domain name.
- full
Url booleanCache - Whether to enable full-path cache.
- https
Switch string - HTTPS configuration. Valid values:
on
,off
andprocessing
. - id string
- Domain name ID.
- origin
Pull stringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - result
Output stringFile - Used to save results.
- service
Type string - Service type of acceleration domain name. The available value include
web
,download
andmedia
.
- domain str
- Acceleration domain name.
- full_
url_ boolcache - Whether to enable full-path cache.
- https_
switch str - HTTPS configuration. Valid values:
on
,off
andprocessing
. - id str
- Domain name ID.
- origin_
pull_ strprotocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - result_
output_ strfile - Used to save results.
- service_
type str - Service type of acceleration domain name. The available value include
web
,download
andmedia
.
- domain String
- Acceleration domain name.
- full
Url BooleanCache - Whether to enable full-path cache.
- https
Switch String - HTTPS configuration. Valid values:
on
,off
andprocessing
. - id String
- Domain name ID.
- origin
Pull StringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - result
Output StringFile - Used to save results.
- service
Type String - Service type of acceleration domain name. The available value include
web
,download
andmedia
.
getCdnDomains Result
The following output properties are available:
- Domain
Lists List<GetCdn Domains Domain List> - An information list of cdn domain. Each element contains the following attributes:
- Id string
- Domain name ID.
- Domain string
- Acceleration domain name.
- Full
Url boolCache - Whether to enable full-path cache.
- Https
Switch string - HTTPS configuration switch.
- Origin
Pull stringProtocol - Origin-pull protocol configuration.
- Result
Output stringFile - Service
Type string - Service type of acceleration domain name.
- Domain
Lists []GetCdn Domains Domain List - An information list of cdn domain. Each element contains the following attributes:
- Id string
- Domain name ID.
- Domain string
- Acceleration domain name.
- Full
Url boolCache - Whether to enable full-path cache.
- Https
Switch string - HTTPS configuration switch.
- Origin
Pull stringProtocol - Origin-pull protocol configuration.
- Result
Output stringFile - Service
Type string - Service type of acceleration domain name.
- domain
Lists List<GetCdn Domains Domain List> - An information list of cdn domain. Each element contains the following attributes:
- id String
- Domain name ID.
- domain String
- Acceleration domain name.
- full
Url BooleanCache - Whether to enable full-path cache.
- https
Switch String - HTTPS configuration switch.
- origin
Pull StringProtocol - Origin-pull protocol configuration.
- result
Output StringFile - service
Type String - Service type of acceleration domain name.
- domain
Lists GetCdn Domains Domain List[] - An information list of cdn domain. Each element contains the following attributes:
- id string
- Domain name ID.
- domain string
- Acceleration domain name.
- full
Url booleanCache - Whether to enable full-path cache.
- https
Switch string - HTTPS configuration switch.
- origin
Pull stringProtocol - Origin-pull protocol configuration.
- result
Output stringFile - service
Type string - Service type of acceleration domain name.
- domain_
lists Sequence[GetCdn Domains Domain List] - An information list of cdn domain. Each element contains the following attributes:
- id str
- Domain name ID.
- domain str
- Acceleration domain name.
- full_
url_ boolcache - Whether to enable full-path cache.
- https_
switch str - HTTPS configuration switch.
- origin_
pull_ strprotocol - Origin-pull protocol configuration.
- result_
output_ strfile - service_
type str - Service type of acceleration domain name.
- domain
Lists 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.
- full
Url BooleanCache - Whether to enable full-path cache.
- https
Switch String - HTTPS configuration switch.
- origin
Pull StringProtocol - Origin-pull protocol configuration.
- result
Output StringFile - service
Type String - Service type of acceleration domain name.
Supporting Types
GetCdnDomainsDomainList
- Area string
- Acceleration region.
- Cname string
- CNAME address of domain name.
- Create
Time string - Domain name creation time.
- Domain string
- Acceleration domain name.
- Full
Url boolCache - Whether to enable full-path cache.
- Https
Configs List<GetCdn Domains Domain List Https Config> - HTTPS acceleration configuration. It's a list and consist of at most one item.
- Id string
- Domain name ID.
- Origins
List<Get
Cdn Domains Domain List Origin> - Origin server configuration.
- Project
Id double - The project CDN belongs to.
- Range
Origin stringSwitch - Sharding back to source configuration switch.
- Request
Headers List<GetCdn Domains Domain List Request Header> - Request header configuration.
- Rule
Caches List<GetCdn Domains Domain List Rule Cach> - Advanced path cache configuration.
- Service
Type string - Service type of acceleration domain name. The available value include
web
,download
andmedia
. - Status string
- Acceleration service status.
- Dictionary<string, string>
- Tags of cdn domain.
- Update
Time string - Last modified time of domain name.
- Area string
- Acceleration region.
- Cname string
- CNAME address of domain name.
- Create
Time string - Domain name creation time.
- Domain string
- Acceleration domain name.
- Full
Url boolCache - Whether to enable full-path cache.
- Https
Configs []GetCdn Domains Domain List Https Config - HTTPS acceleration configuration. It's a list and consist of at most one item.
- Id string
- Domain name ID.
- Origins
[]Get
Cdn Domains Domain List Origin - Origin server configuration.
- Project
Id float64 - The project CDN belongs to.
- Range
Origin stringSwitch - Sharding back to source configuration switch.
- Request
Headers []GetCdn Domains Domain List Request Header - Request header configuration.
- Rule
Caches []GetCdn Domains Domain List Rule Cach - Advanced path cache configuration.
- Service
Type string - Service type of acceleration domain name. The available value include
web
,download
andmedia
. - Status string
- Acceleration service status.
- map[string]string
- Tags of cdn domain.
- Update
Time string - Last modified time of domain name.
- area String
- Acceleration region.
- cname String
- CNAME address of domain name.
- create
Time String - Domain name creation time.
- domain String
- Acceleration domain name.
- full
Url BooleanCache - Whether to enable full-path cache.
- https
Configs List<GetCdn Domains Domain List Https Config> - HTTPS acceleration configuration. It's a list and consist of at most one item.
- id String
- Domain name ID.
- origins
List<Get
Cdn Domains Domain List Origin> - Origin server configuration.
- project
Id Double - The project CDN belongs to.
- range
Origin StringSwitch - Sharding back to source configuration switch.
- request
Headers List<GetCdn Domains Domain List Request Header> - Request header configuration.
- rule
Caches List<GetCdn Domains Domain List Rule Cach> - Advanced path cache configuration.
- service
Type String - Service type of acceleration domain name. The available value include
web
,download
andmedia
. - status String
- Acceleration service status.
- Map<String,String>
- Tags of cdn domain.
- update
Time String - Last modified time of domain name.
- area string
- Acceleration region.
- cname string
- CNAME address of domain name.
- create
Time string - Domain name creation time.
- domain string
- Acceleration domain name.
- full
Url booleanCache - Whether to enable full-path cache.
- https
Configs GetCdn Domains Domain List Https Config[] - HTTPS acceleration configuration. It's a list and consist of at most one item.
- id string
- Domain name ID.
- origins
Get
Cdn Domains Domain List Origin[] - Origin server configuration.
- project
Id number - The project CDN belongs to.
- range
Origin stringSwitch - Sharding back to source configuration switch.
- request
Headers GetCdn Domains Domain List Request Header[] - Request header configuration.
- rule
Caches GetCdn Domains Domain List Rule Cach[] - Advanced path cache configuration.
- service
Type string - Service type of acceleration domain name. The available value include
web
,download
andmedia
. - status string
- Acceleration service status.
- {[key: string]: string}
- Tags of cdn domain.
- update
Time 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_ boolcache - Whether to enable full-path cache.
- https_
configs Sequence[GetCdn Domains Domain List Https Config] - HTTPS acceleration configuration. It's a list and consist of at most one item.
- id str
- Domain name ID.
- origins
Sequence[Get
Cdn Domains Domain List Origin] - Origin server configuration.
- project_
id float - The project CDN belongs to.
- range_
origin_ strswitch - Sharding back to source configuration switch.
- request_
headers Sequence[GetCdn Domains Domain List Request Header] - Request header configuration.
- rule_
caches Sequence[GetCdn Domains Domain List Rule Cach] - Advanced path cache configuration.
- service_
type str - Service type of acceleration domain name. The available value include
web
,download
andmedia
. - status str
- Acceleration service status.
- 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.
- create
Time String - Domain name creation time.
- domain String
- Acceleration domain name.
- full
Url BooleanCache - Whether to enable full-path cache.
- https
Configs 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.
- project
Id Number - The project CDN belongs to.
- range
Origin StringSwitch - Sharding back to source configuration switch.
- request
Headers List<Property Map> - Request header configuration.
- rule
Caches List<Property Map> - Advanced path cache configuration.
- service
Type String - Service type of acceleration domain name. The available value include
web
,download
andmedia
. - status String
- Acceleration service status.
- Map<String>
- Tags of cdn domain.
- update
Time String - Last modified time of domain name.
GetCdnDomainsDomainListHttpsConfig
- Http2Switch string
- HTTP2 configuration switch.
- Https
Switch string - HTTPS configuration. Valid values:
on
,off
andprocessing
. - Ocsp
Stapling stringSwitch - OCSP configuration switch.
- Spdy
Switch string - Spdy configuration switch.
- Verify
Client string - Client certificate authentication feature.
- Http2Switch string
- HTTP2 configuration switch.
- Https
Switch string - HTTPS configuration. Valid values:
on
,off
andprocessing
. - Ocsp
Stapling stringSwitch - OCSP configuration switch.
- Spdy
Switch string - Spdy configuration switch.
- Verify
Client string - Client certificate authentication feature.
- http2Switch String
- HTTP2 configuration switch.
- https
Switch String - HTTPS configuration. Valid values:
on
,off
andprocessing
. - ocsp
Stapling StringSwitch - OCSP configuration switch.
- spdy
Switch String - Spdy configuration switch.
- verify
Client String - Client certificate authentication feature.
- http2Switch string
- HTTP2 configuration switch.
- https
Switch string - HTTPS configuration. Valid values:
on
,off
andprocessing
. - ocsp
Stapling stringSwitch - OCSP configuration switch.
- spdy
Switch string - Spdy configuration switch.
- verify
Client string - Client certificate authentication feature.
- http2_
switch str - HTTP2 configuration switch.
- https_
switch str - HTTPS configuration. Valid values:
on
,off
andprocessing
. - ocsp_
stapling_ strswitch - OCSP configuration switch.
- spdy_
switch str - Spdy configuration switch.
- verify_
client str - Client certificate authentication feature.
- http2Switch String
- HTTP2 configuration switch.
- https
Switch String - HTTPS configuration. Valid values:
on
,off
andprocessing
. - ocsp
Stapling StringSwitch - OCSP configuration switch.
- spdy
Switch String - Spdy configuration switch.
- verify
Client String - Client certificate authentication feature.
GetCdnDomainsDomainListOrigin
- Backup
Origin List<string>Lists - Backup origin server list.
- Backup
Origin stringType - Backup origin server type.
- Backup
Server stringName - 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 stringAccess - When OriginType is COS, you can specify if access to private buckets is allowed.
- Origin
Lists List<string> - Master origin server list.
- Origin
Pull stringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - Origin
Type string - Master origin server type.
- Server
Name string - Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
- Backup
Origin []stringLists - Backup origin server list.
- Backup
Origin stringType - Backup origin server type.
- Backup
Server stringName - 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 stringAccess - When OriginType is COS, you can specify if access to private buckets is allowed.
- Origin
Lists []string - Master origin server list.
- Origin
Pull stringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - Origin
Type string - Master origin server type.
- Server
Name string - Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
- backup
Origin List<String>Lists - Backup origin server list.
- backup
Origin StringType - Backup origin server type.
- backup
Server StringName - 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 StringAccess - When OriginType is COS, you can specify if access to private buckets is allowed.
- origin
Lists List<String> - Master origin server list.
- origin
Pull StringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - origin
Type String - Master origin server type.
- server
Name String - Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
- backup
Origin string[]Lists - Backup origin server list.
- backup
Origin stringType - Backup origin server type.
- backup
Server stringName - 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 stringAccess - When OriginType is COS, you can specify if access to private buckets is allowed.
- origin
Lists string[] - Master origin server list.
- origin
Pull stringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - origin
Type string - Master origin server type.
- server
Name string - Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
- backup_
origin_ Sequence[str]lists - Backup origin server list.
- backup_
origin_ strtype - Backup origin server type.
- backup_
server_ strname - 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_ straccess - When OriginType is COS, you can specify if access to private buckets is allowed.
- origin_
lists Sequence[str] - Master origin server list.
- origin_
pull_ strprotocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - 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.
- backup
Origin List<String>Lists - Backup origin server list.
- backup
Origin StringType - Backup origin server type.
- backup
Server StringName - 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 StringAccess - When OriginType is COS, you can specify if access to private buckets is allowed.
- origin
Lists List<String> - Master origin server list.
- origin
Pull StringProtocol - Origin-pull protocol configuration. Valid values:
http
,https
andfollow
. - origin
Type String - Master origin server type.
- server
Name String - Host header used when accessing the master origin server. If left empty, the acceleration domain name will be used by default.
GetCdnDomainsDomainListRequestHeader
- Header
Rules List<GetCdn Domains Domain List Request Header Header Rule> - Custom request header configuration rules.
- Switch string
- Cache configuration switch.
- Header
Rules []GetCdn Domains Domain List Request Header Header Rule - Custom request header configuration rules.
- Switch string
- Cache configuration switch.
- header
Rules List<GetCdn Domains Domain List Request Header Header Rule> - Custom request header configuration rules.
- switch_ String
- Cache configuration switch.
- header
Rules GetCdn Domains Domain List Request Header Header Rule[] - Custom request header configuration rules.
- switch string
- Cache configuration switch.
- header_
rules Sequence[GetCdn Domains Domain List Request Header Header Rule] - Custom request header configuration rules.
- switch str
- Cache configuration switch.
- header
Rules List<Property Map> - Custom request header configuration rules.
- switch String
- Cache configuration switch.
GetCdnDomainsDomainListRequestHeaderHeaderRule
- Header
Mode string - Http header setting method.
- Header
Name string - Http header name.
- Header
Value string - Http header value.
- Rule
Paths List<string> - Rule paths.
- Rule
Type string - Rule type.
- Header
Mode string - Http header setting method.
- Header
Name string - Http header name.
- Header
Value string - Http header value.
- Rule
Paths []string - Rule paths.
- Rule
Type string - Rule type.
- header
Mode String - Http header setting method.
- header
Name String - Http header name.
- header
Value String - Http header value.
- rule
Paths List<String> - Rule paths.
- rule
Type String - Rule type.
- header
Mode string - Http header setting method.
- header
Name string - Http header name.
- header
Value string - Http header value.
- rule
Paths string[] - Rule paths.
- rule
Type 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.
- header
Mode String - Http header setting method.
- header
Name String - Http header name.
- header
Value String - Http header value.
- rule
Paths List<String> - Rule paths.
- rule
Type String - Rule type.
GetCdnDomainsDomainListRuleCach
- Cache
Time double - Compare
Max stringAge - Follow
Origin stringSwitch - Follow the source station configuration switch.
- Ignore
Cache stringControl - string
- Ignore the Set-Cookie header of the origin site.
- No
Cache stringSwitch - Cache configuration switch.
- Re
Validate string - Always check back to origin.
- Rule
Paths List<string> - Rule paths.
- Rule
Type string - Rule type.
- Switch string
- Cache configuration switch.
- Cache
Time float64 - Compare
Max stringAge - Follow
Origin stringSwitch - Follow the source station configuration switch.
- Ignore
Cache stringControl - string
- Ignore the Set-Cookie header of the origin site.
- No
Cache stringSwitch - Cache configuration switch.
- Re
Validate string - Always check back to origin.
- Rule
Paths []string - Rule paths.
- Rule
Type string - Rule type.
- Switch string
- Cache configuration switch.
- cache
Time Double - compare
Max StringAge - follow
Origin StringSwitch - Follow the source station configuration switch.
- ignore
Cache StringControl - String
- Ignore the Set-Cookie header of the origin site.
- no
Cache StringSwitch - Cache configuration switch.
- re
Validate String - Always check back to origin.
- rule
Paths List<String> - Rule paths.
- rule
Type String - Rule type.
- switch_ String
- Cache configuration switch.
- cache
Time number - compare
Max stringAge - follow
Origin stringSwitch - Follow the source station configuration switch.
- ignore
Cache stringControl - string
- Ignore the Set-Cookie header of the origin site.
- no
Cache stringSwitch - Cache configuration switch.
- re
Validate string - Always check back to origin.
- rule
Paths string[] - Rule paths.
- rule
Type string - Rule type.
- switch string
- Cache configuration switch.
- cache_
time float - compare_
max_ strage - follow_
origin_ strswitch - Follow the source station configuration switch.
- ignore_
cache_ strcontrol - str
- Ignore the Set-Cookie header of the origin site.
- no_
cache_ strswitch - 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.
- cache
Time Number - compare
Max StringAge - follow
Origin StringSwitch - Follow the source station configuration switch.
- ignore
Cache StringControl - String
- Ignore the Set-Cookie header of the origin site.
- no
Cache StringSwitch - Cache configuration switch.
- re
Validate String - Always check back to origin.
- rule
Paths List<String> - Rule paths.
- rule
Type 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 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack