published on Monday, May 11, 2026 by tencentcloudstack
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.
- Zone
Id string - Site ID.
- Headers
List<Teo
Prefetch Task Operation Header> - 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 stringSegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - Teo
Prefetch stringTask Operation Id - ID of the resource.
- Timeouts
Teo
Prefetch Task Operation Timeouts
- Targets []string
- List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
- Zone
Id string - Site ID.
- Headers
[]Teo
Prefetch Task Operation Header Args - 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 stringSegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - Teo
Prefetch stringTask Operation Id - ID of the resource.
- Timeouts
Teo
Prefetch Task Operation Timeouts Args
- 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_ stringsegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - teo_
prefetch_ stringtask_ operation_ id - 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.
- zone
Id String - Site ID.
- headers
List<Teo
Prefetch Task Operation Header> - 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 StringSegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - teo
Prefetch StringTask Operation Id - ID of the resource.
- timeouts
Teo
Prefetch Task Operation Timeouts
- targets string[]
- List of URLs to prefetch. Each element format is like: http://www.example.com/example.txt.
- zone
Id string - Site ID.
- headers
Teo
Prefetch Task Operation Header[] - 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 stringSegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - teo
Prefetch stringTask Operation Id - ID of the resource.
- timeouts
Teo
Prefetch Task Operation Timeouts
- 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[Teo
Prefetch Task Operation Header Args] - 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_ strsegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - teo_
prefetch_ strtask_ operation_ id - ID of the resource.
- timeouts
Teo
Prefetch Task Operation Timeouts Args
- 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<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. - prefetch
Media StringSegments - Media segment prefetch control. Valid values:
on(enable segment prefetch),off(only prefetch the submitted description file). Default:off. - teo
Prefetch StringTask Operation Id - 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.
- Job
Id string - Task ID.
- Tasks
List<Teo
Prefetch Task Operation Task> - Task result list.
- Id string
- The provider-assigned unique ID for this managed resource.
- Job
Id string - Task ID.
- Tasks
[]Teo
Prefetch Task Operation Task - 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.
- job
Id String - Task ID.
- tasks
List<Teo
Prefetch Task Operation Task> - Task result list.
- id string
- The provider-assigned unique ID for this managed resource.
- job
Id string - Task ID.
- tasks
Teo
Prefetch Task Operation Task[] - Task result list.
- id str
- The provider-assigned unique ID for this managed resource.
- job_
id str - Task ID.
- tasks
Sequence[Teo
Prefetch Task Operation Task] - Task result list.
- id String
- The provider-assigned unique ID for this managed resource.
- job
Id 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) -> TeoPrefetchTaskOperationfunc 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.
- Headers
List<Teo
Prefetch Task Operation Header> - 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 stringSegments - 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<Teo
Prefetch Task Operation Task> - Task result list.
- Teo
Prefetch stringTask Operation Id - ID of the resource.
- Timeouts
Teo
Prefetch Task Operation Timeouts - Zone
Id string - Site ID.
- Headers
[]Teo
Prefetch Task Operation Header Args - 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 stringSegments - 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
[]Teo
Prefetch Task Operation Task Args - Task result list.
- Teo
Prefetch stringTask Operation Id - ID of the resource.
- Timeouts
Teo
Prefetch Task Operation Timeouts Args - Zone
Id 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_ stringsegments - 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_ stringtask_ operation_ id - ID of the resource.
- timeouts object
- zone_
id string - Site ID.
- headers
List<Teo
Prefetch Task Operation Header> - 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 StringSegments - 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<Teo
Prefetch Task Operation Task> - Task result list.
- teo
Prefetch StringTask Operation Id - ID of the resource.
- timeouts
Teo
Prefetch Task Operation Timeouts - zone
Id String - Site ID.
- headers
Teo
Prefetch Task Operation Header[] - 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 stringSegments - 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
Teo
Prefetch Task Operation Task[] - Task result list.
- teo
Prefetch stringTask Operation Id - ID of the resource.
- timeouts
Teo
Prefetch Task Operation Timeouts - zone
Id string - Site ID.
- headers
Sequence[Teo
Prefetch Task Operation Header Args] - 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_ strsegments - 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[Teo
Prefetch Task Operation Task Args] - Task result list.
- teo_
prefetch_ strtask_ operation_ id - ID of the resource.
- timeouts
Teo
Prefetch Task Operation Timeouts Args - zone_
id str - Site ID.
- headers List<Property Map>
- 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 StringSegments - 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.
- teo
Prefetch StringTask Operation Id - ID of the resource.
- timeouts Property Map
- zone
Id String - Site ID.
Supporting Types
TeoPrefetchTaskOperationHeader, TeoPrefetchTaskOperationHeaderArgs
TeoPrefetchTaskOperationTask, TeoPrefetchTaskOperationTaskArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
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
tencentcloudTerraform Provider.
published on Monday, May 11, 2026 by tencentcloudstack
