1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. TeoPrefetchTaskOperation
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 prefetch cache task.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.TeoPrefetchTaskOperation("example", {
        zoneId: "zone-12345678",
        targets: ["http://www.example.com/example.txt"],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.TeoPrefetchTaskOperation("example",
        zone_id="zone-12345678",
        targets=["http://www.example.com/example.txt"])
    
    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.NewTeoPrefetchTaskOperation(ctx, "example", &tencentcloud.TeoPrefetchTaskOperationArgs{
    			ZoneId: pulumi.String("zone-12345678"),
    			Targets: pulumi.StringArray{
    				pulumi.String("http://www.example.com/example.txt"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.TeoPrefetchTaskOperation("example", new()
        {
            ZoneId = "zone-12345678",
            Targets = new[]
            {
                "http://www.example.com/example.txt",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TeoPrefetchTaskOperation;
    import com.pulumi.tencentcloud.TeoPrefetchTaskOperationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new TeoPrefetchTaskOperation("example", TeoPrefetchTaskOperationArgs.builder()
                .zoneId("zone-12345678")
                .targets("http://www.example.com/example.txt")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:TeoPrefetchTaskOperation
        properties:
          zoneId: zone-12345678
          targets:
            - http://www.example.com/example.txt
    
    Example coming soon!
    

    Prefetch with edge mode and headers

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.TeoPrefetchTaskOperation("example", {
        zoneId: "zone-12345678",
        targets: ["http://www.example.com/example.txt"],
        mode: "edge",
        headers: [{
            name: "X-Custom-Header",
            value: "custom-value",
        }],
        prefetchMediaSegments: "on",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.TeoPrefetchTaskOperation("example",
        zone_id="zone-12345678",
        targets=["http://www.example.com/example.txt"],
        mode="edge",
        headers=[{
            "name": "X-Custom-Header",
            "value": "custom-value",
        }],
        prefetch_media_segments="on")
    
    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.NewTeoPrefetchTaskOperation(ctx, "example", &tencentcloud.TeoPrefetchTaskOperationArgs{
    			ZoneId: pulumi.String("zone-12345678"),
    			Targets: pulumi.StringArray{
    				pulumi.String("http://www.example.com/example.txt"),
    			},
    			Mode: pulumi.String("edge"),
    			Headers: tencentcloud.TeoPrefetchTaskOperationHeaderArray{
    				&tencentcloud.TeoPrefetchTaskOperationHeaderArgs{
    					Name:  pulumi.String("X-Custom-Header"),
    					Value: pulumi.String("custom-value"),
    				},
    			},
    			PrefetchMediaSegments: pulumi.String("on"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.TeoPrefetchTaskOperation("example", new()
        {
            ZoneId = "zone-12345678",
            Targets = new[]
            {
                "http://www.example.com/example.txt",
            },
            Mode = "edge",
            Headers = new[]
            {
                new Tencentcloud.Inputs.TeoPrefetchTaskOperationHeaderArgs
                {
                    Name = "X-Custom-Header",
                    Value = "custom-value",
                },
            },
            PrefetchMediaSegments = "on",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TeoPrefetchTaskOperation;
    import com.pulumi.tencentcloud.TeoPrefetchTaskOperationArgs;
    import com.pulumi.tencentcloud.inputs.TeoPrefetchTaskOperationHeaderArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new TeoPrefetchTaskOperation("example", TeoPrefetchTaskOperationArgs.builder()
                .zoneId("zone-12345678")
                .targets("http://www.example.com/example.txt")
                .mode("edge")
                .headers(TeoPrefetchTaskOperationHeaderArgs.builder()
                    .name("X-Custom-Header")
                    .value("custom-value")
                    .build())
                .prefetchMediaSegments("on")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:TeoPrefetchTaskOperation
        properties:
          zoneId: zone-12345678
          targets:
            - http://www.example.com/example.txt
          mode: edge
          headers:
            - name: X-Custom-Header
              value: custom-value
          prefetchMediaSegments: on
    
    Example coming soon!
    

    Create TeoPrefetchTaskOperation Resource

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

    Constructor syntax

    new TeoPrefetchTaskOperation(name: string, args: TeoPrefetchTaskOperationArgs, opts?: CustomResourceOptions);
    @overload
    def TeoPrefetchTaskOperation(resource_name: str,
                                 args: TeoPrefetchTaskOperationArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def TeoPrefetchTaskOperation(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 targets: Optional[Sequence[str]] = None,
                                 zone_id: Optional[str] = None,
                                 headers: Optional[Sequence[TeoPrefetchTaskOperationHeaderArgs]] = None,
                                 mode: Optional[str] = None,
                                 prefetch_media_segments: Optional[str] = None,
                                 teo_prefetch_task_operation_id: Optional[str] = None,
                                 timeouts: Optional[TeoPrefetchTaskOperationTimeoutsArgs] = None)
    func NewTeoPrefetchTaskOperation(ctx *Context, name string, args TeoPrefetchTaskOperationArgs, opts ...ResourceOption) (*TeoPrefetchTaskOperation, error)
    public TeoPrefetchTaskOperation(string name, TeoPrefetchTaskOperationArgs args, CustomResourceOptions? opts = null)
    public TeoPrefetchTaskOperation(String name, TeoPrefetchTaskOperationArgs args)
    public TeoPrefetchTaskOperation(String name, TeoPrefetchTaskOperationArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TeoPrefetchTaskOperation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_teoprefetchtaskoperation" "name" {
        # resource properties
    }

    Parameters

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

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

    Targets List<string>
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    ZoneId string
    Site ID.
    Headers List<TeoPrefetchTaskOperationHeader>
    HTTP headers to carry during prefetch.
    Mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    PrefetchMediaSegments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    TeoPrefetchTaskOperationId string
    ID of the resource.
    Timeouts TeoPrefetchTaskOperationTimeouts
    Targets []string
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    ZoneId string
    Site ID.
    Headers []TeoPrefetchTaskOperationHeaderArgs
    HTTP headers to carry during prefetch.
    Mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    PrefetchMediaSegments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    TeoPrefetchTaskOperationId string
    ID of the resource.
    Timeouts TeoPrefetchTaskOperationTimeoutsArgs
    targets list(string)
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    zone_id string
    Site ID.
    headers list(object)
    HTTP headers to carry during prefetch.
    mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetch_media_segments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    teo_prefetch_task_operation_id string
    ID of the resource.
    timeouts object
    targets List<String>
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    zoneId String
    Site ID.
    headers List<TeoPrefetchTaskOperationHeader>
    HTTP headers to carry during prefetch.
    mode String
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetchMediaSegments String
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    teoPrefetchTaskOperationId String
    ID of the resource.
    timeouts TeoPrefetchTaskOperationTimeouts
    targets string[]
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    zoneId string
    Site ID.
    headers TeoPrefetchTaskOperationHeader[]
    HTTP headers to carry during prefetch.
    mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetchMediaSegments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    teoPrefetchTaskOperationId string
    ID of the resource.
    timeouts TeoPrefetchTaskOperationTimeouts
    targets Sequence[str]
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    zone_id str
    Site ID.
    headers Sequence[TeoPrefetchTaskOperationHeaderArgs]
    HTTP headers to carry during prefetch.
    mode str
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetch_media_segments str
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    teo_prefetch_task_operation_id str
    ID of the resource.
    timeouts TeoPrefetchTaskOperationTimeoutsArgs
    targets List<String>
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    zoneId String
    Site ID.
    headers List<Property Map>
    HTTP headers to carry during prefetch.
    mode String
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetchMediaSegments String
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    teoPrefetchTaskOperationId String
    ID of the resource.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    JobId string
    Task ID.
    Tasks List<TeoPrefetchTaskOperationTask>
    Task result list.
    Id string
    The provider-assigned unique ID for this managed resource.
    JobId string
    Task ID.
    Tasks []TeoPrefetchTaskOperationTask
    Task result list.
    id string
    The provider-assigned unique ID for this managed resource.
    job_id string
    Task ID.
    tasks list(object)
    Task result list.
    id String
    The provider-assigned unique ID for this managed resource.
    jobId String
    Task ID.
    tasks List<TeoPrefetchTaskOperationTask>
    Task result list.
    id string
    The provider-assigned unique ID for this managed resource.
    jobId string
    Task ID.
    tasks TeoPrefetchTaskOperationTask[]
    Task result list.
    id str
    The provider-assigned unique ID for this managed resource.
    job_id str
    Task ID.
    tasks Sequence[TeoPrefetchTaskOperationTask]
    Task result list.
    id String
    The provider-assigned unique ID for this managed resource.
    jobId String
    Task ID.
    tasks List<Property Map>
    Task result list.

    Look up Existing TeoPrefetchTaskOperation Resource

    Get an existing TeoPrefetchTaskOperation 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?: TeoPrefetchTaskOperationState, opts?: CustomResourceOptions): TeoPrefetchTaskOperation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            headers: Optional[Sequence[TeoPrefetchTaskOperationHeaderArgs]] = None,
            job_id: Optional[str] = None,
            mode: Optional[str] = None,
            prefetch_media_segments: Optional[str] = None,
            targets: Optional[Sequence[str]] = None,
            tasks: Optional[Sequence[TeoPrefetchTaskOperationTaskArgs]] = None,
            teo_prefetch_task_operation_id: Optional[str] = None,
            timeouts: Optional[TeoPrefetchTaskOperationTimeoutsArgs] = None,
            zone_id: Optional[str] = None) -> TeoPrefetchTaskOperation
    func GetTeoPrefetchTaskOperation(ctx *Context, name string, id IDInput, state *TeoPrefetchTaskOperationState, opts ...ResourceOption) (*TeoPrefetchTaskOperation, error)
    public static TeoPrefetchTaskOperation Get(string name, Input<string> id, TeoPrefetchTaskOperationState? state, CustomResourceOptions? opts = null)
    public static TeoPrefetchTaskOperation get(String name, Output<String> id, TeoPrefetchTaskOperationState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TeoPrefetchTaskOperation    get:      id: ${id}
    import {
      to = tencentcloud_teoprefetchtaskoperation.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:
    Headers List<TeoPrefetchTaskOperationHeader>
    HTTP headers to carry during prefetch.
    JobId string
    Task ID.
    Mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    PrefetchMediaSegments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    Targets List<string>
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    Tasks List<TeoPrefetchTaskOperationTask>
    Task result list.
    TeoPrefetchTaskOperationId string
    ID of the resource.
    Timeouts TeoPrefetchTaskOperationTimeouts
    ZoneId string
    Site ID.
    Headers []TeoPrefetchTaskOperationHeaderArgs
    HTTP headers to carry during prefetch.
    JobId string
    Task ID.
    Mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    PrefetchMediaSegments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    Targets []string
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    Tasks []TeoPrefetchTaskOperationTaskArgs
    Task result list.
    TeoPrefetchTaskOperationId string
    ID of the resource.
    Timeouts TeoPrefetchTaskOperationTimeoutsArgs
    ZoneId string
    Site ID.
    headers list(object)
    HTTP headers to carry during prefetch.
    job_id string
    Task ID.
    mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetch_media_segments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    targets list(string)
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    tasks list(object)
    Task result list.
    teo_prefetch_task_operation_id string
    ID of the resource.
    timeouts object
    zone_id string
    Site ID.
    headers List<TeoPrefetchTaskOperationHeader>
    HTTP headers to carry during prefetch.
    jobId String
    Task ID.
    mode String
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetchMediaSegments String
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    targets List<String>
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    tasks List<TeoPrefetchTaskOperationTask>
    Task result list.
    teoPrefetchTaskOperationId String
    ID of the resource.
    timeouts TeoPrefetchTaskOperationTimeouts
    zoneId String
    Site ID.
    headers TeoPrefetchTaskOperationHeader[]
    HTTP headers to carry during prefetch.
    jobId string
    Task ID.
    mode string
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetchMediaSegments string
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    targets string[]
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    tasks TeoPrefetchTaskOperationTask[]
    Task result list.
    teoPrefetchTaskOperationId string
    ID of the resource.
    timeouts TeoPrefetchTaskOperationTimeouts
    zoneId string
    Site ID.
    headers Sequence[TeoPrefetchTaskOperationHeaderArgs]
    HTTP headers to carry during prefetch.
    job_id str
    Task ID.
    mode str
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetch_media_segments str
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    targets Sequence[str]
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    tasks Sequence[TeoPrefetchTaskOperationTaskArgs]
    Task result list.
    teo_prefetch_task_operation_id str
    ID of the resource.
    timeouts TeoPrefetchTaskOperationTimeoutsArgs
    zone_id str
    Site ID.
    headers List<Property Map>
    HTTP headers to carry during prefetch.
    jobId String
    Task ID.
    mode String
    Prefetch mode. Valid values: default (prefetch to middle layer), edge (prefetch to edge and middle layer). Default: default.
    prefetchMediaSegments String
    Media segment prefetch control. Valid values: on (enable segment prefetch), off (only prefetch the submitted description file). Default: off.
    targets List<String>
    List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
    tasks List<Property Map>
    Task result list.
    teoPrefetchTaskOperationId String
    ID of the resource.
    timeouts Property Map
    zoneId String
    Site ID.

    Supporting Types

    TeoPrefetchTaskOperationHeader, TeoPrefetchTaskOperationHeaderArgs

    Name string
    HTTP header name.
    Value string
    HTTP header value.
    Name string
    HTTP header name.
    Value string
    HTTP header value.
    name string
    HTTP header name.
    value string
    HTTP header value.
    name String
    HTTP header name.
    value String
    HTTP header value.
    name string
    HTTP header name.
    value string
    HTTP header value.
    name str
    HTTP header name.
    value str
    HTTP header value.
    name String
    HTTP header name.
    value String
    HTTP header value.

    TeoPrefetchTaskOperationTask, TeoPrefetchTaskOperationTaskArgs

    CreateTime string
    Task creation time.
    FailMessage string
    Failure reason description.
    FailType string
    Failure type.
    JobId string
    Task ID.
    Method string
    Cache purge method.
    Status string
    Task status. Valid values: processing, success, failed, timeout, canceled.
    Target string
    Resource URL.
    Type string
    Task type.
    UpdateTime string
    Task completion time.
    CreateTime string
    Task creation time.
    FailMessage string
    Failure reason description.
    FailType string
    Failure type.
    JobId string
    Task ID.
    Method string
    Cache purge method.
    Status string
    Task status. Valid values: processing, success, failed, timeout, canceled.
    Target string
    Resource URL.
    Type string
    Task type.
    UpdateTime string
    Task completion time.
    create_time string
    Task creation time.
    fail_message string
    Failure reason description.
    fail_type string
    Failure type.
    job_id string
    Task ID.
    method string
    Cache purge method.
    status string
    Task status. Valid values: processing, success, failed, timeout, canceled.
    target string
    Resource URL.
    type string
    Task type.
    update_time string
    Task completion time.
    createTime String
    Task creation time.
    failMessage String
    Failure reason description.
    failType String
    Failure type.
    jobId String
    Task ID.
    method String
    Cache purge method.
    status String
    Task status. Valid values: processing, success, failed, timeout, canceled.
    target String
    Resource URL.
    type String
    Task type.
    updateTime String
    Task completion time.
    createTime string
    Task creation time.
    failMessage string
    Failure reason description.
    failType string
    Failure type.
    jobId string
    Task ID.
    method string
    Cache purge method.
    status string
    Task status. Valid values: processing, success, failed, timeout, canceled.
    target string
    Resource URL.
    type string
    Task type.
    updateTime string
    Task completion time.
    create_time str
    Task creation time.
    fail_message str
    Failure reason description.
    fail_type str
    Failure type.
    job_id str
    Task ID.
    method str
    Cache purge method.
    status str
    Task status. Valid values: processing, success, failed, timeout, canceled.
    target str
    Resource URL.
    type str
    Task type.
    update_time str
    Task completion time.
    createTime String
    Task creation time.
    failMessage String
    Failure reason description.
    failType String
    Failure type.
    jobId String
    Task ID.
    method String
    Cache purge method.
    status String
    Task status. Valid values: processing, success, failed, timeout, canceled.
    target String
    Resource URL.
    type String
    Task type.
    updateTime String
    Task completion time.

    TeoPrefetchTaskOperationTimeouts, TeoPrefetchTaskOperationTimeoutsArgs

    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.