opentelekomcloud.CtsTrackerV3
Explore with Pulumi AI
Up-to-date reference of API arguments for CTS tracker you can get at documentation portal
Allows you to collect, store, and query cloud resource operation records.
A single tracker can be created for current CTS version.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const bucketName = config.requireObject("bucketName");
const trackerV3 = new opentelekomcloud.CtsTrackerV3("trackerV3", {
    bucketName: bucketName,
    filePrefixName: "prefix",
    isLtsEnabled: true,
    status: "enabled",
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
bucket_name = config.require_object("bucketName")
tracker_v3 = opentelekomcloud.CtsTrackerV3("trackerV3",
    bucket_name=bucket_name,
    file_prefix_name="prefix",
    is_lts_enabled=True,
    status="enabled")
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		bucketName := cfg.RequireObject("bucketName")
		_, err := opentelekomcloud.NewCtsTrackerV3(ctx, "trackerV3", &opentelekomcloud.CtsTrackerV3Args{
			BucketName:     pulumi.Any(bucketName),
			FilePrefixName: pulumi.String("prefix"),
			IsLtsEnabled:   pulumi.Bool(true),
			Status:         pulumi.String("enabled"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var bucketName = config.RequireObject<dynamic>("bucketName");
    var trackerV3 = new Opentelekomcloud.CtsTrackerV3("trackerV3", new()
    {
        BucketName = bucketName,
        FilePrefixName = "prefix",
        IsLtsEnabled = true,
        Status = "enabled",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.CtsTrackerV3;
import com.pulumi.opentelekomcloud.CtsTrackerV3Args;
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) {
        final var config = ctx.config();
        final var bucketName = config.get("bucketName");
        var trackerV3 = new CtsTrackerV3("trackerV3", CtsTrackerV3Args.builder()
            .bucketName(bucketName)
            .filePrefixName("prefix")
            .isLtsEnabled(true)
            .status("enabled")
            .build());
    }
}
configuration:
  bucketName:
    type: dynamic
resources:
  trackerV3:
    type: opentelekomcloud:CtsTrackerV3
    properties:
      bucketName: ${bucketName}
      filePrefixName: prefix
      isLtsEnabled: true
      status: enabled
Create CtsTrackerV3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CtsTrackerV3(name: string, args: CtsTrackerV3Args, opts?: CustomResourceOptions);@overload
def CtsTrackerV3(resource_name: str,
                 args: CtsTrackerV3Args,
                 opts: Optional[ResourceOptions] = None)
@overload
def CtsTrackerV3(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 status: Optional[str] = None,
                 bucket_name: Optional[str] = None,
                 compress_type: Optional[str] = None,
                 file_prefix_name: Optional[str] = None,
                 is_lts_enabled: Optional[bool] = None,
                 is_obs_created: Optional[bool] = None,
                 is_sort_by_service: Optional[bool] = None,
                 timeouts: Optional[CtsTrackerV3TimeoutsArgs] = None)func NewCtsTrackerV3(ctx *Context, name string, args CtsTrackerV3Args, opts ...ResourceOption) (*CtsTrackerV3, error)public CtsTrackerV3(string name, CtsTrackerV3Args args, CustomResourceOptions? opts = null)
public CtsTrackerV3(String name, CtsTrackerV3Args args)
public CtsTrackerV3(String name, CtsTrackerV3Args args, CustomResourceOptions options)
type: opentelekomcloud:CtsTrackerV3
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 CtsTrackerV3Args
- 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 CtsTrackerV3Args
- 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 CtsTrackerV3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CtsTrackerV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CtsTrackerV3Args
- 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 ctsTrackerV3Resource = new Opentelekomcloud.CtsTrackerV3("ctsTrackerV3Resource", new()
{
    Status = "string",
    BucketName = "string",
    CompressType = "string",
    FilePrefixName = "string",
    IsLtsEnabled = false,
    IsObsCreated = false,
    IsSortByService = false,
    Timeouts = new Opentelekomcloud.Inputs.CtsTrackerV3TimeoutsArgs
    {
        Create = "string",
        Delete = "string",
    },
});
example, err := opentelekomcloud.NewCtsTrackerV3(ctx, "ctsTrackerV3Resource", &opentelekomcloud.CtsTrackerV3Args{
Status: pulumi.String("string"),
BucketName: pulumi.String("string"),
CompressType: pulumi.String("string"),
FilePrefixName: pulumi.String("string"),
IsLtsEnabled: pulumi.Bool(false),
IsObsCreated: pulumi.Bool(false),
IsSortByService: pulumi.Bool(false),
Timeouts: &.CtsTrackerV3TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var ctsTrackerV3Resource = new CtsTrackerV3("ctsTrackerV3Resource", CtsTrackerV3Args.builder()
    .status("string")
    .bucketName("string")
    .compressType("string")
    .filePrefixName("string")
    .isLtsEnabled(false)
    .isObsCreated(false)
    .isSortByService(false)
    .timeouts(CtsTrackerV3TimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .build())
    .build());
cts_tracker_v3_resource = opentelekomcloud.CtsTrackerV3("ctsTrackerV3Resource",
    status="string",
    bucket_name="string",
    compress_type="string",
    file_prefix_name="string",
    is_lts_enabled=False,
    is_obs_created=False,
    is_sort_by_service=False,
    timeouts={
        "create": "string",
        "delete": "string",
    })
const ctsTrackerV3Resource = new opentelekomcloud.CtsTrackerV3("ctsTrackerV3Resource", {
    status: "string",
    bucketName: "string",
    compressType: "string",
    filePrefixName: "string",
    isLtsEnabled: false,
    isObsCreated: false,
    isSortByService: false,
    timeouts: {
        create: "string",
        "delete": "string",
    },
});
type: opentelekomcloud:CtsTrackerV3
properties:
    bucketName: string
    compressType: string
    filePrefixName: string
    isLtsEnabled: false
    isObsCreated: false
    isSortByService: false
    status: string
    timeouts:
        create: string
        delete: string
CtsTrackerV3 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 CtsTrackerV3 resource accepts the following input properties:
- Status string
- Specifies whether tracker is enabledordisabled.
- BucketName string
- The OBS bucket name for a tracker.
- CompressType string
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- FilePrefix stringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- IsLts boolEnabled 
- Specifies whether to enable trace analysis.
- IsObs boolCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- IsSort boolBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- Timeouts
CtsTracker V3Timeouts 
- Status string
- Specifies whether tracker is enabledordisabled.
- BucketName string
- The OBS bucket name for a tracker.
- CompressType string
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- FilePrefix stringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- IsLts boolEnabled 
- Specifies whether to enable trace analysis.
- IsObs boolCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- IsSort boolBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- Timeouts
CtsTracker V3Timeouts Args 
- status String
- Specifies whether tracker is enabledordisabled.
- bucketName String
- The OBS bucket name for a tracker.
- compressType String
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- filePrefix StringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- isLts BooleanEnabled 
- Specifies whether to enable trace analysis.
- isObs BooleanCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- isSort BooleanBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- timeouts
CtsTracker V3Timeouts 
- status string
- Specifies whether tracker is enabledordisabled.
- bucketName string
- The OBS bucket name for a tracker.
- compressType string
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- filePrefix stringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- isLts booleanEnabled 
- Specifies whether to enable trace analysis.
- isObs booleanCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- isSort booleanBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- timeouts
CtsTracker V3Timeouts 
- status str
- Specifies whether tracker is enabledordisabled.
- bucket_name str
- The OBS bucket name for a tracker.
- compress_type str
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- file_prefix_ strname 
- The prefix of a log that needs to be stored in an OBS bucket.
- is_lts_ boolenabled 
- Specifies whether to enable trace analysis.
- is_obs_ boolcreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- is_sort_ boolby_ service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- timeouts
CtsTracker V3Timeouts Args 
- status String
- Specifies whether tracker is enabledordisabled.
- bucketName String
- The OBS bucket name for a tracker.
- compressType String
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- filePrefix StringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- isLts BooleanEnabled 
- Specifies whether to enable trace analysis.
- isObs BooleanCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- isSort BooleanBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the CtsTrackerV3 resource produces the following output properties:
- Detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- DomainId string
- Specifies domain id of the tracker.
- Id string
- The provider-assigned unique ID for this managed resource.
- LogGroup stringName 
- Specifies LTS log group name.
- LogTopic stringName 
- Specifies LTS log stream.
- ProjectId string
- Specifies project id of the tracker.
- TrackerName string
- The tracker name. Currently, only tracker systemis available.
- TrackerType string
- The tracker type. Currently, only tracker systemis available.
- Detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- DomainId string
- Specifies domain id of the tracker.
- Id string
- The provider-assigned unique ID for this managed resource.
- LogGroup stringName 
- Specifies LTS log group name.
- LogTopic stringName 
- Specifies LTS log stream.
- ProjectId string
- Specifies project id of the tracker.
- TrackerName string
- The tracker name. Currently, only tracker systemis available.
- TrackerType string
- The tracker type. Currently, only tracker systemis available.
- detail String
- Specifies the cause of the abnormal status, and its value in case of errors.
- domainId String
- Specifies domain id of the tracker.
- id String
- The provider-assigned unique ID for this managed resource.
- logGroup StringName 
- Specifies LTS log group name.
- logTopic StringName 
- Specifies LTS log stream.
- projectId String
- Specifies project id of the tracker.
- trackerName String
- The tracker name. Currently, only tracker systemis available.
- trackerType String
- The tracker type. Currently, only tracker systemis available.
- detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- domainId string
- Specifies domain id of the tracker.
- id string
- The provider-assigned unique ID for this managed resource.
- logGroup stringName 
- Specifies LTS log group name.
- logTopic stringName 
- Specifies LTS log stream.
- projectId string
- Specifies project id of the tracker.
- trackerName string
- The tracker name. Currently, only tracker systemis available.
- trackerType string
- The tracker type. Currently, only tracker systemis available.
- detail str
- Specifies the cause of the abnormal status, and its value in case of errors.
- domain_id str
- Specifies domain id of the tracker.
- id str
- The provider-assigned unique ID for this managed resource.
- log_group_ strname 
- Specifies LTS log group name.
- log_topic_ strname 
- Specifies LTS log stream.
- project_id str
- Specifies project id of the tracker.
- tracker_name str
- The tracker name. Currently, only tracker systemis available.
- tracker_type str
- The tracker type. Currently, only tracker systemis available.
- detail String
- Specifies the cause of the abnormal status, and its value in case of errors.
- domainId String
- Specifies domain id of the tracker.
- id String
- The provider-assigned unique ID for this managed resource.
- logGroup StringName 
- Specifies LTS log group name.
- logTopic StringName 
- Specifies LTS log stream.
- projectId String
- Specifies project id of the tracker.
- trackerName String
- The tracker name. Currently, only tracker systemis available.
- trackerType String
- The tracker type. Currently, only tracker systemis available.
Look up Existing CtsTrackerV3 Resource
Get an existing CtsTrackerV3 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?: CtsTrackerV3State, opts?: CustomResourceOptions): CtsTrackerV3@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bucket_name: Optional[str] = None,
        compress_type: Optional[str] = None,
        detail: Optional[str] = None,
        domain_id: Optional[str] = None,
        file_prefix_name: Optional[str] = None,
        is_lts_enabled: Optional[bool] = None,
        is_obs_created: Optional[bool] = None,
        is_sort_by_service: Optional[bool] = None,
        log_group_name: Optional[str] = None,
        log_topic_name: Optional[str] = None,
        project_id: Optional[str] = None,
        status: Optional[str] = None,
        timeouts: Optional[CtsTrackerV3TimeoutsArgs] = None,
        tracker_name: Optional[str] = None,
        tracker_type: Optional[str] = None) -> CtsTrackerV3func GetCtsTrackerV3(ctx *Context, name string, id IDInput, state *CtsTrackerV3State, opts ...ResourceOption) (*CtsTrackerV3, error)public static CtsTrackerV3 Get(string name, Input<string> id, CtsTrackerV3State? state, CustomResourceOptions? opts = null)public static CtsTrackerV3 get(String name, Output<String> id, CtsTrackerV3State state, CustomResourceOptions options)resources:  _:    type: opentelekomcloud:CtsTrackerV3    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.
- BucketName string
- The OBS bucket name for a tracker.
- CompressType string
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- Detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- DomainId string
- Specifies domain id of the tracker.
- FilePrefix stringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- IsLts boolEnabled 
- Specifies whether to enable trace analysis.
- IsObs boolCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- IsSort boolBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- LogGroup stringName 
- Specifies LTS log group name.
- LogTopic stringName 
- Specifies LTS log stream.
- ProjectId string
- Specifies project id of the tracker.
- Status string
- Specifies whether tracker is enabledordisabled.
- Timeouts
CtsTracker V3Timeouts 
- TrackerName string
- The tracker name. Currently, only tracker systemis available.
- TrackerType string
- The tracker type. Currently, only tracker systemis available.
- BucketName string
- The OBS bucket name for a tracker.
- CompressType string
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- Detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- DomainId string
- Specifies domain id of the tracker.
- FilePrefix stringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- IsLts boolEnabled 
- Specifies whether to enable trace analysis.
- IsObs boolCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- IsSort boolBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- LogGroup stringName 
- Specifies LTS log group name.
- LogTopic stringName 
- Specifies LTS log stream.
- ProjectId string
- Specifies project id of the tracker.
- Status string
- Specifies whether tracker is enabledordisabled.
- Timeouts
CtsTracker V3Timeouts Args 
- TrackerName string
- The tracker name. Currently, only tracker systemis available.
- TrackerType string
- The tracker type. Currently, only tracker systemis available.
- bucketName String
- The OBS bucket name for a tracker.
- compressType String
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- detail String
- Specifies the cause of the abnormal status, and its value in case of errors.
- domainId String
- Specifies domain id of the tracker.
- filePrefix StringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- isLts BooleanEnabled 
- Specifies whether to enable trace analysis.
- isObs BooleanCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- isSort BooleanBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- logGroup StringName 
- Specifies LTS log group name.
- logTopic StringName 
- Specifies LTS log stream.
- projectId String
- Specifies project id of the tracker.
- status String
- Specifies whether tracker is enabledordisabled.
- timeouts
CtsTracker V3Timeouts 
- trackerName String
- The tracker name. Currently, only tracker systemis available.
- trackerType String
- The tracker type. Currently, only tracker systemis available.
- bucketName string
- The OBS bucket name for a tracker.
- compressType string
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- domainId string
- Specifies domain id of the tracker.
- filePrefix stringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- isLts booleanEnabled 
- Specifies whether to enable trace analysis.
- isObs booleanCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- isSort booleanBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- logGroup stringName 
- Specifies LTS log group name.
- logTopic stringName 
- Specifies LTS log stream.
- projectId string
- Specifies project id of the tracker.
- status string
- Specifies whether tracker is enabledordisabled.
- timeouts
CtsTracker V3Timeouts 
- trackerName string
- The tracker name. Currently, only tracker systemis available.
- trackerType string
- The tracker type. Currently, only tracker systemis available.
- bucket_name str
- The OBS bucket name for a tracker.
- compress_type str
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- detail str
- Specifies the cause of the abnormal status, and its value in case of errors.
- domain_id str
- Specifies domain id of the tracker.
- file_prefix_ strname 
- The prefix of a log that needs to be stored in an OBS bucket.
- is_lts_ boolenabled 
- Specifies whether to enable trace analysis.
- is_obs_ boolcreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- is_sort_ boolby_ service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- log_group_ strname 
- Specifies LTS log group name.
- log_topic_ strname 
- Specifies LTS log stream.
- project_id str
- Specifies project id of the tracker.
- status str
- Specifies whether tracker is enabledordisabled.
- timeouts
CtsTracker V3Timeouts Args 
- tracker_name str
- The tracker name. Currently, only tracker systemis available.
- tracker_type str
- The tracker type. Currently, only tracker systemis available.
- bucketName String
- The OBS bucket name for a tracker.
- compressType String
- Specifies the compression type. Default value is gzip. The valid values are as follows:- gzip: compression.
- json: no compression.
 
- detail String
- Specifies the cause of the abnormal status, and its value in case of errors.
- domainId String
- Specifies domain id of the tracker.
- filePrefix StringName 
- The prefix of a log that needs to be stored in an OBS bucket.
- isLts BooleanEnabled 
- Specifies whether to enable trace analysis.
- isObs BooleanCreated 
- Specifies whether the OBS bucket is automatically created by the tracker.
- isSort BooleanBy Service 
- Specifies whether to sort the path by cloud service. If this option is enabled,
the cloud service name is added to the transfer file path. Default: true.
- logGroup StringName 
- Specifies LTS log group name.
- logTopic StringName 
- Specifies LTS log stream.
- projectId String
- Specifies project id of the tracker.
- status String
- Specifies whether tracker is enabledordisabled.
- timeouts Property Map
- trackerName String
- The tracker name. Currently, only tracker systemis available.
- trackerType String
- The tracker type. Currently, only tracker systemis available.
Supporting Types
CtsTrackerV3Timeouts, CtsTrackerV3TimeoutsArgs      
Import
CTS tracker can be imported using tracker_name, e.g.
$ pulumi import opentelekomcloud:index/ctsTrackerV3:CtsTrackerV3 tracker system
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the opentelekomcloudTerraform Provider.