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: &opentelekomcloud.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
enabled
ordisabled
. - Bucket
Name string - The OBS bucket name for a tracker.
- Compress
Type string - Specifies the compression type. Default value is
gzip
. The valid values are as follows:- gzip: compression.
- json: no compression.
- File
Prefix stringName - 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
Cts
Tracker V3Timeouts
- Status string
- Specifies whether tracker is
enabled
ordisabled
. - Bucket
Name string - The OBS bucket name for a tracker.
- Compress
Type string - Specifies the compression type. Default value is
gzip
. The valid values are as follows:- gzip: compression.
- json: no compression.
- File
Prefix stringName - 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
Cts
Tracker V3Timeouts Args
- status String
- Specifies whether tracker is
enabled
ordisabled
. - bucket
Name String - The OBS bucket name for a tracker.
- compress
Type String - Specifies the compression type. Default value is
gzip
. The valid values are as follows:- gzip: compression.
- json: no compression.
- file
Prefix StringName - The prefix of a log that needs to be stored in an OBS bucket.
- is
Lts BooleanEnabled - Specifies whether to enable trace analysis.
- is
Obs BooleanCreated - Specifies whether the OBS bucket is automatically created by the tracker.
- is
Sort 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
Cts
Tracker V3Timeouts
- status string
- Specifies whether tracker is
enabled
ordisabled
. - bucket
Name string - The OBS bucket name for a tracker.
- compress
Type string - Specifies the compression type. Default value is
gzip
. The valid values are as follows:- gzip: compression.
- json: no compression.
- file
Prefix stringName - The prefix of a log that needs to be stored in an OBS bucket.
- is
Lts booleanEnabled - Specifies whether to enable trace analysis.
- is
Obs booleanCreated - Specifies whether the OBS bucket is automatically created by the tracker.
- is
Sort 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
Cts
Tracker V3Timeouts
- status str
- Specifies whether tracker is
enabled
ordisabled
. - 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
Cts
Tracker V3Timeouts Args
- status String
- Specifies whether tracker is
enabled
ordisabled
. - bucket
Name String - The OBS bucket name for a tracker.
- compress
Type String - Specifies the compression type. Default value is
gzip
. The valid values are as follows:- gzip: compression.
- json: no compression.
- file
Prefix StringName - The prefix of a log that needs to be stored in an OBS bucket.
- is
Lts BooleanEnabled - Specifies whether to enable trace analysis.
- is
Obs BooleanCreated - Specifies whether the OBS bucket is automatically created by the tracker.
- is
Sort 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.
- Domain
Id string - Specifies domain id of the tracker.
- Id string
- The provider-assigned unique ID for this managed resource.
- Log
Group stringName - Specifies LTS log group name.
- Log
Topic stringName - Specifies LTS log stream.
- Project
Id string - Specifies project id of the tracker.
- Tracker
Name string - The tracker name. Currently, only tracker
system
is available. - Tracker
Type string - The tracker type. Currently, only tracker
system
is available.
- Detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- Domain
Id string - Specifies domain id of the tracker.
- Id string
- The provider-assigned unique ID for this managed resource.
- Log
Group stringName - Specifies LTS log group name.
- Log
Topic stringName - Specifies LTS log stream.
- Project
Id string - Specifies project id of the tracker.
- Tracker
Name string - The tracker name. Currently, only tracker
system
is available. - Tracker
Type string - The tracker type. Currently, only tracker
system
is available.
- detail String
- Specifies the cause of the abnormal status, and its value in case of errors.
- domain
Id String - Specifies domain id of the tracker.
- id String
- The provider-assigned unique ID for this managed resource.
- log
Group StringName - Specifies LTS log group name.
- log
Topic StringName - Specifies LTS log stream.
- project
Id String - Specifies project id of the tracker.
- tracker
Name String - The tracker name. Currently, only tracker
system
is available. - tracker
Type String - The tracker type. Currently, only tracker
system
is available.
- detail string
- Specifies the cause of the abnormal status, and its value in case of errors.
- domain
Id string - Specifies domain id of the tracker.
- id string
- The provider-assigned unique ID for this managed resource.
- log
Group stringName - Specifies LTS log group name.
- log
Topic stringName - Specifies LTS log stream.
- project
Id string - Specifies project id of the tracker.
- tracker
Name string - The tracker name. Currently, only tracker
system
is available. - tracker
Type string - The tracker type. Currently, only tracker
system
is 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
system
is available. - tracker_
type str - The tracker type. Currently, only tracker
system
is available.
- detail String
- Specifies the cause of the abnormal status, and its value in case of errors.
- domain
Id String - Specifies domain id of the tracker.
- id String
- The provider-assigned unique ID for this managed resource.
- log
Group StringName - Specifies LTS log group name.
- log
Topic StringName - Specifies LTS log stream.
- project
Id String - Specifies project id of the tracker.
- tracker
Name String - The tracker name. Currently, only tracker
system
is available. - tracker
Type String - The tracker type. Currently, only tracker
system
is 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) -> CtsTrackerV3
func 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.
- Bucket
Name string - The OBS bucket name for a tracker.
- Compress
Type 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.
- Domain
Id string - Specifies domain id of the tracker.
- File
Prefix stringName - 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 stringName - Specifies LTS log group name.
- Log
Topic stringName - Specifies LTS log stream.
- Project
Id string - Specifies project id of the tracker.
- Status string
- Specifies whether tracker is
enabled
ordisabled
. - Timeouts
Cts
Tracker V3Timeouts - Tracker
Name string - The tracker name. Currently, only tracker
system
is available. - Tracker
Type string - The tracker type. Currently, only tracker
system
is available.
- Bucket
Name string - The OBS bucket name for a tracker.
- Compress
Type 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.
- Domain
Id string - Specifies domain id of the tracker.
- File
Prefix stringName - 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 stringName - Specifies LTS log group name.
- Log
Topic stringName - Specifies LTS log stream.
- Project
Id string - Specifies project id of the tracker.
- Status string
- Specifies whether tracker is
enabled
ordisabled
. - Timeouts
Cts
Tracker V3Timeouts Args - Tracker
Name string - The tracker name. Currently, only tracker
system
is available. - Tracker
Type string - The tracker type. Currently, only tracker
system
is available.
- bucket
Name String - The OBS bucket name for a tracker.
- compress
Type 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.
- domain
Id String - Specifies domain id of the tracker.
- file
Prefix StringName - The prefix of a log that needs to be stored in an OBS bucket.
- is
Lts BooleanEnabled - Specifies whether to enable trace analysis.
- is
Obs BooleanCreated - Specifies whether the OBS bucket is automatically created by the tracker.
- is
Sort 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
. - log
Group StringName - Specifies LTS log group name.
- log
Topic StringName - Specifies LTS log stream.
- project
Id String - Specifies project id of the tracker.
- status String
- Specifies whether tracker is
enabled
ordisabled
. - timeouts
Cts
Tracker V3Timeouts - tracker
Name String - The tracker name. Currently, only tracker
system
is available. - tracker
Type String - The tracker type. Currently, only tracker
system
is available.
- bucket
Name string - The OBS bucket name for a tracker.
- compress
Type 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.
- domain
Id string - Specifies domain id of the tracker.
- file
Prefix stringName - The prefix of a log that needs to be stored in an OBS bucket.
- is
Lts booleanEnabled - Specifies whether to enable trace analysis.
- is
Obs booleanCreated - Specifies whether the OBS bucket is automatically created by the tracker.
- is
Sort 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
. - log
Group stringName - Specifies LTS log group name.
- log
Topic stringName - Specifies LTS log stream.
- project
Id string - Specifies project id of the tracker.
- status string
- Specifies whether tracker is
enabled
ordisabled
. - timeouts
Cts
Tracker V3Timeouts - tracker
Name string - The tracker name. Currently, only tracker
system
is available. - tracker
Type string - The tracker type. Currently, only tracker
system
is 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
enabled
ordisabled
. - timeouts
Cts
Tracker V3Timeouts Args - tracker_
name str - The tracker name. Currently, only tracker
system
is available. - tracker_
type str - The tracker type. Currently, only tracker
system
is available.
- bucket
Name String - The OBS bucket name for a tracker.
- compress
Type 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.
- domain
Id String - Specifies domain id of the tracker.
- file
Prefix StringName - The prefix of a log that needs to be stored in an OBS bucket.
- is
Lts BooleanEnabled - Specifies whether to enable trace analysis.
- is
Obs BooleanCreated - Specifies whether the OBS bucket is automatically created by the tracker.
- is
Sort 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
. - log
Group StringName - Specifies LTS log group name.
- log
Topic StringName - Specifies LTS log stream.
- project
Id String - Specifies project id of the tracker.
- status String
- Specifies whether tracker is
enabled
ordisabled
. - timeouts Property Map
- tracker
Name String - The tracker name. Currently, only tracker
system
is available. - tracker
Type String - The tracker type. Currently, only tracker
system
is 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
opentelekomcloud
Terraform Provider.