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

tencentcloud.getVodSnapshotByTimeOffsetTemplates

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 snapshot by time offset templates.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const fooVodSnapshotByTimeOffsetTemplate = new tencentcloud.VodSnapshotByTimeOffsetTemplate("fooVodSnapshotByTimeOffsetTemplate", {
        width: 130,
        height: 128,
        resolutionAdaptive: false,
        format: "png",
        comment: "test",
        fillType: "white",
    });
    const fooVodSnapshotByTimeOffsetTemplates = tencentcloud.getVodSnapshotByTimeOffsetTemplatesOutput({
        type: "Custom",
        definition: fooVodSnapshotByTimeOffsetTemplate.vodSnapshotByTimeOffsetTemplateId,
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo_vod_snapshot_by_time_offset_template = tencentcloud.VodSnapshotByTimeOffsetTemplate("fooVodSnapshotByTimeOffsetTemplate",
        width=130,
        height=128,
        resolution_adaptive=False,
        format="png",
        comment="test",
        fill_type="white")
    foo_vod_snapshot_by_time_offset_templates = tencentcloud.get_vod_snapshot_by_time_offset_templates_output(type="Custom",
        definition=foo_vod_snapshot_by_time_offset_template.vod_snapshot_by_time_offset_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 {
    		fooVodSnapshotByTimeOffsetTemplate, err := tencentcloud.NewVodSnapshotByTimeOffsetTemplate(ctx, "fooVodSnapshotByTimeOffsetTemplate", &tencentcloud.VodSnapshotByTimeOffsetTemplateArgs{
    			Width:              pulumi.Float64(130),
    			Height:             pulumi.Float64(128),
    			ResolutionAdaptive: pulumi.Bool(false),
    			Format:             pulumi.String("png"),
    			Comment:            pulumi.String("test"),
    			FillType:           pulumi.String("white"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = tencentcloud.GetVodSnapshotByTimeOffsetTemplatesOutput(ctx, tencentcloud.GetVodSnapshotByTimeOffsetTemplatesOutputArgs{
    			Type:       pulumi.String("Custom"),
    			Definition: fooVodSnapshotByTimeOffsetTemplate.VodSnapshotByTimeOffsetTemplateId,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var fooVodSnapshotByTimeOffsetTemplate = new Tencentcloud.VodSnapshotByTimeOffsetTemplate("fooVodSnapshotByTimeOffsetTemplate", new()
        {
            Width = 130,
            Height = 128,
            ResolutionAdaptive = false,
            Format = "png",
            Comment = "test",
            FillType = "white",
        });
    
        var fooVodSnapshotByTimeOffsetTemplates = Tencentcloud.GetVodSnapshotByTimeOffsetTemplates.Invoke(new()
        {
            Type = "Custom",
            Definition = fooVodSnapshotByTimeOffsetTemplate.VodSnapshotByTimeOffsetTemplateId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.VodSnapshotByTimeOffsetTemplate;
    import com.pulumi.tencentcloud.VodSnapshotByTimeOffsetTemplateArgs;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetVodSnapshotByTimeOffsetTemplatesArgs;
    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 fooVodSnapshotByTimeOffsetTemplate = new VodSnapshotByTimeOffsetTemplate("fooVodSnapshotByTimeOffsetTemplate", VodSnapshotByTimeOffsetTemplateArgs.builder()
                .width(130)
                .height(128)
                .resolutionAdaptive(false)
                .format("png")
                .comment("test")
                .fillType("white")
                .build());
    
            final var fooVodSnapshotByTimeOffsetTemplates = TencentcloudFunctions.getVodSnapshotByTimeOffsetTemplates(GetVodSnapshotByTimeOffsetTemplatesArgs.builder()
                .type("Custom")
                .definition(fooVodSnapshotByTimeOffsetTemplate.vodSnapshotByTimeOffsetTemplateId())
                .build());
    
        }
    }
    
    resources:
      fooVodSnapshotByTimeOffsetTemplate:
        type: tencentcloud:VodSnapshotByTimeOffsetTemplate
        properties:
          width: 130
          height: 128
          resolutionAdaptive: false
          format: png
          comment: test
          fillType: white
    variables:
      fooVodSnapshotByTimeOffsetTemplates:
        fn::invoke:
          function: tencentcloud:getVodSnapshotByTimeOffsetTemplates
          arguments:
            type: Custom
            definition: ${fooVodSnapshotByTimeOffsetTemplate.vodSnapshotByTimeOffsetTemplateId}
    

    Using getVodSnapshotByTimeOffsetTemplates

    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 getVodSnapshotByTimeOffsetTemplates(args: GetVodSnapshotByTimeOffsetTemplatesArgs, opts?: InvokeOptions): Promise<GetVodSnapshotByTimeOffsetTemplatesResult>
    function getVodSnapshotByTimeOffsetTemplatesOutput(args: GetVodSnapshotByTimeOffsetTemplatesOutputArgs, opts?: InvokeOptions): Output<GetVodSnapshotByTimeOffsetTemplatesResult>
    def get_vod_snapshot_by_time_offset_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) -> GetVodSnapshotByTimeOffsetTemplatesResult
    def get_vod_snapshot_by_time_offset_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[GetVodSnapshotByTimeOffsetTemplatesResult]
    func GetVodSnapshotByTimeOffsetTemplates(ctx *Context, args *GetVodSnapshotByTimeOffsetTemplatesArgs, opts ...InvokeOption) (*GetVodSnapshotByTimeOffsetTemplatesResult, error)
    func GetVodSnapshotByTimeOffsetTemplatesOutput(ctx *Context, args *GetVodSnapshotByTimeOffsetTemplatesOutputArgs, opts ...InvokeOption) GetVodSnapshotByTimeOffsetTemplatesResultOutput

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

    public static class GetVodSnapshotByTimeOffsetTemplates 
    {
        public static Task<GetVodSnapshotByTimeOffsetTemplatesResult> InvokeAsync(GetVodSnapshotByTimeOffsetTemplatesArgs args, InvokeOptions? opts = null)
        public static Output<GetVodSnapshotByTimeOffsetTemplatesResult> Invoke(GetVodSnapshotByTimeOffsetTemplatesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVodSnapshotByTimeOffsetTemplatesResult> getVodSnapshotByTimeOffsetTemplates(GetVodSnapshotByTimeOffsetTemplatesArgs args, InvokeOptions options)
    public static Output<GetVodSnapshotByTimeOffsetTemplatesResult> getVodSnapshotByTimeOffsetTemplates(GetVodSnapshotByTimeOffsetTemplatesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getVodSnapshotByTimeOffsetTemplates:getVodSnapshotByTimeOffsetTemplates
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Definition string
    Unique ID filter of snapshot by time offset 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 snapshot by time offset 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 snapshot by time offset 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 snapshot by time offset 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 snapshot by time offset 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 snapshot by time offset 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.

    getVodSnapshotByTimeOffsetTemplates Result

    The following output properties are available:

    Id string
    TemplateLists List<GetVodSnapshotByTimeOffsetTemplatesTemplateList>
    A list of snapshot by time offset templates. Each element contains the following attributes:
    Definition string
    Unique ID of snapshot by time offset template.
    ResultOutputFile string
    SubAppId double
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    Id string
    TemplateLists []GetVodSnapshotByTimeOffsetTemplatesTemplateList
    A list of snapshot by time offset templates. Each element contains the following attributes:
    Definition string
    Unique ID of snapshot by time offset template.
    ResultOutputFile string
    SubAppId float64
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    templateLists List<GetVodSnapshotByTimeOffsetTemplatesTemplateList>
    A list of snapshot by time offset templates. Each element contains the following attributes:
    definition String
    Unique ID of snapshot by time offset template.
    resultOutputFile String
    subAppId Double
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id string
    templateLists GetVodSnapshotByTimeOffsetTemplatesTemplateList[]
    A list of snapshot by time offset templates. Each element contains the following attributes:
    definition string
    Unique ID of snapshot by time offset 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[GetVodSnapshotByTimeOffsetTemplatesTemplateList]
    A list of snapshot by time offset templates. Each element contains the following attributes:
    definition str
    Unique ID of snapshot by time offset 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 snapshot by time offset templates. Each element contains the following attributes:
    definition String
    Unique ID of snapshot by time offset template.
    resultOutputFile String
    subAppId Number
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    Supporting Types

    GetVodSnapshotByTimeOffsetTemplatesTemplateList

    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    Definition string
    Unique ID filter of snapshot by time offset 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. white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks. gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.
    Format string
    Image format. Valid values: jpg, png.
    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, false. 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.
    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.
    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    Definition string
    Unique ID filter of snapshot by time offset 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. white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks. gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.
    Format string
    Image format. Valid values: jpg, png.
    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, false. 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.
    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.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    definition String
    Unique ID filter of snapshot by time offset 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. white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks. gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.
    format String
    Image format. Valid values: jpg, png.
    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, false. 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.
    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.
    comment string
    Template description.
    createTime string
    Creation time of template in ISO date format.
    definition string
    Unique ID filter of snapshot by time offset 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. white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks. gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.
    format string
    Image format. Valid values: jpg, png.
    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, false. 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.
    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.
    comment str
    Template description.
    create_time str
    Creation time of template in ISO date format.
    definition str
    Unique ID filter of snapshot by time offset 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. white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks. gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.
    format str
    Image format. Valid values: jpg, png.
    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, false. 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.
    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.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    definition String
    Unique ID filter of snapshot by time offset 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. white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks. gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.
    format String
    Image format. Valid values: jpg, png.
    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, false. 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.
    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