1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. TeoPurgeTask
Viewing docs for tencentcloud 1.82.93
published on Monday, May 11, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.93
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.
    ZoneId string
    Zone ID.
    CacheTag TeoPurgeTaskCacheTag
    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.
    TeoPurgeTaskId string
    ID of the resource.
    Timeouts TeoPurgeTaskTimeouts
    Type string
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    ZoneId string
    Zone ID.
    CacheTag TeoPurgeTaskCacheTagArgs
    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.
    TeoPurgeTaskId string
    ID of the resource.
    Timeouts TeoPurgeTaskTimeoutsArgs
    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_task_id string
    ID of the resource.
    timeouts object
    type String
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zoneId String
    Zone ID.
    cacheTag TeoPurgeTaskCacheTag
    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.
    teoPurgeTaskId String
    ID of the resource.
    timeouts TeoPurgeTaskTimeouts
    type string
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zoneId string
    Zone ID.
    cacheTag TeoPurgeTaskCacheTag
    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.
    teoPurgeTaskId string
    ID of the resource.
    timeouts TeoPurgeTaskTimeouts
    type str
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zone_id str
    Zone ID.
    cache_tag TeoPurgeTaskCacheTagArgs
    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_task_id str
    ID of the resource.
    timeouts TeoPurgeTaskTimeoutsArgs
    type String
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zoneId String
    Zone ID.
    cacheTag 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.
    teoPurgeTaskId String
    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.
    JobId string
    Task ID.
    Tasks List<TeoPurgeTaskTask>
    List of purge task results.
    Id string
    The provider-assigned unique ID for this managed resource.
    JobId string
    Task ID.
    Tasks []TeoPurgeTaskTask
    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.
    jobId String
    Task ID.
    tasks List<TeoPurgeTaskTask>
    List of purge task results.
    id string
    The provider-assigned unique ID for this managed resource.
    jobId string
    Task ID.
    tasks TeoPurgeTaskTask[]
    List of purge task results.
    id str
    The provider-assigned unique ID for this managed resource.
    job_id str
    Task ID.
    tasks Sequence[TeoPurgeTaskTask]
    List of purge task results.
    id String
    The provider-assigned unique ID for this managed resource.
    jobId 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) -> TeoPurgeTask
    func 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.
    The following state arguments are supported:
    CacheTag TeoPurgeTaskCacheTag
    Cache tag configuration, required when type is purge_cache_tag.
    JobId string
    Task ID.
    Method string
    Purge method. Valid values: invalidate, delete. Default: invalidate.
    Targets List<string>
    List of targets to purge.
    Tasks List<TeoPurgeTaskTask>
    List of purge task results.
    TeoPurgeTaskId string
    ID of the resource.
    Timeouts TeoPurgeTaskTimeouts
    Type string
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    ZoneId string
    Zone ID.
    CacheTag TeoPurgeTaskCacheTagArgs
    Cache tag configuration, required when type is purge_cache_tag.
    JobId string
    Task ID.
    Method string
    Purge method. Valid values: invalidate, delete. Default: invalidate.
    Targets []string
    List of targets to purge.
    Tasks []TeoPurgeTaskTaskArgs
    List of purge task results.
    TeoPurgeTaskId string
    ID of the resource.
    Timeouts TeoPurgeTaskTimeoutsArgs
    Type string
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    ZoneId 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_task_id string
    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.
    cacheTag TeoPurgeTaskCacheTag
    Cache tag configuration, required when type is purge_cache_tag.
    jobId String
    Task ID.
    method String
    Purge method. Valid values: invalidate, delete. Default: invalidate.
    targets List<String>
    List of targets to purge.
    tasks List<TeoPurgeTaskTask>
    List of purge task results.
    teoPurgeTaskId String
    ID of the resource.
    timeouts TeoPurgeTaskTimeouts
    type String
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zoneId String
    Zone ID.
    cacheTag TeoPurgeTaskCacheTag
    Cache tag configuration, required when type is purge_cache_tag.
    jobId string
    Task ID.
    method string
    Purge method. Valid values: invalidate, delete. Default: invalidate.
    targets string[]
    List of targets to purge.
    tasks TeoPurgeTaskTask[]
    List of purge task results.
    teoPurgeTaskId string
    ID of the resource.
    timeouts TeoPurgeTaskTimeouts
    type string
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zoneId string
    Zone ID.
    cache_tag TeoPurgeTaskCacheTagArgs
    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[TeoPurgeTaskTaskArgs]
    List of purge task results.
    teo_purge_task_id str
    ID of the resource.
    timeouts TeoPurgeTaskTimeoutsArgs
    type str
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zone_id str
    Zone ID.
    cacheTag Property Map
    Cache tag configuration, required when type is purge_cache_tag.
    jobId 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.
    teoPurgeTaskId String
    ID of the resource.
    timeouts Property Map
    type String
    Purge type. Valid values: purge_url, purge_prefix, purge_host, purge_all, purge_cache_tag.
    zoneId 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

    CreateTime string
    Task creation time.
    FailMessage string
    Failure message.
    FailType string
    Failure type.
    JobId 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.
    UpdateTime string
    Task update time.
    CreateTime string
    Task creation time.
    FailMessage string
    Failure message.
    FailType string
    Failure type.
    JobId 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.
    UpdateTime 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.
    createTime String
    Task creation time.
    failMessage String
    Failure message.
    failType String
    Failure type.
    jobId 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.
    updateTime String
    Task update time.
    createTime string
    Task creation time.
    failMessage string
    Failure message.
    failType string
    Failure type.
    jobId 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.
    updateTime 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.
    createTime String
    Task creation time.
    failMessage String
    Failure message.
    failType String
    Failure type.
    jobId 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.
    updateTime 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 tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.82.93
    published on Monday, May 11, 2026 by tencentcloudstack
      Try Pulumi Cloud free. Your team will thank you.