tencentcloud.ClsDataTransform
Explore with Pulumi AI
Provides a resource to create a CLS data transform
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const logsetSrc = new tencentcloud.ClsLogset("logsetSrc", {
logsetName: "tf-example-src",
tags: {
createdBy: "terraform",
},
});
const topicSrc = new tencentcloud.ClsTopic("topicSrc", {
topicName: "tf-example_src",
logsetId: logsetSrc.clsLogsetId,
autoSplit: false,
maxSplitPartitions: 20,
partitionCount: 1,
period: 10,
storageType: "hot",
tags: {
createdBy: "terraform",
},
});
const logsetDst = new tencentcloud.ClsLogset("logsetDst", {
logsetName: "tf-example-dst",
tags: {
createdBy: "terraform",
},
});
const topicDst = new tencentcloud.ClsTopic("topicDst", {
topicName: "tf-example-dst",
logsetId: logsetDst.clsLogsetId,
autoSplit: false,
maxSplitPartitions: 20,
partitionCount: 1,
period: 10,
storageType: "hot",
tags: {
createdBy: "terraform",
},
});
const example = new tencentcloud.ClsDataTransform("example", {
funcType: 1,
srcTopicId: topicSrc.clsTopicId,
etlContent: "ext_sep(\"content\", \"f1, f2, f3\", sep=\",\", quote=\"\", restrict=False, mode=\"overwrite\")fields_drop(\"content\")",
taskType: 3,
enableFlag: 1,
dstResources: [{
topicId: topicDst.clsTopicId,
alias: "iac-test-dst",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
logset_src = tencentcloud.ClsLogset("logsetSrc",
logset_name="tf-example-src",
tags={
"createdBy": "terraform",
})
topic_src = tencentcloud.ClsTopic("topicSrc",
topic_name="tf-example_src",
logset_id=logset_src.cls_logset_id,
auto_split=False,
max_split_partitions=20,
partition_count=1,
period=10,
storage_type="hot",
tags={
"createdBy": "terraform",
})
logset_dst = tencentcloud.ClsLogset("logsetDst",
logset_name="tf-example-dst",
tags={
"createdBy": "terraform",
})
topic_dst = tencentcloud.ClsTopic("topicDst",
topic_name="tf-example-dst",
logset_id=logset_dst.cls_logset_id,
auto_split=False,
max_split_partitions=20,
partition_count=1,
period=10,
storage_type="hot",
tags={
"createdBy": "terraform",
})
example = tencentcloud.ClsDataTransform("example",
func_type=1,
src_topic_id=topic_src.cls_topic_id,
etl_content="ext_sep(\"content\", \"f1, f2, f3\", sep=\",\", quote=\"\", restrict=False, mode=\"overwrite\")fields_drop(\"content\")",
task_type=3,
enable_flag=1,
dst_resources=[{
"topic_id": topic_dst.cls_topic_id,
"alias": "iac-test-dst",
}])
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 {
logsetSrc, err := tencentcloud.NewClsLogset(ctx, "logsetSrc", &tencentcloud.ClsLogsetArgs{
LogsetName: pulumi.String("tf-example-src"),
Tags: pulumi.StringMap{
"createdBy": pulumi.String("terraform"),
},
})
if err != nil {
return err
}
topicSrc, err := tencentcloud.NewClsTopic(ctx, "topicSrc", &tencentcloud.ClsTopicArgs{
TopicName: pulumi.String("tf-example_src"),
LogsetId: logsetSrc.ClsLogsetId,
AutoSplit: pulumi.Bool(false),
MaxSplitPartitions: pulumi.Float64(20),
PartitionCount: pulumi.Float64(1),
Period: pulumi.Float64(10),
StorageType: pulumi.String("hot"),
Tags: pulumi.StringMap{
"createdBy": pulumi.String("terraform"),
},
})
if err != nil {
return err
}
logsetDst, err := tencentcloud.NewClsLogset(ctx, "logsetDst", &tencentcloud.ClsLogsetArgs{
LogsetName: pulumi.String("tf-example-dst"),
Tags: pulumi.StringMap{
"createdBy": pulumi.String("terraform"),
},
})
if err != nil {
return err
}
topicDst, err := tencentcloud.NewClsTopic(ctx, "topicDst", &tencentcloud.ClsTopicArgs{
TopicName: pulumi.String("tf-example-dst"),
LogsetId: logsetDst.ClsLogsetId,
AutoSplit: pulumi.Bool(false),
MaxSplitPartitions: pulumi.Float64(20),
PartitionCount: pulumi.Float64(1),
Period: pulumi.Float64(10),
StorageType: pulumi.String("hot"),
Tags: pulumi.StringMap{
"createdBy": pulumi.String("terraform"),
},
})
if err != nil {
return err
}
_, err = tencentcloud.NewClsDataTransform(ctx, "example", &tencentcloud.ClsDataTransformArgs{
FuncType: pulumi.Float64(1),
SrcTopicId: topicSrc.ClsTopicId,
EtlContent: pulumi.String("ext_sep(\"content\", \"f1, f2, f3\", sep=\",\", quote=\"\", restrict=False, mode=\"overwrite\")fields_drop(\"content\")"),
TaskType: pulumi.Float64(3),
EnableFlag: pulumi.Float64(1),
DstResources: tencentcloud.ClsDataTransformDstResourceArray{
&tencentcloud.ClsDataTransformDstResourceArgs{
TopicId: topicDst.ClsTopicId,
Alias: pulumi.String("iac-test-dst"),
},
},
})
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 logsetSrc = new Tencentcloud.ClsLogset("logsetSrc", new()
{
LogsetName = "tf-example-src",
Tags =
{
{ "createdBy", "terraform" },
},
});
var topicSrc = new Tencentcloud.ClsTopic("topicSrc", new()
{
TopicName = "tf-example_src",
LogsetId = logsetSrc.ClsLogsetId,
AutoSplit = false,
MaxSplitPartitions = 20,
PartitionCount = 1,
Period = 10,
StorageType = "hot",
Tags =
{
{ "createdBy", "terraform" },
},
});
var logsetDst = new Tencentcloud.ClsLogset("logsetDst", new()
{
LogsetName = "tf-example-dst",
Tags =
{
{ "createdBy", "terraform" },
},
});
var topicDst = new Tencentcloud.ClsTopic("topicDst", new()
{
TopicName = "tf-example-dst",
LogsetId = logsetDst.ClsLogsetId,
AutoSplit = false,
MaxSplitPartitions = 20,
PartitionCount = 1,
Period = 10,
StorageType = "hot",
Tags =
{
{ "createdBy", "terraform" },
},
});
var example = new Tencentcloud.ClsDataTransform("example", new()
{
FuncType = 1,
SrcTopicId = topicSrc.ClsTopicId,
EtlContent = "ext_sep(\"content\", \"f1, f2, f3\", sep=\",\", quote=\"\", restrict=False, mode=\"overwrite\")fields_drop(\"content\")",
TaskType = 3,
EnableFlag = 1,
DstResources = new[]
{
new Tencentcloud.Inputs.ClsDataTransformDstResourceArgs
{
TopicId = topicDst.ClsTopicId,
Alias = "iac-test-dst",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.ClsLogset;
import com.pulumi.tencentcloud.ClsLogsetArgs;
import com.pulumi.tencentcloud.ClsTopic;
import com.pulumi.tencentcloud.ClsTopicArgs;
import com.pulumi.tencentcloud.ClsDataTransform;
import com.pulumi.tencentcloud.ClsDataTransformArgs;
import com.pulumi.tencentcloud.inputs.ClsDataTransformDstResourceArgs;
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 logsetSrc = new ClsLogset("logsetSrc", ClsLogsetArgs.builder()
.logsetName("tf-example-src")
.tags(Map.of("createdBy", "terraform"))
.build());
var topicSrc = new ClsTopic("topicSrc", ClsTopicArgs.builder()
.topicName("tf-example_src")
.logsetId(logsetSrc.clsLogsetId())
.autoSplit(false)
.maxSplitPartitions(20)
.partitionCount(1)
.period(10)
.storageType("hot")
.tags(Map.of("createdBy", "terraform"))
.build());
var logsetDst = new ClsLogset("logsetDst", ClsLogsetArgs.builder()
.logsetName("tf-example-dst")
.tags(Map.of("createdBy", "terraform"))
.build());
var topicDst = new ClsTopic("topicDst", ClsTopicArgs.builder()
.topicName("tf-example-dst")
.logsetId(logsetDst.clsLogsetId())
.autoSplit(false)
.maxSplitPartitions(20)
.partitionCount(1)
.period(10)
.storageType("hot")
.tags(Map.of("createdBy", "terraform"))
.build());
var example = new ClsDataTransform("example", ClsDataTransformArgs.builder()
.funcType(1)
.srcTopicId(topicSrc.clsTopicId())
.etlContent("ext_sep(\"content\", \"f1, f2, f3\", sep=\",\", quote=\"\", restrict=False, mode=\"overwrite\")fields_drop(\"content\")")
.taskType(3)
.enableFlag(1)
.dstResources(ClsDataTransformDstResourceArgs.builder()
.topicId(topicDst.clsTopicId())
.alias("iac-test-dst")
.build())
.build());
}
}
resources:
logsetSrc:
type: tencentcloud:ClsLogset
properties:
logsetName: tf-example-src
tags:
createdBy: terraform
topicSrc:
type: tencentcloud:ClsTopic
properties:
topicName: tf-example_src
logsetId: ${logsetSrc.clsLogsetId}
autoSplit: false
maxSplitPartitions: 20
partitionCount: 1
period: 10
storageType: hot
tags:
createdBy: terraform
logsetDst:
type: tencentcloud:ClsLogset
properties:
logsetName: tf-example-dst
tags:
createdBy: terraform
topicDst:
type: tencentcloud:ClsTopic
properties:
topicName: tf-example-dst
logsetId: ${logsetDst.clsLogsetId}
autoSplit: false
maxSplitPartitions: 20
partitionCount: 1
period: 10
storageType: hot
tags:
createdBy: terraform
example:
type: tencentcloud:ClsDataTransform
properties:
funcType: 1
srcTopicId: ${topicSrc.clsTopicId}
etlContent: ext_sep("content", "f1, f2, f3", sep=",", quote="", restrict=False, mode="overwrite")fields_drop("content")
taskType: 3
enableFlag: 1
dstResources:
- topicId: ${topicDst.clsTopicId}
alias: iac-test-dst
Create ClsDataTransform Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClsDataTransform(name: string, args: ClsDataTransformArgs, opts?: CustomResourceOptions);
@overload
def ClsDataTransform(resource_name: str,
args: ClsDataTransformArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClsDataTransform(resource_name: str,
opts: Optional[ResourceOptions] = None,
etl_content: Optional[str] = None,
func_type: Optional[float] = None,
src_topic_id: Optional[str] = None,
task_type: Optional[float] = None,
cls_data_transform_id: Optional[str] = None,
dst_resources: Optional[Sequence[ClsDataTransformDstResourceArgs]] = None,
enable_flag: Optional[float] = None,
name: Optional[str] = None)
func NewClsDataTransform(ctx *Context, name string, args ClsDataTransformArgs, opts ...ResourceOption) (*ClsDataTransform, error)
public ClsDataTransform(string name, ClsDataTransformArgs args, CustomResourceOptions? opts = null)
public ClsDataTransform(String name, ClsDataTransformArgs args)
public ClsDataTransform(String name, ClsDataTransformArgs args, CustomResourceOptions options)
type: tencentcloud:ClsDataTransform
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClsDataTransformArgs
- 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 ClsDataTransformArgs
- 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 ClsDataTransformArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClsDataTransformArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClsDataTransformArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ClsDataTransform 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 ClsDataTransform resource accepts the following input properties:
- Etl
Content string - Data transform content. If
func_type
is2
, must uselog_auto_output
. - Func
Type double - Task type.
1
: Specify the theme;2
: Dynamic creation. - Src
Topic stringId - Source topic ID.
- Task
Type double - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks. - Cls
Data stringTransform Id - ID of the resource.
- Dst
Resources List<ClsData Transform Dst Resource> - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - Enable
Flag double - Task enable flag.
1
: enable,2
: disable, Default is1
. - Name string
- Task name.
- Etl
Content string - Data transform content. If
func_type
is2
, must uselog_auto_output
. - Func
Type float64 - Task type.
1
: Specify the theme;2
: Dynamic creation. - Src
Topic stringId - Source topic ID.
- Task
Type float64 - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks. - Cls
Data stringTransform Id - ID of the resource.
- Dst
Resources []ClsData Transform Dst Resource Args - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - Enable
Flag float64 - Task enable flag.
1
: enable,2
: disable, Default is1
. - Name string
- Task name.
- etl
Content String - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func
Type Double - Task type.
1
: Specify the theme;2
: Dynamic creation. - src
Topic StringId - Source topic ID.
- task
Type Double - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks. - cls
Data StringTransform Id - ID of the resource.
- dst
Resources List<ClsData Transform Dst Resource> - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable
Flag Double - Task enable flag.
1
: enable,2
: disable, Default is1
. - name String
- Task name.
- etl
Content string - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func
Type number - Task type.
1
: Specify the theme;2
: Dynamic creation. - src
Topic stringId - Source topic ID.
- task
Type number - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks. - cls
Data stringTransform Id - ID of the resource.
- dst
Resources ClsData Transform Dst Resource[] - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable
Flag number - Task enable flag.
1
: enable,2
: disable, Default is1
. - name string
- Task name.
- etl_
content str - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func_
type float - Task type.
1
: Specify the theme;2
: Dynamic creation. - src_
topic_ strid - Source topic ID.
- task_
type float - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks. - cls_
data_ strtransform_ id - ID of the resource.
- dst_
resources Sequence[ClsData Transform Dst Resource Args] - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable_
flag float - Task enable flag.
1
: enable,2
: disable, Default is1
. - name str
- Task name.
- etl
Content String - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func
Type Number - Task type.
1
: Specify the theme;2
: Dynamic creation. - src
Topic StringId - Source topic ID.
- task
Type Number - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks. - cls
Data StringTransform Id - ID of the resource.
- dst
Resources List<Property Map> - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable
Flag Number - Task enable flag.
1
: enable,2
: disable, Default is1
. - name String
- Task name.
Outputs
All input properties are implicitly available as output properties. Additionally, the ClsDataTransform resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ClsDataTransform Resource
Get an existing ClsDataTransform 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?: ClsDataTransformState, opts?: CustomResourceOptions): ClsDataTransform
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cls_data_transform_id: Optional[str] = None,
dst_resources: Optional[Sequence[ClsDataTransformDstResourceArgs]] = None,
enable_flag: Optional[float] = None,
etl_content: Optional[str] = None,
func_type: Optional[float] = None,
name: Optional[str] = None,
src_topic_id: Optional[str] = None,
task_type: Optional[float] = None) -> ClsDataTransform
func GetClsDataTransform(ctx *Context, name string, id IDInput, state *ClsDataTransformState, opts ...ResourceOption) (*ClsDataTransform, error)
public static ClsDataTransform Get(string name, Input<string> id, ClsDataTransformState? state, CustomResourceOptions? opts = null)
public static ClsDataTransform get(String name, Output<String> id, ClsDataTransformState state, CustomResourceOptions options)
resources: _: type: tencentcloud:ClsDataTransform get: 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.
- Cls
Data stringTransform Id - ID of the resource.
- Dst
Resources List<ClsData Transform Dst Resource> - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - Enable
Flag double - Task enable flag.
1
: enable,2
: disable, Default is1
. - Etl
Content string - Data transform content. If
func_type
is2
, must uselog_auto_output
. - Func
Type double - Task type.
1
: Specify the theme;2
: Dynamic creation. - Name string
- Task name.
- Src
Topic stringId - Source topic ID.
- Task
Type double - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks.
- Cls
Data stringTransform Id - ID of the resource.
- Dst
Resources []ClsData Transform Dst Resource Args - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - Enable
Flag float64 - Task enable flag.
1
: enable,2
: disable, Default is1
. - Etl
Content string - Data transform content. If
func_type
is2
, must uselog_auto_output
. - Func
Type float64 - Task type.
1
: Specify the theme;2
: Dynamic creation. - Name string
- Task name.
- Src
Topic stringId - Source topic ID.
- Task
Type float64 - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks.
- cls
Data StringTransform Id - ID of the resource.
- dst
Resources List<ClsData Transform Dst Resource> - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable
Flag Double - Task enable flag.
1
: enable,2
: disable, Default is1
. - etl
Content String - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func
Type Double - Task type.
1
: Specify the theme;2
: Dynamic creation. - name String
- Task name.
- src
Topic StringId - Source topic ID.
- task
Type Double - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks.
- cls
Data stringTransform Id - ID of the resource.
- dst
Resources ClsData Transform Dst Resource[] - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable
Flag number - Task enable flag.
1
: enable,2
: disable, Default is1
. - etl
Content string - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func
Type number - Task type.
1
: Specify the theme;2
: Dynamic creation. - name string
- Task name.
- src
Topic stringId - Source topic ID.
- task
Type number - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks.
- cls_
data_ strtransform_ id - ID of the resource.
- dst_
resources Sequence[ClsData Transform Dst Resource Args] - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable_
flag float - Task enable flag.
1
: enable,2
: disable, Default is1
. - etl_
content str - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func_
type float - Task type.
1
: Specify the theme;2
: Dynamic creation. - name str
- Task name.
- src_
topic_ strid - Source topic ID.
- task_
type float - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks.
- cls
Data StringTransform Id - ID of the resource.
- dst
Resources List<Property Map> - Data transform des resources. If
func_type
is1
, this parameter is required. Iffunc_type
is2
, this parameter does not need to be filled in. - enable
Flag Number - Task enable flag.
1
: enable,2
: disable, Default is1
. - etl
Content String - Data transform content. If
func_type
is2
, must uselog_auto_output
. - func
Type Number - Task type.
1
: Specify the theme;2
: Dynamic creation. - name String
- Task name.
- src
Topic StringId - Source topic ID.
- task
Type Number - Task type.
1
: Use random data from the source log theme for processing preview;2
: Use user-defined test data for processing preview;3
: Create real machining tasks.
Supporting Types
ClsDataTransformDstResource, ClsDataTransformDstResourceArgs
Import
CLS data transform can be imported using the id, e.g.
$ pulumi import tencentcloud:index/clsDataTransform:ClsDataTransform example 7b4bcb05-9154-4cdc-a479-f6b5743846e5
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.