published on Thursday, Sep 3, 2026 by Volcengine
published on Thursday, Sep 3, 2026 by Volcengine
vePFS data flow task. Used to perform preheating (Import), settling (Export), reconciliation (Inventory), and deletion (Delete) operations between the vePFS file system and TOS bucket.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const example = new volcenginecc.vepfs.DataFlowTask("example", {
fileSystemId: "vepfs-xxxxxx",
taskAction: "Import",
dataType: "MetaAndData",
dataStorage: "example-bucket",
subPath: "/",
sameNameFilePolicy: "KeepLatest",
entryListFileInfo: {
file_name: "data.csv",
file_bucket: "example-bucket",
file_key: "data.csv",
},
});
import pulumi
import pulumi_volcenginecc as volcenginecc
example = volcenginecc.vepfs.DataFlowTask("example",
file_system_id="vepfs-xxxxxx",
task_action="Import",
data_type="MetaAndData",
data_storage="example-bucket",
sub_path="/",
same_name_file_policy="KeepLatest",
entry_list_file_info={
"file_name": "data.csv",
"file_bucket": "example-bucket",
"file_key": "data.csv",
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vepfs"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vepfs.NewDataFlowTask(ctx, "example", &vepfs.DataFlowTaskArgs{
FileSystemId: pulumi.String("vepfs-xxxxxx"),
TaskAction: pulumi.String("Import"),
DataType: pulumi.String("MetaAndData"),
DataStorage: pulumi.String("example-bucket"),
SubPath: pulumi.String("/"),
SameNameFilePolicy: pulumi.String("KeepLatest"),
EntryListFileInfo: &vepfs.DataFlowTaskEntryListFileInfoArgs{
File_name: "data.csv",
File_bucket: "example-bucket",
File_key: "data.csv",
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var example = new Volcenginecc.Vepfs.DataFlowTask("example", new()
{
FileSystemId = "vepfs-xxxxxx",
TaskAction = "Import",
DataType = "MetaAndData",
DataStorage = "example-bucket",
SubPath = "/",
SameNameFilePolicy = "KeepLatest",
EntryListFileInfo = new Volcenginecc.Vepfs.Inputs.DataFlowTaskEntryListFileInfoArgs
{
File_name = "data.csv",
File_bucket = "example-bucket",
File_key = "data.csv",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.vepfs.DataFlowTask;
import com.volcengine.volcenginecc.vepfs.DataFlowTaskArgs;
import com.pulumi.volcenginecc.vepfs.inputs.DataFlowTaskEntryListFileInfoArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 DataFlowTask("example", DataFlowTaskArgs.builder()
.fileSystemId("vepfs-xxxxxx")
.taskAction("Import")
.dataType("MetaAndData")
.dataStorage("example-bucket")
.subPath("/")
.sameNameFilePolicy("KeepLatest")
.entryListFileInfo(DataFlowTaskEntryListFileInfoArgs.builder()
.file_name("data.csv")
.file_bucket("example-bucket")
.file_key("data.csv")
.build())
.build());
}
}
resources:
example:
type: volcenginecc:vepfs:DataFlowTask
properties:
fileSystemId: vepfs-xxxxxx
taskAction: Import
dataType: MetaAndData
dataStorage: example-bucket
subPath: /
sameNameFilePolicy: KeepLatest
entryListFileInfo:
file_name: data.csv
file_bucket: example-bucket
file_key: data.csv
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_vepfs_dataflowtask" "example" {
file_system_id = "vepfs-xxxxxx"
task_action = "Import"
data_type = "MetaAndData"
data_storage = "example-bucket"
sub_path = "/"
same_name_file_policy = "KeepLatest"
entry_list_file_info = {
file_name = "data.csv"
file_bucket = "example-bucket"
file_key = "data.csv"
}
}
Create DataFlowTask Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataFlowTask(name: string, args: DataFlowTaskArgs, opts?: CustomResourceOptions);@overload
def DataFlowTask(resource_name: str,
args: DataFlowTaskArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DataFlowTask(resource_name: str,
opts: Optional[ResourceOptions] = None,
data_type: Optional[str] = None,
file_system_id: Optional[str] = None,
task_action: Optional[str] = None,
data_storage: Optional[str] = None,
data_storage_path: Optional[str] = None,
delete_policy: Optional[DataFlowTaskDeletePolicyArgs] = None,
enable_tls_log: Optional[bool] = None,
entry_list_file_info: Optional[DataFlowTaskEntryListFileInfoArgs] = None,
export_symlink_policy: Optional[str] = None,
fileset_id: Optional[str] = None,
same_name_file_policy: Optional[str] = None,
sub_path: Optional[str] = None)func NewDataFlowTask(ctx *Context, name string, args DataFlowTaskArgs, opts ...ResourceOption) (*DataFlowTask, error)public DataFlowTask(string name, DataFlowTaskArgs args, CustomResourceOptions? opts = null)
public DataFlowTask(String name, DataFlowTaskArgs args)
public DataFlowTask(String name, DataFlowTaskArgs args, CustomResourceOptions options)
type: volcenginecc:vepfs:DataFlowTask
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_vepfs_data_flow_task" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DataFlowTaskArgs
- 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 DataFlowTaskArgs
- 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 DataFlowTaskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataFlowTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataFlowTaskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dataFlowTaskResource = new Volcenginecc.Vepfs.DataFlowTask("dataFlowTaskResource", new()
{
DataType = "string",
FileSystemId = "string",
TaskAction = "string",
DataStorage = "string",
DataStoragePath = "string",
DeletePolicy = new Volcenginecc.Vepfs.Inputs.DataFlowTaskDeletePolicyArgs
{
DeleteTimeBefore = "string",
Rule = "string",
},
EnableTlsLog = false,
EntryListFileInfo = new Volcenginecc.Vepfs.Inputs.DataFlowTaskEntryListFileInfoArgs
{
FileBucket = "string",
FileKey = "string",
FileName = "string",
},
ExportSymlinkPolicy = "string",
FilesetId = "string",
SameNameFilePolicy = "string",
SubPath = "string",
});
example, err := vepfs.NewDataFlowTask(ctx, "dataFlowTaskResource", &vepfs.DataFlowTaskArgs{
DataType: pulumi.String("string"),
FileSystemId: pulumi.String("string"),
TaskAction: pulumi.String("string"),
DataStorage: pulumi.String("string"),
DataStoragePath: pulumi.String("string"),
DeletePolicy: &vepfs.DataFlowTaskDeletePolicyArgs{
DeleteTimeBefore: pulumi.String("string"),
Rule: pulumi.String("string"),
},
EnableTlsLog: pulumi.Bool(false),
EntryListFileInfo: &vepfs.DataFlowTaskEntryListFileInfoArgs{
FileBucket: pulumi.String("string"),
FileKey: pulumi.String("string"),
FileName: pulumi.String("string"),
},
ExportSymlinkPolicy: pulumi.String("string"),
FilesetId: pulumi.String("string"),
SameNameFilePolicy: pulumi.String("string"),
SubPath: pulumi.String("string"),
})
resource "volcenginecc_vepfs_data_flow_task" "dataFlowTaskResource" {
lifecycle {
create_before_destroy = true
}
data_type = "string"
file_system_id = "string"
task_action = "string"
data_storage = "string"
data_storage_path = "string"
delete_policy = {
delete_time_before = "string"
rule = "string"
}
enable_tls_log = false
entry_list_file_info = {
file_bucket = "string"
file_key = "string"
file_name = "string"
}
export_symlink_policy = "string"
fileset_id = "string"
same_name_file_policy = "string"
sub_path = "string"
}
var dataFlowTaskResource = new DataFlowTask("dataFlowTaskResource", DataFlowTaskArgs.builder()
.dataType("string")
.fileSystemId("string")
.taskAction("string")
.dataStorage("string")
.dataStoragePath("string")
.deletePolicy(DataFlowTaskDeletePolicyArgs.builder()
.deleteTimeBefore("string")
.rule("string")
.build())
.enableTlsLog(false)
.entryListFileInfo(DataFlowTaskEntryListFileInfoArgs.builder()
.fileBucket("string")
.fileKey("string")
.fileName("string")
.build())
.exportSymlinkPolicy("string")
.filesetId("string")
.sameNameFilePolicy("string")
.subPath("string")
.build());
data_flow_task_resource = volcenginecc.vepfs.DataFlowTask("dataFlowTaskResource",
data_type="string",
file_system_id="string",
task_action="string",
data_storage="string",
data_storage_path="string",
delete_policy={
"delete_time_before": "string",
"rule": "string",
},
enable_tls_log=False,
entry_list_file_info={
"file_bucket": "string",
"file_key": "string",
"file_name": "string",
},
export_symlink_policy="string",
fileset_id="string",
same_name_file_policy="string",
sub_path="string")
const dataFlowTaskResource = new volcenginecc.vepfs.DataFlowTask("dataFlowTaskResource", {
dataType: "string",
fileSystemId: "string",
taskAction: "string",
dataStorage: "string",
dataStoragePath: "string",
deletePolicy: {
deleteTimeBefore: "string",
rule: "string",
},
enableTlsLog: false,
entryListFileInfo: {
fileBucket: "string",
fileKey: "string",
fileName: "string",
},
exportSymlinkPolicy: "string",
filesetId: "string",
sameNameFilePolicy: "string",
subPath: "string",
});
type: volcenginecc:vepfs:DataFlowTask
properties:
dataStorage: string
dataStoragePath: string
dataType: string
deletePolicy:
deleteTimeBefore: string
rule: string
enableTlsLog: false
entryListFileInfo:
fileBucket: string
fileKey: string
fileName: string
exportSymlinkPolicy: string
fileSystemId: string
filesetId: string
sameNameFilePolicy: string
subPath: string
taskAction: string
DataFlowTask 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 DataFlowTask resource accepts the following input properties:
- Data
Type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- File
System stringId - File system ID.
- Task
Action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- Data
Storage string - Source storage (TOS bucket) name.
- Data
Storage stringPath - Bucket path prefix.
- Delete
Policy Volcengine.Data Flow Task Delete Policy - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- Enable
Tls boolLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- Entry
List Volcengine.File Info Data Flow Task Entry List File Info - List file information for task execution.
- Export
Symlink stringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- Fileset
Id string - Fileset ID。
- Same
Name stringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- Sub
Path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- Data
Type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- File
System stringId - File system ID.
- Task
Action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- Data
Storage string - Source storage (TOS bucket) name.
- Data
Storage stringPath - Bucket path prefix.
- Delete
Policy DataFlow Task Delete Policy Args - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- Enable
Tls boolLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- Entry
List DataFile Info Flow Task Entry List File Info Args - List file information for task execution.
- Export
Symlink stringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- Fileset
Id string - Fileset ID。
- Same
Name stringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- Sub
Path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- data_
type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- file_
system_ stringid - File system ID.
- task_
action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- data_
storage string - Source storage (TOS bucket) name.
- data_
storage_ stringpath - Bucket path prefix.
- delete_
policy object - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable_
tls_ boollog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- entry_
list_ objectfile_ info - List file information for task execution.
- export_
symlink_ stringpolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- fileset_
id string - Fileset ID。
- same_
name_ stringfile_ policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- sub_
path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- data
Type String - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- file
System StringId - File system ID.
- task
Action String - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- data
Storage String - Source storage (TOS bucket) name.
- data
Storage StringPath - Bucket path prefix.
- delete
Policy DataFlow Task Delete Policy - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable
Tls BooleanLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- entry
List DataFile Info Flow Task Entry List File Info - List file information for task execution.
- export
Symlink StringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- fileset
Id String - Fileset ID。
- same
Name StringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- sub
Path String - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- data
Type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- file
System stringId - File system ID.
- task
Action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- data
Storage string - Source storage (TOS bucket) name.
- data
Storage stringPath - Bucket path prefix.
- delete
Policy DataFlow Task Delete Policy - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable
Tls booleanLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- entry
List DataFile Info Flow Task Entry List File Info - List file information for task execution.
- export
Symlink stringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- fileset
Id string - Fileset ID。
- same
Name stringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- sub
Path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- data_
type str - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- file_
system_ strid - File system ID.
- task_
action str - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- data_
storage str - Source storage (TOS bucket) name.
- data_
storage_ strpath - Bucket path prefix.
- delete_
policy DataFlow Task Delete Policy Args - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable_
tls_ boollog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- entry_
list_ Datafile_ info Flow Task Entry List File Info Args - List file information for task execution.
- export_
symlink_ strpolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- fileset_
id str - Fileset ID。
- same_
name_ strfile_ policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- sub_
path str - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- data
Type String - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- file
System StringId - File system ID.
- task
Action String - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- data
Storage String - Source storage (TOS bucket) name.
- data
Storage StringPath - Bucket path prefix.
- delete
Policy Property Map - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable
Tls BooleanLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- entry
List Property MapFile Info - List file information for task execution.
- export
Symlink StringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- fileset
Id String - Fileset ID。
- same
Name StringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- sub
Path String - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
Outputs
All input properties are implicitly available as output properties. Additionally, the DataFlowTask resource produces the following output properties:
- Create
Time string - Task creation time.
- Data
Flow stringTask Id - Data flow task ID.
- End
Time string - Task end time.
- Entry
List stringFile Url - Download link for the list file used in task execution.
- Exec
Count string - Completed operations (applies to preheating and settling tasks).
- Exec
Size string - Executed task capacity.
- Failed
Count string - Total number of failures after being added to the queue.
- Fileset
Path string - Fileset path.
- Id string
- The provider-assigned unique ID for this managed resource.
- Queue
Count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- Reports
List<Volcengine.
Data Flow Task Report> - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Start
Time string - Task start time.
- Status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- Tls
Info Volcengine.Data Flow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- Total
Size string - Total task capacity.
- Update
Time string - Task modification time.
- Create
Time string - Task creation time.
- Data
Flow stringTask Id - Data flow task ID.
- End
Time string - Task end time.
- Entry
List stringFile Url - Download link for the list file used in task execution.
- Exec
Count string - Completed operations (applies to preheating and settling tasks).
- Exec
Size string - Executed task capacity.
- Failed
Count string - Total number of failures after being added to the queue.
- Fileset
Path string - Fileset path.
- Id string
- The provider-assigned unique ID for this managed resource.
- Queue
Count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- Reports
[]Data
Flow Task Report - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Start
Time string - Task start time.
- Status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- Tls
Info DataFlow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- Total
Size string - Total task capacity.
- Update
Time string - Task modification time.
- create_
time string - Task creation time.
- data_
flow_ stringtask_ id - Data flow task ID.
- end_
time string - Task end time.
- entry_
list_ stringfile_ url - Download link for the list file used in task execution.
- exec_
count string - Completed operations (applies to preheating and settling tasks).
- exec_
size string - Executed task capacity.
- failed_
count string - Total number of failures after being added to the queue.
- fileset_
path string - Fileset path.
- id string
- The provider-assigned unique ID for this managed resource.
- queue_
count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports list(object)
- Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- start_
time string - Task start time.
- status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- tls_
info object - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total_
size string - Total task capacity.
- update_
time string - Task modification time.
- create
Time String - Task creation time.
- data
Flow StringTask Id - Data flow task ID.
- end
Time String - Task end time.
- entry
List StringFile Url - Download link for the list file used in task execution.
- exec
Count String - Completed operations (applies to preheating and settling tasks).
- exec
Size String - Executed task capacity.
- failed
Count String - Total number of failures after being added to the queue.
- fileset
Path String - Fileset path.
- id String
- The provider-assigned unique ID for this managed resource.
- queue
Count String - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports
List<Data
Flow Task Report> - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- start
Time String - Task start time.
- status String
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- tls
Info DataFlow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total
Size String - Total task capacity.
- update
Time String - Task modification time.
- create
Time string - Task creation time.
- data
Flow stringTask Id - Data flow task ID.
- end
Time string - Task end time.
- entry
List stringFile Url - Download link for the list file used in task execution.
- exec
Count string - Completed operations (applies to preheating and settling tasks).
- exec
Size string - Executed task capacity.
- failed
Count string - Total number of failures after being added to the queue.
- fileset
Path string - Fileset path.
- id string
- The provider-assigned unique ID for this managed resource.
- queue
Count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports
Data
Flow Task Report[] - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- start
Time string - Task start time.
- status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- tls
Info DataFlow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total
Size string - Total task capacity.
- update
Time string - Task modification time.
- create_
time str - Task creation time.
- data_
flow_ strtask_ id - Data flow task ID.
- end_
time str - Task end time.
- entry_
list_ strfile_ url - Download link for the list file used in task execution.
- exec_
count str - Completed operations (applies to preheating and settling tasks).
- exec_
size str - Executed task capacity.
- failed_
count str - Total number of failures after being added to the queue.
- fileset_
path str - Fileset path.
- id str
- The provider-assigned unique ID for this managed resource.
- queue_
count str - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports
Sequence[Data
Flow Task Report] - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- start_
time str - Task start time.
- status str
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- tls_
info DataFlow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total_
size str - Total task capacity.
- update_
time str - Task modification time.
- create
Time String - Task creation time.
- data
Flow StringTask Id - Data flow task ID.
- end
Time String - Task end time.
- entry
List StringFile Url - Download link for the list file used in task execution.
- exec
Count String - Completed operations (applies to preheating and settling tasks).
- exec
Size String - Executed task capacity.
- failed
Count String - Total number of failures after being added to the queue.
- fileset
Path String - Fileset path.
- id String
- The provider-assigned unique ID for this managed resource.
- queue
Count String - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports List<Property Map>
- Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- start
Time String - Task start time.
- status String
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- tls
Info Property Map - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total
Size String - Total task capacity.
- update
Time String - Task modification time.
Look up Existing DataFlowTask Resource
Get an existing DataFlowTask 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?: DataFlowTaskState, opts?: CustomResourceOptions): DataFlowTask@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
data_flow_task_id: Optional[str] = None,
data_storage: Optional[str] = None,
data_storage_path: Optional[str] = None,
data_type: Optional[str] = None,
delete_policy: Optional[DataFlowTaskDeletePolicyArgs] = None,
enable_tls_log: Optional[bool] = None,
end_time: Optional[str] = None,
entry_list_file_info: Optional[DataFlowTaskEntryListFileInfoArgs] = None,
entry_list_file_url: Optional[str] = None,
exec_count: Optional[str] = None,
exec_size: Optional[str] = None,
export_symlink_policy: Optional[str] = None,
failed_count: Optional[str] = None,
file_system_id: Optional[str] = None,
fileset_id: Optional[str] = None,
fileset_path: Optional[str] = None,
queue_count: Optional[str] = None,
reports: Optional[Sequence[DataFlowTaskReportArgs]] = None,
same_name_file_policy: Optional[str] = None,
start_time: Optional[str] = None,
status: Optional[str] = None,
sub_path: Optional[str] = None,
task_action: Optional[str] = None,
tls_info: Optional[DataFlowTaskTlsInfoArgs] = None,
total_size: Optional[str] = None,
update_time: Optional[str] = None) -> DataFlowTaskfunc GetDataFlowTask(ctx *Context, name string, id IDInput, state *DataFlowTaskState, opts ...ResourceOption) (*DataFlowTask, error)public static DataFlowTask Get(string name, Input<string> id, DataFlowTaskState? state, CustomResourceOptions? opts = null)public static DataFlowTask get(String name, Output<String> id, DataFlowTaskState state, CustomResourceOptions options)resources: _: type: volcenginecc:vepfs:DataFlowTask get: id: ${id}import {
to = volcenginecc_vepfs_data_flow_task.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.
- Create
Time string - Task creation time.
- Data
Flow stringTask Id - Data flow task ID.
- Data
Storage string - Source storage (TOS bucket) name.
- Data
Storage stringPath - Bucket path prefix.
- Data
Type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- Delete
Policy Volcengine.Data Flow Task Delete Policy - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- Enable
Tls boolLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- End
Time string - Task end time.
- Entry
List Volcengine.File Info Data Flow Task Entry List File Info - List file information for task execution.
- Entry
List stringFile Url - Download link for the list file used in task execution.
- Exec
Count string - Completed operations (applies to preheating and settling tasks).
- Exec
Size string - Executed task capacity.
- Export
Symlink stringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- Failed
Count string - Total number of failures after being added to the queue.
- File
System stringId - File system ID.
- Fileset
Id string - Fileset ID。
- Fileset
Path string - Fileset path.
- Queue
Count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- Reports
List<Volcengine.
Data Flow Task Report> - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Same
Name stringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- Start
Time string - Task start time.
- Status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- Sub
Path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- Task
Action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- Tls
Info Volcengine.Data Flow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- Total
Size string - Total task capacity.
- Update
Time string - Task modification time.
- Create
Time string - Task creation time.
- Data
Flow stringTask Id - Data flow task ID.
- Data
Storage string - Source storage (TOS bucket) name.
- Data
Storage stringPath - Bucket path prefix.
- Data
Type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- Delete
Policy DataFlow Task Delete Policy Args - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- Enable
Tls boolLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- End
Time string - Task end time.
- Entry
List DataFile Info Flow Task Entry List File Info Args - List file information for task execution.
- Entry
List stringFile Url - Download link for the list file used in task execution.
- Exec
Count string - Completed operations (applies to preheating and settling tasks).
- Exec
Size string - Executed task capacity.
- Export
Symlink stringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- Failed
Count string - Total number of failures after being added to the queue.
- File
System stringId - File system ID.
- Fileset
Id string - Fileset ID。
- Fileset
Path string - Fileset path.
- Queue
Count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- Reports
[]Data
Flow Task Report Args - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Same
Name stringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- Start
Time string - Task start time.
- Status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- Sub
Path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- Task
Action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- Tls
Info DataFlow Task Tls Info Args - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- Total
Size string - Total task capacity.
- Update
Time string - Task modification time.
- create_
time string - Task creation time.
- data_
flow_ stringtask_ id - Data flow task ID.
- data_
storage string - Source storage (TOS bucket) name.
- data_
storage_ stringpath - Bucket path prefix.
- data_
type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- delete_
policy object - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable_
tls_ boollog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- end_
time string - Task end time.
- entry_
list_ objectfile_ info - List file information for task execution.
- entry_
list_ stringfile_ url - Download link for the list file used in task execution.
- exec_
count string - Completed operations (applies to preheating and settling tasks).
- exec_
size string - Executed task capacity.
- export_
symlink_ stringpolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- failed_
count string - Total number of failures after being added to the queue.
- file_
system_ stringid - File system ID.
- fileset_
id string - Fileset ID。
- fileset_
path string - Fileset path.
- queue_
count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports list(object)
- Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- same_
name_ stringfile_ policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- start_
time string - Task start time.
- status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- sub_
path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- task_
action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- tls_
info object - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total_
size string - Total task capacity.
- update_
time string - Task modification time.
- create
Time String - Task creation time.
- data
Flow StringTask Id - Data flow task ID.
- data
Storage String - Source storage (TOS bucket) name.
- data
Storage StringPath - Bucket path prefix.
- data
Type String - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- delete
Policy DataFlow Task Delete Policy - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable
Tls BooleanLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- end
Time String - Task end time.
- entry
List DataFile Info Flow Task Entry List File Info - List file information for task execution.
- entry
List StringFile Url - Download link for the list file used in task execution.
- exec
Count String - Completed operations (applies to preheating and settling tasks).
- exec
Size String - Executed task capacity.
- export
Symlink StringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- failed
Count String - Total number of failures after being added to the queue.
- file
System StringId - File system ID.
- fileset
Id String - Fileset ID。
- fileset
Path String - Fileset path.
- queue
Count String - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports
List<Data
Flow Task Report> - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- same
Name StringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- start
Time String - Task start time.
- status String
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- sub
Path String - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- task
Action String - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- tls
Info DataFlow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total
Size String - Total task capacity.
- update
Time String - Task modification time.
- create
Time string - Task creation time.
- data
Flow stringTask Id - Data flow task ID.
- data
Storage string - Source storage (TOS bucket) name.
- data
Storage stringPath - Bucket path prefix.
- data
Type string - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- delete
Policy DataFlow Task Delete Policy - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable
Tls booleanLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- end
Time string - Task end time.
- entry
List DataFile Info Flow Task Entry List File Info - List file information for task execution.
- entry
List stringFile Url - Download link for the list file used in task execution.
- exec
Count string - Completed operations (applies to preheating and settling tasks).
- exec
Size string - Executed task capacity.
- export
Symlink stringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- failed
Count string - Total number of failures after being added to the queue.
- file
System stringId - File system ID.
- fileset
Id string - Fileset ID。
- fileset
Path string - Fileset path.
- queue
Count string - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports
Data
Flow Task Report[] - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- same
Name stringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- start
Time string - Task start time.
- status string
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- sub
Path string - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- task
Action string - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- tls
Info DataFlow Task Tls Info - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total
Size string - Total task capacity.
- update
Time string - Task modification time.
- create_
time str - Task creation time.
- data_
flow_ strtask_ id - Data flow task ID.
- data_
storage str - Source storage (TOS bucket) name.
- data_
storage_ strpath - Bucket path prefix.
- data_
type str - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- delete_
policy DataFlow Task Delete Policy Args - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable_
tls_ boollog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- end_
time str - Task end time.
- entry_
list_ Datafile_ info Flow Task Entry List File Info Args - List file information for task execution.
- entry_
list_ strfile_ url - Download link for the list file used in task execution.
- exec_
count str - Completed operations (applies to preheating and settling tasks).
- exec_
size str - Executed task capacity.
- export_
symlink_ strpolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- failed_
count str - Total number of failures after being added to the queue.
- file_
system_ strid - File system ID.
- fileset_
id str - Fileset ID。
- fileset_
path str - Fileset path.
- queue_
count str - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports
Sequence[Data
Flow Task Report Args] - Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- same_
name_ strfile_ policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- start_
time str - Task start time.
- status str
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- sub_
path str - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- task_
action str - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- tls_
info DataFlow Task Tls Info Args - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total_
size str - Total task capacity.
- update_
time str - Task modification time.
- create
Time String - Task creation time.
- data
Flow StringTask Id - Data flow task ID.
- data
Storage String - Source storage (TOS bucket) name.
- data
Storage StringPath - Bucket path prefix.
- data
Type String - Data type operated on by the task. Metadata: Metadata; MetaAndData: Metadata and data.
- delete
Policy Property Map - Deletion policy. Required when the task type is Delete (TaskAction = Delete).
- enable
Tls BooleanLog - Whether to enable TLS log analysis. Only provided in the create request; the server responds with detailed information via TlsInfo.
- end
Time String - Task end time.
- entry
List Property MapFile Info - List file information for task execution.
- entry
List StringFile Url - Download link for the list file used in task execution.
- exec
Count String - Completed operations (applies to preheating and settling tasks).
- exec
Size String - Executed task capacity.
- export
Symlink StringPolicy - Export task symlink handling policy. Skip: skip symlink files; NormalFile: export as independent files.
- failed
Count String - Total number of failures after being added to the queue.
- file
System StringId - File system ID.
- fileset
Id String - Fileset ID。
- fileset
Path String - Fileset path.
- queue
Count String - Total number of operations added to the queue (valid for preheating and settling tasks).
- reports List<Property Map>
- Task report list. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- same
Name StringFile Policy - Same-name file policy. Skip: Skip files with the same name; KeepLatest: Keep the latest file; OverWrite: Overwrite files with the same name.
- start
Time String - Task start time.
- status String
- Task status. Creating: Creating; Running: Running; Finished: Finished; Canceling: Canceling; Canceled: Canceled; Deleting: Deleting; Error: Error; Deleted: Deleted.
- sub
Path String - Subpath under Fileset (represents the full file system path if Fileset ID is not specified).
- task
Action String - Task type. Import: Preheating task; Export: Settling task; Inventory: Reconciliation task; Delete: Deletion task.
- tls
Info Property Map - TLS log information. Displayed by the server only if TLS log analysis (EnableTlsLog=true) is enabled during creation.
- total
Size String - Total task capacity.
- update
Time String - Task modification time.
Supporting Types
DataFlowTaskDeletePolicy, DataFlowTaskDeletePolicyArgs
- Delete
Time stringBefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- Rule string
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
- Delete
Time stringBefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- Rule string
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
- delete_
time_ stringbefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- rule string
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
- delete
Time StringBefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- rule String
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
- delete
Time stringBefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- rule string
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
- delete_
time_ strbefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- rule str
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
- delete
Time StringBefore - Specify the deletion time (data before this time will be deleted), in milliseconds.
- rule String
- Deletion rule. DELETETYPEONLYFS: Delete only objects in the file system; DELETETYPEFSWITHLATESTOBJECT: Delete objects in the file system and their latest TOS object versions; DELETETYPEFSWITHALLVERSION_OBJECT: Delete objects in the file system and all their TOS object versions.
DataFlowTaskEntryListFileInfo, DataFlowTaskEntryListFileInfoArgs
- File
Bucket string - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- File
Key string - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- File
Name string - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
- File
Bucket string - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- File
Key string - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- File
Name string - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
- file_
bucket string - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- file_
key string - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- file_
name string - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
- file
Bucket String - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- file
Key String - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- file
Name String - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
- file
Bucket string - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- file
Key string - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- file
Name string - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
- file_
bucket str - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- file_
key str - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- file_
name str - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
- file
Bucket String - TOS bucket containing the list file for task execution. Required when using a list file from the user's TOS bucket for preheating or settling.
- file
Key String - Identifier for the list file used in task execution. For local list files, this is the identifier returned by CreatePreSignedUrl; for list files in the user's TOS bucket, this is the object path of the list file.
- file
Name String - Name of the list file for task execution. Required when using either a local list file or a list file from the user's TOS bucket for preheating or settling.
DataFlowTaskReport, DataFlowTaskReportArgs
DataFlowTaskTlsInfo, DataFlowTaskTlsInfoArgs
- Enable bool
- Whether to enable TLS log.
- Project
Id string - TLS log project ID.
- Project
Name string - TLS log project name.
- Project
Url string - Redirect URL for the TLS log project.
- Topic
Embedded stringUrl - Embedded address of the TLS log topic.
- Topic
Id string - TLS log topic ID.
- Topic
Name string - TLS log topic name.
- Topic
Url string - Redirect URL for TLS log topic.
- Enable bool
- Whether to enable TLS log.
- Project
Id string - TLS log project ID.
- Project
Name string - TLS log project name.
- Project
Url string - Redirect URL for the TLS log project.
- Topic
Embedded stringUrl - Embedded address of the TLS log topic.
- Topic
Id string - TLS log topic ID.
- Topic
Name string - TLS log topic name.
- Topic
Url string - Redirect URL for TLS log topic.
- enable bool
- Whether to enable TLS log.
- project_
id string - TLS log project ID.
- project_
name string - TLS log project name.
- project_
url string - Redirect URL for the TLS log project.
- topic_
embedded_ stringurl - Embedded address of the TLS log topic.
- topic_
id string - TLS log topic ID.
- topic_
name string - TLS log topic name.
- topic_
url string - Redirect URL for TLS log topic.
- enable Boolean
- Whether to enable TLS log.
- project
Id String - TLS log project ID.
- project
Name String - TLS log project name.
- project
Url String - Redirect URL for the TLS log project.
- topic
Embedded StringUrl - Embedded address of the TLS log topic.
- topic
Id String - TLS log topic ID.
- topic
Name String - TLS log topic name.
- topic
Url String - Redirect URL for TLS log topic.
- enable boolean
- Whether to enable TLS log.
- project
Id string - TLS log project ID.
- project
Name string - TLS log project name.
- project
Url string - Redirect URL for the TLS log project.
- topic
Embedded stringUrl - Embedded address of the TLS log topic.
- topic
Id string - TLS log topic ID.
- topic
Name string - TLS log topic name.
- topic
Url string - Redirect URL for TLS log topic.
- enable bool
- Whether to enable TLS log.
- project_
id str - TLS log project ID.
- project_
name str - TLS log project name.
- project_
url str - Redirect URL for the TLS log project.
- topic_
embedded_ strurl - Embedded address of the TLS log topic.
- topic_
id str - TLS log topic ID.
- topic_
name str - TLS log topic name.
- topic_
url str - Redirect URL for TLS log topic.
- enable Boolean
- Whether to enable TLS log.
- project
Id String - TLS log project ID.
- project
Name String - TLS log project name.
- project
Url String - Redirect URL for the TLS log project.
- topic
Embedded StringUrl - Embedded address of the TLS log topic.
- topic
Id String - TLS log topic ID.
- topic
Name String - TLS log topic name.
- topic
Url String - Redirect URL for TLS log topic.
Import
$ pulumi import volcenginecc:vepfs/dataFlowTask:DataFlowTask example "file_system_id|data_flow_task_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Sep 3, 2026 by Volcengine