1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getTsfBusinessLogConfigs
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getTsfBusinessLogConfigs

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of tsf business_log_configs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const businessLogConfigs = tencentcloud.getTsfBusinessLogConfigs({
        configIdLists: ["apm-busi-log-cfg-qv3x3rdv"],
        disableProgramAuthCheck: true,
        searchWord: "terraform",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    business_log_configs = tencentcloud.get_tsf_business_log_configs(config_id_lists=["apm-busi-log-cfg-qv3x3rdv"],
        disable_program_auth_check=True,
        search_word="terraform")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.LookupTsfBusinessLogConfigs(ctx, &tencentcloud.LookupTsfBusinessLogConfigsArgs{
    			ConfigIdLists: []string{
    				"apm-busi-log-cfg-qv3x3rdv",
    			},
    			DisableProgramAuthCheck: pulumi.BoolRef(true),
    			SearchWord:              pulumi.StringRef("terraform"),
    		}, nil)
    		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 businessLogConfigs = Tencentcloud.GetTsfBusinessLogConfigs.Invoke(new()
        {
            ConfigIdLists = new[]
            {
                "apm-busi-log-cfg-qv3x3rdv",
            },
            DisableProgramAuthCheck = true,
            SearchWord = "terraform",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetTsfBusinessLogConfigsArgs;
    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 businessLogConfigs = TencentcloudFunctions.getTsfBusinessLogConfigs(GetTsfBusinessLogConfigsArgs.builder()
                .configIdLists("apm-busi-log-cfg-qv3x3rdv")
                .disableProgramAuthCheck(true)
                .searchWord("terraform")
                .build());
    
        }
    }
    
    variables:
      businessLogConfigs:
        fn::invoke:
          function: tencentcloud:getTsfBusinessLogConfigs
          arguments:
            configIdLists:
              - apm-busi-log-cfg-qv3x3rdv
            disableProgramAuthCheck: true
            searchWord: terraform
    

    Using getTsfBusinessLogConfigs

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getTsfBusinessLogConfigs(args: GetTsfBusinessLogConfigsArgs, opts?: InvokeOptions): Promise<GetTsfBusinessLogConfigsResult>
    function getTsfBusinessLogConfigsOutput(args: GetTsfBusinessLogConfigsOutputArgs, opts?: InvokeOptions): Output<GetTsfBusinessLogConfigsResult>
    def get_tsf_business_log_configs(config_id_lists: Optional[Sequence[str]] = None,
                                     disable_program_auth_check: Optional[bool] = None,
                                     id: Optional[str] = None,
                                     result_output_file: Optional[str] = None,
                                     search_word: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetTsfBusinessLogConfigsResult
    def get_tsf_business_log_configs_output(config_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                     disable_program_auth_check: Optional[pulumi.Input[bool]] = None,
                                     id: Optional[pulumi.Input[str]] = None,
                                     result_output_file: Optional[pulumi.Input[str]] = None,
                                     search_word: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetTsfBusinessLogConfigsResult]
    func LookupTsfBusinessLogConfigs(ctx *Context, args *LookupTsfBusinessLogConfigsArgs, opts ...InvokeOption) (*LookupTsfBusinessLogConfigsResult, error)
    func LookupTsfBusinessLogConfigsOutput(ctx *Context, args *LookupTsfBusinessLogConfigsOutputArgs, opts ...InvokeOption) LookupTsfBusinessLogConfigsResultOutput

    > Note: This function is named LookupTsfBusinessLogConfigs in the Go SDK.

    public static class GetTsfBusinessLogConfigs 
    {
        public static Task<GetTsfBusinessLogConfigsResult> InvokeAsync(GetTsfBusinessLogConfigsArgs args, InvokeOptions? opts = null)
        public static Output<GetTsfBusinessLogConfigsResult> Invoke(GetTsfBusinessLogConfigsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTsfBusinessLogConfigsResult> getTsfBusinessLogConfigs(GetTsfBusinessLogConfigsArgs args, InvokeOptions options)
    public static Output<GetTsfBusinessLogConfigsResult> getTsfBusinessLogConfigs(GetTsfBusinessLogConfigsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getTsfBusinessLogConfigs:getTsfBusinessLogConfigs
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ConfigIdLists List<string>
    Config Id list.
    DisableProgramAuthCheck bool
    Disable Program auth check or not.
    Id string
    ResultOutputFile string
    Used to save results.
    SearchWord string
    wild search word.
    ConfigIdLists []string
    Config Id list.
    DisableProgramAuthCheck bool
    Disable Program auth check or not.
    Id string
    ResultOutputFile string
    Used to save results.
    SearchWord string
    wild search word.
    configIdLists List<String>
    Config Id list.
    disableProgramAuthCheck Boolean
    Disable Program auth check or not.
    id String
    resultOutputFile String
    Used to save results.
    searchWord String
    wild search word.
    configIdLists string[]
    Config Id list.
    disableProgramAuthCheck boolean
    Disable Program auth check or not.
    id string
    resultOutputFile string
    Used to save results.
    searchWord string
    wild search word.
    config_id_lists Sequence[str]
    Config Id list.
    disable_program_auth_check bool
    Disable Program auth check or not.
    id str
    result_output_file str
    Used to save results.
    search_word str
    wild search word.
    configIdLists List<String>
    Config Id list.
    disableProgramAuthCheck Boolean
    Disable Program auth check or not.
    id String
    resultOutputFile String
    Used to save results.
    searchWord String
    wild search word.

    getTsfBusinessLogConfigs Result

    The following output properties are available:

    Id string
    Results List<GetTsfBusinessLogConfigsResult>
    List of business log configurations.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigIdLists List<string>
    DisableProgramAuthCheck bool
    ResultOutputFile string
    SearchWord string
    Id string
    Results []GetTsfBusinessLogConfigsResult
    List of business log configurations.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigIdLists []string
    DisableProgramAuthCheck bool
    ResultOutputFile string
    SearchWord string
    id String
    results List<GetTsfBusinessLogConfigsResult>
    List of business log configurations.Note: This field may return null, indicating that no valid values can be obtained.
    configIdLists List<String>
    disableProgramAuthCheck Boolean
    resultOutputFile String
    searchWord String
    id string
    results GetTsfBusinessLogConfigsResult[]
    List of business log configurations.Note: This field may return null, indicating that no valid values can be obtained.
    configIdLists string[]
    disableProgramAuthCheck boolean
    resultOutputFile string
    searchWord string
    id str
    results Sequence[GetTsfBusinessLogConfigsResult]
    List of business log configurations.Note: This field may return null, indicating that no valid values can be obtained.
    config_id_lists Sequence[str]
    disable_program_auth_check bool
    result_output_file str
    search_word str
    id String
    results List<Property Map>
    List of business log configurations.Note: This field may return null, indicating that no valid values can be obtained.
    configIdLists List<String>
    disableProgramAuthCheck Boolean
    resultOutputFile String
    searchWord String

    Supporting Types

    GetTsfBusinessLogConfigsResult

    Contents List<GetTsfBusinessLogConfigsResultContent>
    Log configuration item list. Note: This field may return null, indicating that no valid values can be obtained.
    TotalCount double
    Total Count.Note: This field may return null, indicating that no valid values can be obtained.
    Contents []GetTsfBusinessLogConfigsResultContent
    Log configuration item list. Note: This field may return null, indicating that no valid values can be obtained.
    TotalCount float64
    Total Count.Note: This field may return null, indicating that no valid values can be obtained.
    contents List<GetTsfBusinessLogConfigsResultContent>
    Log configuration item list. Note: This field may return null, indicating that no valid values can be obtained.
    totalCount Double
    Total Count.Note: This field may return null, indicating that no valid values can be obtained.
    contents GetTsfBusinessLogConfigsResultContent[]
    Log configuration item list. Note: This field may return null, indicating that no valid values can be obtained.
    totalCount number
    Total Count.Note: This field may return null, indicating that no valid values can be obtained.
    contents Sequence[GetTsfBusinessLogConfigsResultContent]
    Log configuration item list. Note: This field may return null, indicating that no valid values can be obtained.
    total_count float
    Total Count.Note: This field may return null, indicating that no valid values can be obtained.
    contents List<Property Map>
    Log configuration item list. Note: This field may return null, indicating that no valid values can be obtained.
    totalCount Number
    Total Count.Note: This field may return null, indicating that no valid values can be obtained.

    GetTsfBusinessLogConfigsResultContent

    ConfigAssociatedGroups List<GetTsfBusinessLogConfigsResultContentConfigAssociatedGroup>
    the associate group of Config.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigCreateTime string
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigDesc string
    Description of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigId string
    ConfigId.
    ConfigName string
    ConfigName.
    ConfigPath string
    Log path of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigPipeline string
    Pipeline of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigSchemas List<GetTsfBusinessLogConfigsResultContentConfigSchema>
    ParserSchema of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigTags string
    configuration Tag.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigUpdateTime string
    Update time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigAssociatedGroups []GetTsfBusinessLogConfigsResultContentConfigAssociatedGroup
    the associate group of Config.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigCreateTime string
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigDesc string
    Description of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigId string
    ConfigId.
    ConfigName string
    ConfigName.
    ConfigPath string
    Log path of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigPipeline string
    Pipeline of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigSchemas []GetTsfBusinessLogConfigsResultContentConfigSchema
    ParserSchema of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigTags string
    configuration Tag.Note: This field may return null, indicating that no valid values can be obtained.
    ConfigUpdateTime string
    Update time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configAssociatedGroups List<GetTsfBusinessLogConfigsResultContentConfigAssociatedGroup>
    the associate group of Config.Note: This field may return null, indicating that no valid values can be obtained.
    configCreateTime String
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configDesc String
    Description of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configId String
    ConfigId.
    configName String
    ConfigName.
    configPath String
    Log path of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configPipeline String
    Pipeline of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configSchemas List<GetTsfBusinessLogConfigsResultContentConfigSchema>
    ParserSchema of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configTags String
    configuration Tag.Note: This field may return null, indicating that no valid values can be obtained.
    configUpdateTime String
    Update time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configAssociatedGroups GetTsfBusinessLogConfigsResultContentConfigAssociatedGroup[]
    the associate group of Config.Note: This field may return null, indicating that no valid values can be obtained.
    configCreateTime string
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configDesc string
    Description of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configId string
    ConfigId.
    configName string
    ConfigName.
    configPath string
    Log path of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configPipeline string
    Pipeline of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configSchemas GetTsfBusinessLogConfigsResultContentConfigSchema[]
    ParserSchema of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configTags string
    configuration Tag.Note: This field may return null, indicating that no valid values can be obtained.
    configUpdateTime string
    Update time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    config_associated_groups Sequence[GetTsfBusinessLogConfigsResultContentConfigAssociatedGroup]
    the associate group of Config.Note: This field may return null, indicating that no valid values can be obtained.
    config_create_time str
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    config_desc str
    Description of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    config_id str
    ConfigId.
    config_name str
    ConfigName.
    config_path str
    Log path of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    config_pipeline str
    Pipeline of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    config_schemas Sequence[GetTsfBusinessLogConfigsResultContentConfigSchema]
    ParserSchema of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    config_tags str
    configuration Tag.Note: This field may return null, indicating that no valid values can be obtained.
    config_update_time str
    Update time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configAssociatedGroups List<Property Map>
    the associate group of Config.Note: This field may return null, indicating that no valid values can be obtained.
    configCreateTime String
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configDesc String
    Description of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configId String
    ConfigId.
    configName String
    ConfigName.
    configPath String
    Log path of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configPipeline String
    Pipeline of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configSchemas List<Property Map>
    ParserSchema of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    configTags String
    configuration Tag.Note: This field may return null, indicating that no valid values can be obtained.
    configUpdateTime String
    Update time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.

    GetTsfBusinessLogConfigsResultContentConfigAssociatedGroup

    ApplicationId string
    Application Id of Group. Note: This field may return null, indicating that no valid values can be obtained.
    ApplicationName string
    Application Name. Note: This field may return null, indicating that no valid values can be obtained.
    ApplicationType string
    Application Type. Note: This field may return null, indicating that no valid values can be obtained.
    AssociatedTime string
    Time when the deployment group is associated with the log configuration.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterId string
    Cluster ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterName string
    Cluster Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterType string
    Cluster type to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    GroupId string
    Group Id. Note: This field may return null, indicating that no valid values can be obtained.
    GroupName string
    Group Name. Note: This field may return null, indicating that no valid values can be obtained.
    NamespaceId string
    Namespace ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    NamespaceName string
    Namespace Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    ApplicationId string
    Application Id of Group. Note: This field may return null, indicating that no valid values can be obtained.
    ApplicationName string
    Application Name. Note: This field may return null, indicating that no valid values can be obtained.
    ApplicationType string
    Application Type. Note: This field may return null, indicating that no valid values can be obtained.
    AssociatedTime string
    Time when the deployment group is associated with the log configuration.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterId string
    Cluster ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterName string
    Cluster Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    ClusterType string
    Cluster type to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    GroupId string
    Group Id. Note: This field may return null, indicating that no valid values can be obtained.
    GroupName string
    Group Name. Note: This field may return null, indicating that no valid values can be obtained.
    NamespaceId string
    Namespace ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    NamespaceName string
    Namespace Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    applicationId String
    Application Id of Group. Note: This field may return null, indicating that no valid values can be obtained.
    applicationName String
    Application Name. Note: This field may return null, indicating that no valid values can be obtained.
    applicationType String
    Application Type. Note: This field may return null, indicating that no valid values can be obtained.
    associatedTime String
    Time when the deployment group is associated with the log configuration.Note: This field may return null, indicating that no valid values can be obtained.
    clusterId String
    Cluster ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    clusterName String
    Cluster Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    clusterType String
    Cluster type to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    groupId String
    Group Id. Note: This field may return null, indicating that no valid values can be obtained.
    groupName String
    Group Name. Note: This field may return null, indicating that no valid values can be obtained.
    namespaceId String
    Namespace ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    namespaceName String
    Namespace Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    applicationId string
    Application Id of Group. Note: This field may return null, indicating that no valid values can be obtained.
    applicationName string
    Application Name. Note: This field may return null, indicating that no valid values can be obtained.
    applicationType string
    Application Type. Note: This field may return null, indicating that no valid values can be obtained.
    associatedTime string
    Time when the deployment group is associated with the log configuration.Note: This field may return null, indicating that no valid values can be obtained.
    clusterId string
    Cluster ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    clusterName string
    Cluster Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    clusterType string
    Cluster type to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    groupId string
    Group Id. Note: This field may return null, indicating that no valid values can be obtained.
    groupName string
    Group Name. Note: This field may return null, indicating that no valid values can be obtained.
    namespaceId string
    Namespace ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    namespaceName string
    Namespace Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    application_id str
    Application Id of Group. Note: This field may return null, indicating that no valid values can be obtained.
    application_name str
    Application Name. Note: This field may return null, indicating that no valid values can be obtained.
    application_type str
    Application Type. Note: This field may return null, indicating that no valid values can be obtained.
    associated_time str
    Time when the deployment group is associated with the log configuration.Note: This field may return null, indicating that no valid values can be obtained.
    cluster_id str
    Cluster ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    cluster_name str
    Cluster Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    cluster_type str
    Cluster type to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    group_id str
    Group Id. Note: This field may return null, indicating that no valid values can be obtained.
    group_name str
    Group Name. Note: This field may return null, indicating that no valid values can be obtained.
    namespace_id str
    Namespace ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    namespace_name str
    Namespace Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    applicationId String
    Application Id of Group. Note: This field may return null, indicating that no valid values can be obtained.
    applicationName String
    Application Name. Note: This field may return null, indicating that no valid values can be obtained.
    applicationType String
    Application Type. Note: This field may return null, indicating that no valid values can be obtained.
    associatedTime String
    Time when the deployment group is associated with the log configuration.Note: This field may return null, indicating that no valid values can be obtained.
    clusterId String
    Cluster ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    clusterName String
    Cluster Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    clusterType String
    Cluster type to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    groupId String
    Group Id. Note: This field may return null, indicating that no valid values can be obtained.
    groupName String
    Group Name. Note: This field may return null, indicating that no valid values can be obtained.
    namespaceId String
    Namespace ID to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.
    namespaceName String
    Namespace Name to which the deployment group belongs.Note: This field may return null, indicating that no valid values can be obtained.

    GetTsfBusinessLogConfigsResultContentConfigSchema

    SchemaContent string
    content of schema.
    SchemaCreateTime string
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaDateFormat string
    Schema format.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaMultilinePattern string
    Schema pattern of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaPatternLayout string
    User-defined parsing rules.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaType double
    Schema type.
    SchemaContent string
    content of schema.
    SchemaCreateTime string
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaDateFormat string
    Schema format.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaMultilinePattern string
    Schema pattern of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaPatternLayout string
    User-defined parsing rules.Note: This field may return null, indicating that no valid values can be obtained.
    SchemaType float64
    Schema type.
    schemaContent String
    content of schema.
    schemaCreateTime String
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schemaDateFormat String
    Schema format.Note: This field may return null, indicating that no valid values can be obtained.
    schemaMultilinePattern String
    Schema pattern of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schemaPatternLayout String
    User-defined parsing rules.Note: This field may return null, indicating that no valid values can be obtained.
    schemaType Double
    Schema type.
    schemaContent string
    content of schema.
    schemaCreateTime string
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schemaDateFormat string
    Schema format.Note: This field may return null, indicating that no valid values can be obtained.
    schemaMultilinePattern string
    Schema pattern of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schemaPatternLayout string
    User-defined parsing rules.Note: This field may return null, indicating that no valid values can be obtained.
    schemaType number
    Schema type.
    schema_content str
    content of schema.
    schema_create_time str
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schema_date_format str
    Schema format.Note: This field may return null, indicating that no valid values can be obtained.
    schema_multiline_pattern str
    Schema pattern of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schema_pattern_layout str
    User-defined parsing rules.Note: This field may return null, indicating that no valid values can be obtained.
    schema_type float
    Schema type.
    schemaContent String
    content of schema.
    schemaCreateTime String
    Create time of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schemaDateFormat String
    Schema format.Note: This field may return null, indicating that no valid values can be obtained.
    schemaMultilinePattern String
    Schema pattern of configuration item.Note: This field may return null, indicating that no valid values can be obtained.
    schemaPatternLayout String
    User-defined parsing rules.Note: This field may return null, indicating that no valid values can be obtained.
    schemaType Number
    Schema type.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack