tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getVodSnapshotByTimeOffsetTemplates
Explore with Pulumi AI
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
- Result
Output stringFile - Used to save results.
- Sub
App doubleId - 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
- Result
Output stringFile - Used to save results.
- Sub
App float64Id - 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
- result
Output StringFile - Used to save results.
- sub
App DoubleId - 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
- result
Output stringFile - Used to save results.
- sub
App numberId - 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_ strfile - Used to save results.
- sub_
app_ floatid - 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
- result
Output StringFile - Used to save results.
- sub
App NumberId - 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
- Template
Lists List<GetVod Snapshot By Time Offset Templates Template List> - A list of snapshot by time offset templates. Each element contains the following attributes:
- Definition string
- Unique ID of snapshot by time offset template.
- Result
Output stringFile - Sub
App doubleId - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- Id string
- Template
Lists []GetVod Snapshot By Time Offset Templates Template List - A list of snapshot by time offset templates. Each element contains the following attributes:
- Definition string
- Unique ID of snapshot by time offset template.
- Result
Output stringFile - Sub
App float64Id - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id String
- template
Lists List<GetVod Snapshot By Time Offset Templates Template List> - A list of snapshot by time offset templates. Each element contains the following attributes:
- definition String
- Unique ID of snapshot by time offset template.
- result
Output StringFile - sub
App DoubleId - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id string
- template
Lists GetVod Snapshot By Time Offset Templates Template List[] - A list of snapshot by time offset templates. Each element contains the following attributes:
- definition string
- Unique ID of snapshot by time offset template.
- result
Output stringFile - sub
App numberId - type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id str
- template_
lists Sequence[GetVod Snapshot By Time Offset Templates Template List] - 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_ strfile - sub_
app_ floatid - type str
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id String
- template
Lists 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.
- result
Output StringFile - sub
App NumberId - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
Supporting Types
GetVodSnapshotByTimeOffsetTemplatesTemplateList
- Comment string
- Template description.
- Create
Time string - Creation time of template in ISO date format.
- Definition string
- Unique ID filter of snapshot by time offset template.
- Fill
Type 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 screenshotshorter
orlonger
;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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
,width
will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used. - Name string
- 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, whileheight
the short side;false
: disabled. In this case,width
represents the width of a video, whileheight
the height. - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template. - Update
Time 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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
, width will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used.
- Comment string
- Template description.
- Create
Time string - Creation time of template in ISO date format.
- Definition string
- Unique ID filter of snapshot by time offset template.
- Fill
Type 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 screenshotshorter
orlonger
;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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
,width
will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used. - Name string
- 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, whileheight
the short side;false
: disabled. In this case,width
represents the width of a video, whileheight
the height. - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template. - Update
Time 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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
, width will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used.
- comment String
- Template description.
- create
Time String - Creation time of template in ISO date format.
- definition String
- Unique ID filter of snapshot by time offset template.
- fill
Type 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 screenshotshorter
orlonger
;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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
,width
will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used. - name String
- Name of a time point screen capturing template.
- resolution
Adaptive Boolean - Resolution adaption. Valid values:
true
,false
.true
: enabled. In this case,width
represents the long side of a video, whileheight
the short side;false
: disabled. In this case,width
represents the width of a video, whileheight
the height. - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template. - update
Time 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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
, width will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used.
- comment string
- Template description.
- create
Time string - Creation time of template in ISO date format.
- definition string
- Unique ID filter of snapshot by time offset template.
- fill
Type 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 screenshotshorter
orlonger
;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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
,width
will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used. - name string
- Name of a time point screen capturing template.
- resolution
Adaptive boolean - Resolution adaption. Valid values:
true
,false
.true
: enabled. In this case,width
represents the long side of a video, whileheight
the short side;false
: disabled. In this case,width
represents the width of a video, whileheight
the height. - type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template. - update
Time 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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
, width will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, 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 screenshotshorter
orlonger
;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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
,width
will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, 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, whileheight
the short side;false
: disabled. In this case,width
represents the width of a video, whileheight
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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
, width will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used.
- comment String
- Template description.
- create
Time String - Creation time of template in ISO date format.
- definition String
- Unique ID filter of snapshot by time offset template.
- fill
Type 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 screenshotshorter
orlonger
;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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
,width
will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, the custom resolution will be used. - name String
- Name of a time point screen capturing template.
- resolution
Adaptive Boolean - Resolution adaption. Valid values:
true
,false
.true
: enabled. In this case,width
represents the long side of a video, whileheight
the short side;false
: disabled. In this case,width
represents the width of a video, whileheight
the height. - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template. - update
Time 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 bothwidth
andheight
are0
, the resolution will be the same as that of the source video; Ifwidth
is0
, butheight
is not0
, width will be proportionally scaled; Ifwidth
is not0
, butheight
is0
,height
will be proportionally scaled; If bothwidth
andheight
are not0
, 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 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack