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

tencentcloud.getVodImageSpriteTemplates

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 VOD image sprite templates.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const fooVodImageSpriteTemplate = new tencentcloud.VodImageSpriteTemplate("fooVodImageSpriteTemplate", {
        sampleType: "Percent",
        sampleInterval: 10,
        rowCount: 3,
        columnCount: 3,
        comment: "test",
        fillType: "stretch",
        width: 128,
        height: 128,
        resolutionAdaptive: false,
    });
    const fooVodImageSpriteTemplates = tencentcloud.getVodImageSpriteTemplatesOutput({
        type: "Custom",
        definition: fooVodImageSpriteTemplate.vodImageSpriteTemplateId,
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo_vod_image_sprite_template = tencentcloud.VodImageSpriteTemplate("fooVodImageSpriteTemplate",
        sample_type="Percent",
        sample_interval=10,
        row_count=3,
        column_count=3,
        comment="test",
        fill_type="stretch",
        width=128,
        height=128,
        resolution_adaptive=False)
    foo_vod_image_sprite_templates = tencentcloud.get_vod_image_sprite_templates_output(type="Custom",
        definition=foo_vod_image_sprite_template.vod_image_sprite_template_id)
    
    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 {
    		fooVodImageSpriteTemplate, err := tencentcloud.NewVodImageSpriteTemplate(ctx, "fooVodImageSpriteTemplate", &tencentcloud.VodImageSpriteTemplateArgs{
    			SampleType:         pulumi.String("Percent"),
    			SampleInterval:     pulumi.Float64(10),
    			RowCount:           pulumi.Float64(3),
    			ColumnCount:        pulumi.Float64(3),
    			Comment:            pulumi.String("test"),
    			FillType:           pulumi.String("stretch"),
    			Width:              pulumi.Float64(128),
    			Height:             pulumi.Float64(128),
    			ResolutionAdaptive: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		_ = tencentcloud.GetVodImageSpriteTemplatesOutput(ctx, tencentcloud.GetVodImageSpriteTemplatesOutputArgs{
    			Type:       pulumi.String("Custom"),
    			Definition: fooVodImageSpriteTemplate.VodImageSpriteTemplateId,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var fooVodImageSpriteTemplate = new Tencentcloud.VodImageSpriteTemplate("fooVodImageSpriteTemplate", new()
        {
            SampleType = "Percent",
            SampleInterval = 10,
            RowCount = 3,
            ColumnCount = 3,
            Comment = "test",
            FillType = "stretch",
            Width = 128,
            Height = 128,
            ResolutionAdaptive = false,
        });
    
        var fooVodImageSpriteTemplates = Tencentcloud.GetVodImageSpriteTemplates.Invoke(new()
        {
            Type = "Custom",
            Definition = fooVodImageSpriteTemplate.VodImageSpriteTemplateId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.VodImageSpriteTemplate;
    import com.pulumi.tencentcloud.VodImageSpriteTemplateArgs;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetVodImageSpriteTemplatesArgs;
    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 fooVodImageSpriteTemplate = new VodImageSpriteTemplate("fooVodImageSpriteTemplate", VodImageSpriteTemplateArgs.builder()
                .sampleType("Percent")
                .sampleInterval(10)
                .rowCount(3)
                .columnCount(3)
                .comment("test")
                .fillType("stretch")
                .width(128)
                .height(128)
                .resolutionAdaptive(false)
                .build());
    
            final var fooVodImageSpriteTemplates = TencentcloudFunctions.getVodImageSpriteTemplates(GetVodImageSpriteTemplatesArgs.builder()
                .type("Custom")
                .definition(fooVodImageSpriteTemplate.vodImageSpriteTemplateId())
                .build());
    
        }
    }
    
    resources:
      fooVodImageSpriteTemplate:
        type: tencentcloud:VodImageSpriteTemplate
        properties:
          sampleType: Percent
          sampleInterval: 10
          rowCount: 3
          columnCount: 3
          comment: test
          fillType: stretch
          width: 128
          height: 128
          resolutionAdaptive: false
    variables:
      fooVodImageSpriteTemplates:
        fn::invoke:
          function: tencentcloud:getVodImageSpriteTemplates
          arguments:
            type: Custom
            definition: ${fooVodImageSpriteTemplate.vodImageSpriteTemplateId}
    

    Using getVodImageSpriteTemplates

    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 getVodImageSpriteTemplates(args: GetVodImageSpriteTemplatesArgs, opts?: InvokeOptions): Promise<GetVodImageSpriteTemplatesResult>
    function getVodImageSpriteTemplatesOutput(args: GetVodImageSpriteTemplatesOutputArgs, opts?: InvokeOptions): Output<GetVodImageSpriteTemplatesResult>
    def get_vod_image_sprite_templates(definition: Optional[str] = None,
                                       id: Optional[str] = None,
                                       result_output_file: Optional[str] = None,
                                       sub_app_id: Optional[float] = None,
                                       type: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetVodImageSpriteTemplatesResult
    def get_vod_image_sprite_templates_output(definition: Optional[pulumi.Input[str]] = None,
                                       id: Optional[pulumi.Input[str]] = None,
                                       result_output_file: Optional[pulumi.Input[str]] = None,
                                       sub_app_id: Optional[pulumi.Input[float]] = None,
                                       type: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetVodImageSpriteTemplatesResult]
    func GetVodImageSpriteTemplates(ctx *Context, args *GetVodImageSpriteTemplatesArgs, opts ...InvokeOption) (*GetVodImageSpriteTemplatesResult, error)
    func GetVodImageSpriteTemplatesOutput(ctx *Context, args *GetVodImageSpriteTemplatesOutputArgs, opts ...InvokeOption) GetVodImageSpriteTemplatesResultOutput

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

    public static class GetVodImageSpriteTemplates 
    {
        public static Task<GetVodImageSpriteTemplatesResult> InvokeAsync(GetVodImageSpriteTemplatesArgs args, InvokeOptions? opts = null)
        public static Output<GetVodImageSpriteTemplatesResult> Invoke(GetVodImageSpriteTemplatesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVodImageSpriteTemplatesResult> getVodImageSpriteTemplates(GetVodImageSpriteTemplatesArgs args, InvokeOptions options)
    public static Output<GetVodImageSpriteTemplatesResult> getVodImageSpriteTemplates(GetVodImageSpriteTemplatesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getVodImageSpriteTemplates:getVodImageSpriteTemplates
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Definition string
    Unique ID filter of image sprite template.
    Id string
    ResultOutputFile string
    Used to save results.
    SubAppId double
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    Definition string
    Unique ID filter of image sprite template.
    Id string
    ResultOutputFile string
    Used to save results.
    SubAppId float64
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    definition String
    Unique ID filter of image sprite template.
    id String
    resultOutputFile String
    Used to save results.
    subAppId Double
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    definition string
    Unique ID filter of image sprite template.
    id string
    resultOutputFile string
    Used to save results.
    subAppId number
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    definition str
    Unique ID filter of image sprite template.
    id str
    result_output_file str
    Used to save results.
    sub_app_id float
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    definition String
    Unique ID filter of image sprite template.
    id String
    resultOutputFile String
    Used to save results.
    subAppId Number
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    getVodImageSpriteTemplates Result

    The following output properties are available:

    Id string
    TemplateLists List<GetVodImageSpriteTemplatesTemplateList>
    A list of image sprite templates. Each element contains the following attributes:
    Definition string
    Unique ID of image sprite template.
    ResultOutputFile string
    SubAppId double
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    Id string
    TemplateLists []GetVodImageSpriteTemplatesTemplateList
    A list of image sprite templates. Each element contains the following attributes:
    Definition string
    Unique ID of image sprite template.
    ResultOutputFile string
    SubAppId float64
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    templateLists List<GetVodImageSpriteTemplatesTemplateList>
    A list of image sprite templates. Each element contains the following attributes:
    definition String
    Unique ID of image sprite template.
    resultOutputFile String
    subAppId Double
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id string
    templateLists GetVodImageSpriteTemplatesTemplateList[]
    A list of image sprite templates. Each element contains the following attributes:
    definition string
    Unique ID of image sprite template.
    resultOutputFile string
    subAppId number
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id str
    template_lists Sequence[GetVodImageSpriteTemplatesTemplateList]
    A list of image sprite templates. Each element contains the following attributes:
    definition str
    Unique ID of image sprite template.
    result_output_file str
    sub_app_id float
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    templateLists List<Property Map>
    A list of image sprite templates. Each element contains the following attributes:
    definition String
    Unique ID of image sprite template.
    resultOutputFile String
    subAppId Number
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    Supporting Types

    GetVodImageSpriteTemplatesTemplateList

    ColumnCount double
    Subimage column count of an image sprite.
    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    Definition string
    Unique ID filter of image sprite template.
    FillType string
    Fill refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported: stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot shorter or longer; black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.
    Height double
    Maximum value of the height (or short side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    Name string
    Name of a time point screen capturing template.
    ResolutionAdaptive bool
    Resolution adaption. Valid values: true: enabled. In this case, width represents the long side of a video, while height the short side; false: disabled. In this case, width represents the width of a video, while height the height.
    RowCount double
    Subimage row count of an image sprite.
    SampleInterval double
    Sampling interval. If sample_type is Percent, sampling will be performed at an interval of the specified percentage. If sample_type is Time, sampling will be performed at the specified time interval in seconds.
    SampleType string
    Sampling type. Valid values: Percent, Time. Percent: by percent. Time: by time interval.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    UpdateTime string
    Last modified time of template in ISO date format.
    Width double
    Maximum value of the width (or long side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    ColumnCount float64
    Subimage column count of an image sprite.
    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    Definition string
    Unique ID filter of image sprite template.
    FillType string
    Fill refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported: stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot shorter or longer; black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.
    Height float64
    Maximum value of the height (or short side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    Name string
    Name of a time point screen capturing template.
    ResolutionAdaptive bool
    Resolution adaption. Valid values: true: enabled. In this case, width represents the long side of a video, while height the short side; false: disabled. In this case, width represents the width of a video, while height the height.
    RowCount float64
    Subimage row count of an image sprite.
    SampleInterval float64
    Sampling interval. If sample_type is Percent, sampling will be performed at an interval of the specified percentage. If sample_type is Time, sampling will be performed at the specified time interval in seconds.
    SampleType string
    Sampling type. Valid values: Percent, Time. Percent: by percent. Time: by time interval.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    UpdateTime string
    Last modified time of template in ISO date format.
    Width float64
    Maximum value of the width (or long side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    columnCount Double
    Subimage column count of an image sprite.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    definition String
    Unique ID filter of image sprite template.
    fillType String
    Fill refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported: stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot shorter or longer; black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.
    height Double
    Maximum value of the height (or short side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    name String
    Name of a time point screen capturing template.
    resolutionAdaptive Boolean
    Resolution adaption. Valid values: true: enabled. In this case, width represents the long side of a video, while height the short side; false: disabled. In this case, width represents the width of a video, while height the height.
    rowCount Double
    Subimage row count of an image sprite.
    sampleInterval Double
    Sampling interval. If sample_type is Percent, sampling will be performed at an interval of the specified percentage. If sample_type is Time, sampling will be performed at the specified time interval in seconds.
    sampleType String
    Sampling type. Valid values: Percent, Time. Percent: by percent. Time: by time interval.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime String
    Last modified time of template in ISO date format.
    width Double
    Maximum value of the width (or long side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    columnCount number
    Subimage column count of an image sprite.
    comment string
    Template description.
    createTime string
    Creation time of template in ISO date format.
    definition string
    Unique ID filter of image sprite template.
    fillType string
    Fill refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported: stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot shorter or longer; black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.
    height number
    Maximum value of the height (or short side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    name string
    Name of a time point screen capturing template.
    resolutionAdaptive boolean
    Resolution adaption. Valid values: true: enabled. In this case, width represents the long side of a video, while height the short side; false: disabled. In this case, width represents the width of a video, while height the height.
    rowCount number
    Subimage row count of an image sprite.
    sampleInterval number
    Sampling interval. If sample_type is Percent, sampling will be performed at an interval of the specified percentage. If sample_type is Time, sampling will be performed at the specified time interval in seconds.
    sampleType string
    Sampling type. Valid values: Percent, Time. Percent: by percent. Time: by time interval.
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime string
    Last modified time of template in ISO date format.
    width number
    Maximum value of the width (or long side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    column_count float
    Subimage column count of an image sprite.
    comment str
    Template description.
    create_time str
    Creation time of template in ISO date format.
    definition str
    Unique ID filter of image sprite template.
    fill_type str
    Fill refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported: stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot shorter or longer; black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.
    height float
    Maximum value of the height (or short side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    name str
    Name of a time point screen capturing template.
    resolution_adaptive bool
    Resolution adaption. Valid values: true: enabled. In this case, width represents the long side of a video, while height the short side; false: disabled. In this case, width represents the width of a video, while height the height.
    row_count float
    Subimage row count of an image sprite.
    sample_interval float
    Sampling interval. If sample_type is Percent, sampling will be performed at an interval of the specified percentage. If sample_type is Time, sampling will be performed at the specified time interval in seconds.
    sample_type str
    Sampling type. Valid values: Percent, Time. Percent: by percent. Time: by time interval.
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    update_time str
    Last modified time of template in ISO date format.
    width float
    Maximum value of the width (or long side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    columnCount Number
    Subimage column count of an image sprite.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    definition String
    Unique ID filter of image sprite template.
    fillType String
    Fill refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported: stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot shorter or longer; black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.
    height Number
    Maximum value of the height (or short side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.
    name String
    Name of a time point screen capturing template.
    resolutionAdaptive Boolean
    Resolution adaption. Valid values: true: enabled. In this case, width represents the long side of a video, while height the short side; false: disabled. In this case, width represents the width of a video, while height the height.
    rowCount Number
    Subimage row count of an image sprite.
    sampleInterval Number
    Sampling interval. If sample_type is Percent, sampling will be performed at an interval of the specified percentage. If sample_type is Time, sampling will be performed at the specified time interval in seconds.
    sampleType String
    Sampling type. Valid values: Percent, Time. Percent: by percent. Time: by time interval.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime String
    Last modified time of template in ISO date format.
    width Number
    Maximum value of the width (or long side) of a screenshot in px. Value range: 0 and [128, 4,096]. If both width and height are 0, the resolution will be the same as that of the source video; If width is 0, but height is not 0, width will be proportionally scaled; If width is not 0, but height is 0, height will be proportionally scaled; If both width and height are not 0, the custom resolution will be used.

    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