Viewing docs for tencentcloud 1.82.93
published on Monday, May 11, 2026 by tencentcloudstack
published on Monday, May 11, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.93
published on Monday, May 11, 2026 by tencentcloudstack
published on Monday, May 11, 2026 by tencentcloudstack
Provides a resource to create TEO cache purge task.
Example Usage
Purge URLs
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const purgeUrlExample = new tencentcloud.TeoPurgeTask("purge_url_example", {
zoneId: "zone-2qtuhspy7cr6",
type: "purge_url",
targets: [
"https://example.com/path1",
"https://example.com/path2",
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
purge_url_example = tencentcloud.TeoPurgeTask("purge_url_example",
zone_id="zone-2qtuhspy7cr6",
type="purge_url",
targets=[
"https://example.com/path1",
"https://example.com/path2",
])
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.NewTeoPurgeTask(ctx, "purge_url_example", &tencentcloud.TeoPurgeTaskArgs{
ZoneId: pulumi.String("zone-2qtuhspy7cr6"),
Type: pulumi.String("purge_url"),
Targets: pulumi.StringArray{
pulumi.String("https://example.com/path1"),
pulumi.String("https://example.com/path2"),
},
})
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 purgeUrlExample = new Tencentcloud.TeoPurgeTask("purge_url_example", new()
{
ZoneId = "zone-2qtuhspy7cr6",
Type = "purge_url",
Targets = new[]
{
"https://example.com/path1",
"https://example.com/path2",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoPurgeTask;
import com.pulumi.tencentcloud.TeoPurgeTaskArgs;
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 purgeUrlExample = new TeoPurgeTask("purgeUrlExample", TeoPurgeTaskArgs.builder()
.zoneId("zone-2qtuhspy7cr6")
.type("purge_url")
.targets(
"https://example.com/path1",
"https://example.com/path2")
.build());
}
}
resources:
purgeUrlExample:
type: tencentcloud:TeoPurgeTask
name: purge_url_example
properties:
zoneId: zone-2qtuhspy7cr6
type: purge_url
targets:
- https://example.com/path1
- https://example.com/path2
Example coming soon!
Purge all cache
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const purgeAllExample = new tencentcloud.TeoPurgeTask("purge_all_example", {
zoneId: "zone-2qtuhspy7cr6",
type: "purge_all",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
purge_all_example = tencentcloud.TeoPurgeTask("purge_all_example",
zone_id="zone-2qtuhspy7cr6",
type="purge_all")
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.NewTeoPurgeTask(ctx, "purge_all_example", &tencentcloud.TeoPurgeTaskArgs{
ZoneId: pulumi.String("zone-2qtuhspy7cr6"),
Type: pulumi.String("purge_all"),
})
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 purgeAllExample = new Tencentcloud.TeoPurgeTask("purge_all_example", new()
{
ZoneId = "zone-2qtuhspy7cr6",
Type = "purge_all",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoPurgeTask;
import com.pulumi.tencentcloud.TeoPurgeTaskArgs;
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 purgeAllExample = new TeoPurgeTask("purgeAllExample", TeoPurgeTaskArgs.builder()
.zoneId("zone-2qtuhspy7cr6")
.type("purge_all")
.build());
}
}
resources:
purgeAllExample:
type: tencentcloud:TeoPurgeTask
name: purge_all_example
properties:
zoneId: zone-2qtuhspy7cr6
type: purge_all
Example coming soon!
Purge cache tag
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const purgeCacheTagExample = new tencentcloud.TeoPurgeTask("purge_cache_tag_example", {
zoneId: "zone-2qtuhspy7cr6",
type: "purge_cache_tag",
cacheTag: {
domains: [
"example.com",
"www.example.com",
],
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
purge_cache_tag_example = tencentcloud.TeoPurgeTask("purge_cache_tag_example",
zone_id="zone-2qtuhspy7cr6",
type="purge_cache_tag",
cache_tag={
"domains": [
"example.com",
"www.example.com",
],
})
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.NewTeoPurgeTask(ctx, "purge_cache_tag_example", &tencentcloud.TeoPurgeTaskArgs{
ZoneId: pulumi.String("zone-2qtuhspy7cr6"),
Type: pulumi.String("purge_cache_tag"),
CacheTag: &tencentcloud.TeoPurgeTaskCacheTagArgs{
Domains: pulumi.StringArray{
pulumi.String("example.com"),
pulumi.String("www.example.com"),
},
},
})
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 purgeCacheTagExample = new Tencentcloud.TeoPurgeTask("purge_cache_tag_example", new()
{
ZoneId = "zone-2qtuhspy7cr6",
Type = "purge_cache_tag",
CacheTag = new Tencentcloud.Inputs.TeoPurgeTaskCacheTagArgs
{
Domains = new[]
{
"example.com",
"www.example.com",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoPurgeTask;
import com.pulumi.tencentcloud.TeoPurgeTaskArgs;
import com.pulumi.tencentcloud.inputs.TeoPurgeTaskCacheTagArgs;
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 purgeCacheTagExample = new TeoPurgeTask("purgeCacheTagExample", TeoPurgeTaskArgs.builder()
.zoneId("zone-2qtuhspy7cr6")
.type("purge_cache_tag")
.cacheTag(TeoPurgeTaskCacheTagArgs.builder()
.domains(
"example.com",
"www.example.com")
.build())
.build());
}
}
resources:
purgeCacheTagExample:
type: tencentcloud:TeoPurgeTask
name: purge_cache_tag_example
properties:
zoneId: zone-2qtuhspy7cr6
type: purge_cache_tag
cacheTag:
domains:
- example.com
- www.example.com
Example coming soon!
Create TeoPurgeTask Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TeoPurgeTask(name: string, args: TeoPurgeTaskArgs, opts?: CustomResourceOptions);@overload
def TeoPurgeTask(resource_name: str,
args: TeoPurgeTaskArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TeoPurgeTask(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
zone_id: Optional[str] = None,
cache_tag: Optional[TeoPurgeTaskCacheTagArgs] = None,
method: Optional[str] = None,
targets: Optional[Sequence[str]] = None,
teo_purge_task_id: Optional[str] = None,
timeouts: Optional[TeoPurgeTaskTimeoutsArgs] = None)func NewTeoPurgeTask(ctx *Context, name string, args TeoPurgeTaskArgs, opts ...ResourceOption) (*TeoPurgeTask, error)public TeoPurgeTask(string name, TeoPurgeTaskArgs args, CustomResourceOptions? opts = null)
public TeoPurgeTask(String name, TeoPurgeTaskArgs args)
public TeoPurgeTask(String name, TeoPurgeTaskArgs args, CustomResourceOptions options)
type: tencentcloud:TeoPurgeTask
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "tencentcloud_teopurgetask" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TeoPurgeTaskArgs
- 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 TeoPurgeTaskArgs
- 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 TeoPurgeTaskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeoPurgeTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeoPurgeTaskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
TeoPurgeTask 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 TeoPurgeTask resource accepts the following input properties:
- Type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- Zone
Id string - Zone ID.
- Cache
Tag TeoPurge Task Cache Tag - Cache tag configuration, required when type is purge_cache_tag.
- Method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- Targets List<string>
- List of targets to purge.
- Teo
Purge stringTask Id - ID of the resource.
- Timeouts
Teo
Purge Task Timeouts
- Type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- Zone
Id string - Zone ID.
- Cache
Tag TeoPurge Task Cache Tag Args - Cache tag configuration, required when type is purge_cache_tag.
- Method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- Targets []string
- List of targets to purge.
- Teo
Purge stringTask Id - ID of the resource.
- Timeouts
Teo
Purge Task Timeouts Args
- type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone_
id string - Zone ID.
- cache_
tag object - Cache tag configuration, required when type is purge_cache_tag.
- method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets list(string)
- List of targets to purge.
- teo_
purge_ stringtask_ id - ID of the resource.
- timeouts object
- type String
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone
Id String - Zone ID.
- cache
Tag TeoPurge Task Cache Tag - Cache tag configuration, required when type is purge_cache_tag.
- method String
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets List<String>
- List of targets to purge.
- teo
Purge StringTask Id - ID of the resource.
- timeouts
Teo
Purge Task Timeouts
- type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone
Id string - Zone ID.
- cache
Tag TeoPurge Task Cache Tag - Cache tag configuration, required when type is purge_cache_tag.
- method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets string[]
- List of targets to purge.
- teo
Purge stringTask Id - ID of the resource.
- timeouts
Teo
Purge Task Timeouts
- type str
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone_
id str - Zone ID.
- cache_
tag TeoPurge Task Cache Tag Args - Cache tag configuration, required when type is purge_cache_tag.
- method str
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets Sequence[str]
- List of targets to purge.
- teo_
purge_ strtask_ id - ID of the resource.
- timeouts
Teo
Purge Task Timeouts Args
- type String
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone
Id String - Zone ID.
- cache
Tag Property Map - Cache tag configuration, required when type is purge_cache_tag.
- method String
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets List<String>
- List of targets to purge.
- teo
Purge StringTask Id - ID of the resource.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the TeoPurgeTask resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Job
Id string - Task ID.
- Tasks
List<Teo
Purge Task Task> - List of purge task results.
- Id string
- The provider-assigned unique ID for this managed resource.
- Job
Id string - Task ID.
- Tasks
[]Teo
Purge Task Task - List of purge task results.
- id string
- The provider-assigned unique ID for this managed resource.
- job_
id string - Task ID.
- tasks list(object)
- List of purge task results.
- id String
- The provider-assigned unique ID for this managed resource.
- job
Id String - Task ID.
- tasks
List<Teo
Purge Task Task> - List of purge task results.
- id string
- The provider-assigned unique ID for this managed resource.
- job
Id string - Task ID.
- tasks
Teo
Purge Task Task[] - List of purge task results.
- id str
- The provider-assigned unique ID for this managed resource.
- job_
id str - Task ID.
- tasks
Sequence[Teo
Purge Task Task] - List of purge task results.
- id String
- The provider-assigned unique ID for this managed resource.
- job
Id String - Task ID.
- tasks List<Property Map>
- List of purge task results.
Look up Existing TeoPurgeTask Resource
Get an existing TeoPurgeTask 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?: TeoPurgeTaskState, opts?: CustomResourceOptions): TeoPurgeTask@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cache_tag: Optional[TeoPurgeTaskCacheTagArgs] = None,
job_id: Optional[str] = None,
method: Optional[str] = None,
targets: Optional[Sequence[str]] = None,
tasks: Optional[Sequence[TeoPurgeTaskTaskArgs]] = None,
teo_purge_task_id: Optional[str] = None,
timeouts: Optional[TeoPurgeTaskTimeoutsArgs] = None,
type: Optional[str] = None,
zone_id: Optional[str] = None) -> TeoPurgeTaskfunc GetTeoPurgeTask(ctx *Context, name string, id IDInput, state *TeoPurgeTaskState, opts ...ResourceOption) (*TeoPurgeTask, error)public static TeoPurgeTask Get(string name, Input<string> id, TeoPurgeTaskState? state, CustomResourceOptions? opts = null)public static TeoPurgeTask get(String name, Output<String> id, TeoPurgeTaskState state, CustomResourceOptions options)resources: _: type: tencentcloud:TeoPurgeTask get: id: ${id}import {
to = tencentcloud_teopurgetask.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.
- Cache
Tag TeoPurge Task Cache Tag - Cache tag configuration, required when type is purge_cache_tag.
- Job
Id string - Task ID.
- Method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- Targets List<string>
- List of targets to purge.
- Tasks
List<Teo
Purge Task Task> - List of purge task results.
- Teo
Purge stringTask Id - ID of the resource.
- Timeouts
Teo
Purge Task Timeouts - Type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- Zone
Id string - Zone ID.
- Cache
Tag TeoPurge Task Cache Tag Args - Cache tag configuration, required when type is purge_cache_tag.
- Job
Id string - Task ID.
- Method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- Targets []string
- List of targets to purge.
- Tasks
[]Teo
Purge Task Task Args - List of purge task results.
- Teo
Purge stringTask Id - ID of the resource.
- Timeouts
Teo
Purge Task Timeouts Args - Type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- Zone
Id string - Zone ID.
- cache_
tag object - Cache tag configuration, required when type is purge_cache_tag.
- job_
id string - Task ID.
- method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets list(string)
- List of targets to purge.
- tasks list(object)
- List of purge task results.
- teo_
purge_ stringtask_ id - ID of the resource.
- timeouts object
- type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone_
id string - Zone ID.
- cache
Tag TeoPurge Task Cache Tag - Cache tag configuration, required when type is purge_cache_tag.
- job
Id String - Task ID.
- method String
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets List<String>
- List of targets to purge.
- tasks
List<Teo
Purge Task Task> - List of purge task results.
- teo
Purge StringTask Id - ID of the resource.
- timeouts
Teo
Purge Task Timeouts - type String
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone
Id String - Zone ID.
- cache
Tag TeoPurge Task Cache Tag - Cache tag configuration, required when type is purge_cache_tag.
- job
Id string - Task ID.
- method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets string[]
- List of targets to purge.
- tasks
Teo
Purge Task Task[] - List of purge task results.
- teo
Purge stringTask Id - ID of the resource.
- timeouts
Teo
Purge Task Timeouts - type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone
Id string - Zone ID.
- cache_
tag TeoPurge Task Cache Tag Args - Cache tag configuration, required when type is purge_cache_tag.
- job_
id str - Task ID.
- method str
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets Sequence[str]
- List of targets to purge.
- tasks
Sequence[Teo
Purge Task Task Args] - List of purge task results.
- teo_
purge_ strtask_ id - ID of the resource.
- timeouts
Teo
Purge Task Timeouts Args - type str
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone_
id str - Zone ID.
- cache
Tag Property Map - Cache tag configuration, required when type is purge_cache_tag.
- job
Id String - Task ID.
- method String
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- targets List<String>
- List of targets to purge.
- tasks List<Property Map>
- List of purge task results.
- teo
Purge StringTask Id - ID of the resource.
- timeouts Property Map
- type String
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- zone
Id String - Zone ID.
Supporting Types
TeoPurgeTaskCacheTag, TeoPurgeTaskCacheTagArgs
- Domains List<string>
- Domain list for cache tag.
- Domains []string
- Domain list for cache tag.
- domains list(string)
- Domain list for cache tag.
- domains List<String>
- Domain list for cache tag.
- domains string[]
- Domain list for cache tag.
- domains Sequence[str]
- Domain list for cache tag.
- domains List<String>
- Domain list for cache tag.
TeoPurgeTaskTask, TeoPurgeTaskTaskArgs
- Create
Time string - Task creation time.
- Fail
Message string - Failure message.
- Fail
Type string - Failure type.
- Job
Id string - Task ID.
- Method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- Status string
- Task status.
- Target string
- Purge target.
- Type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- Update
Time string - Task update time.
- Create
Time string - Task creation time.
- Fail
Message string - Failure message.
- Fail
Type string - Failure type.
- Job
Id string - Task ID.
- Method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- Status string
- Task status.
- Target string
- Purge target.
- Type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- Update
Time string - Task update time.
- create_
time string - Task creation time.
- fail_
message string - Failure message.
- fail_
type string - Failure type.
- job_
id string - Task ID.
- method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- status string
- Task status.
- target string
- Purge target.
- type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- update_
time string - Task update time.
- create
Time String - Task creation time.
- fail
Message String - Failure message.
- fail
Type String - Failure type.
- job
Id String - Task ID.
- method String
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- status String
- Task status.
- target String
- Purge target.
- type String
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- update
Time String - Task update time.
- create
Time string - Task creation time.
- fail
Message string - Failure message.
- fail
Type string - Failure type.
- job
Id string - Task ID.
- method string
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- status string
- Task status.
- target string
- Purge target.
- type string
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- update
Time string - Task update time.
- create_
time str - Task creation time.
- fail_
message str - Failure message.
- fail_
type str - Failure type.
- job_
id str - Task ID.
- method str
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- status str
- Task status.
- target str
- Purge target.
- type str
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- update_
time str - Task update time.
- create
Time String - Task creation time.
- fail
Message String - Failure message.
- fail
Type String - Failure type.
- job
Id String - Task ID.
- method String
- Purge method. Valid values: invalidate, delete. Default: invalidate.
- status String
- Task status.
- target String
- Purge target.
- type String
- Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
- update
Time String - Task update time.
TeoPurgeTaskTimeouts, TeoPurgeTaskTimeoutsArgs
- Create string
- Create string
- create string
- create String
- create string
- create str
- create String
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.82.93
published on Monday, May 11, 2026 by tencentcloudstack
published on Monday, May 11, 2026 by tencentcloudstack
