1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getVodSuperPlayerConfigs
tencentcloud 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack

tencentcloud.getVodSuperPlayerConfigs

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack

    Use this data source to query detailed information of VOD super player configs.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const fooVodSuperPlayerConfig = new tencentcloud.VodSuperPlayerConfig("fooVodSuperPlayerConfig", {
        drmSwitch: true,
        drmStreamingInfo: {
            simpleAesDefinition: tencentcloud_vod_adaptive_dynamic_streaming_template.foo.id,
        },
        imageSpriteDefinition: tencentcloud_vod_image_sprite_template.foo.id,
        resolutionNames: [
            {
                minEdgeLength: 889,
                name: "test1",
            },
            {
                minEdgeLength: 890,
                name: "test2",
            },
        ],
        domain: "Default",
        scheme: "Default",
        comment: "test",
    });
    const fooVodSuperPlayerConfigs = tencentcloud.getVodSuperPlayerConfigs({
        type: "Custom",
        name: "tf-super-player",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo_vod_super_player_config = tencentcloud.VodSuperPlayerConfig("fooVodSuperPlayerConfig",
        drm_switch=True,
        drm_streaming_info={
            "simple_aes_definition": tencentcloud_vod_adaptive_dynamic_streaming_template["foo"]["id"],
        },
        image_sprite_definition=tencentcloud_vod_image_sprite_template["foo"]["id"],
        resolution_names=[
            {
                "min_edge_length": 889,
                "name": "test1",
            },
            {
                "min_edge_length": 890,
                "name": "test2",
            },
        ],
        domain="Default",
        scheme="Default",
        comment="test")
    foo_vod_super_player_configs = tencentcloud.get_vod_super_player_configs(type="Custom",
        name="tf-super-player")
    
    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.NewVodSuperPlayerConfig(ctx, "fooVodSuperPlayerConfig", &tencentcloud.VodSuperPlayerConfigArgs{
    			DrmSwitch: pulumi.Bool(true),
    			DrmStreamingInfo: &tencentcloud.VodSuperPlayerConfigDrmStreamingInfoArgs{
    				SimpleAesDefinition: pulumi.Any(tencentcloud_vod_adaptive_dynamic_streaming_template.Foo.Id),
    			},
    			ImageSpriteDefinition: pulumi.Any(tencentcloud_vod_image_sprite_template.Foo.Id),
    			ResolutionNames: tencentcloud.VodSuperPlayerConfigResolutionNameArray{
    				&tencentcloud.VodSuperPlayerConfigResolutionNameArgs{
    					MinEdgeLength: pulumi.Float64(889),
    					Name:          pulumi.String("test1"),
    				},
    				&tencentcloud.VodSuperPlayerConfigResolutionNameArgs{
    					MinEdgeLength: pulumi.Float64(890),
    					Name:          pulumi.String("test2"),
    				},
    			},
    			Domain:  pulumi.String("Default"),
    			Scheme:  pulumi.String("Default"),
    			Comment: pulumi.String("test"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = tencentcloud.GetVodSuperPlayerConfigs(ctx, &tencentcloud.GetVodSuperPlayerConfigsArgs{
    			Type: pulumi.StringRef("Custom"),
    			Name: pulumi.StringRef("tf-super-player"),
    		}, 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 fooVodSuperPlayerConfig = new Tencentcloud.VodSuperPlayerConfig("fooVodSuperPlayerConfig", new()
        {
            DrmSwitch = true,
            DrmStreamingInfo = new Tencentcloud.Inputs.VodSuperPlayerConfigDrmStreamingInfoArgs
            {
                SimpleAesDefinition = tencentcloud_vod_adaptive_dynamic_streaming_template.Foo.Id,
            },
            ImageSpriteDefinition = tencentcloud_vod_image_sprite_template.Foo.Id,
            ResolutionNames = new[]
            {
                new Tencentcloud.Inputs.VodSuperPlayerConfigResolutionNameArgs
                {
                    MinEdgeLength = 889,
                    Name = "test1",
                },
                new Tencentcloud.Inputs.VodSuperPlayerConfigResolutionNameArgs
                {
                    MinEdgeLength = 890,
                    Name = "test2",
                },
            },
            Domain = "Default",
            Scheme = "Default",
            Comment = "test",
        });
    
        var fooVodSuperPlayerConfigs = Tencentcloud.GetVodSuperPlayerConfigs.Invoke(new()
        {
            Type = "Custom",
            Name = "tf-super-player",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.VodSuperPlayerConfig;
    import com.pulumi.tencentcloud.VodSuperPlayerConfigArgs;
    import com.pulumi.tencentcloud.inputs.VodSuperPlayerConfigDrmStreamingInfoArgs;
    import com.pulumi.tencentcloud.inputs.VodSuperPlayerConfigResolutionNameArgs;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetVodSuperPlayerConfigsArgs;
    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 fooVodSuperPlayerConfig = new VodSuperPlayerConfig("fooVodSuperPlayerConfig", VodSuperPlayerConfigArgs.builder()
                .drmSwitch(true)
                .drmStreamingInfo(VodSuperPlayerConfigDrmStreamingInfoArgs.builder()
                    .simpleAesDefinition(tencentcloud_vod_adaptive_dynamic_streaming_template.foo().id())
                    .build())
                .imageSpriteDefinition(tencentcloud_vod_image_sprite_template.foo().id())
                .resolutionNames(            
                    VodSuperPlayerConfigResolutionNameArgs.builder()
                        .minEdgeLength(889)
                        .name("test1")
                        .build(),
                    VodSuperPlayerConfigResolutionNameArgs.builder()
                        .minEdgeLength(890)
                        .name("test2")
                        .build())
                .domain("Default")
                .scheme("Default")
                .comment("test")
                .build());
    
            final var fooVodSuperPlayerConfigs = TencentcloudFunctions.getVodSuperPlayerConfigs(GetVodSuperPlayerConfigsArgs.builder()
                .type("Custom")
                .name("tf-super-player")
                .build());
    
        }
    }
    
    resources:
      fooVodSuperPlayerConfig:
        type: tencentcloud:VodSuperPlayerConfig
        properties:
          drmSwitch: true
          drmStreamingInfo:
            simpleAesDefinition: ${tencentcloud_vod_adaptive_dynamic_streaming_template.foo.id}
          imageSpriteDefinition: ${tencentcloud_vod_image_sprite_template.foo.id}
          resolutionNames:
            - minEdgeLength: 889
              name: test1
            - minEdgeLength: 890
              name: test2
          domain: Default
          scheme: Default
          comment: test
    variables:
      fooVodSuperPlayerConfigs:
        fn::invoke:
          function: tencentcloud:getVodSuperPlayerConfigs
          arguments:
            type: Custom
            name: tf-super-player
    

    Using getVodSuperPlayerConfigs

    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 getVodSuperPlayerConfigs(args: GetVodSuperPlayerConfigsArgs, opts?: InvokeOptions): Promise<GetVodSuperPlayerConfigsResult>
    function getVodSuperPlayerConfigsOutput(args: GetVodSuperPlayerConfigsOutputArgs, opts?: InvokeOptions): Output<GetVodSuperPlayerConfigsResult>
    def get_vod_super_player_configs(id: Optional[str] = None,
                                     name: Optional[str] = None,
                                     result_output_file: Optional[str] = None,
                                     sub_app_id: Optional[float] = None,
                                     type: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetVodSuperPlayerConfigsResult
    def get_vod_super_player_configs_output(id: Optional[pulumi.Input[str]] = None,
                                     name: 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[GetVodSuperPlayerConfigsResult]
    func GetVodSuperPlayerConfigs(ctx *Context, args *GetVodSuperPlayerConfigsArgs, opts ...InvokeOption) (*GetVodSuperPlayerConfigsResult, error)
    func GetVodSuperPlayerConfigsOutput(ctx *Context, args *GetVodSuperPlayerConfigsOutputArgs, opts ...InvokeOption) GetVodSuperPlayerConfigsResultOutput

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

    public static class GetVodSuperPlayerConfigs 
    {
        public static Task<GetVodSuperPlayerConfigsResult> InvokeAsync(GetVodSuperPlayerConfigsArgs args, InvokeOptions? opts = null)
        public static Output<GetVodSuperPlayerConfigsResult> Invoke(GetVodSuperPlayerConfigsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVodSuperPlayerConfigsResult> getVodSuperPlayerConfigs(GetVodSuperPlayerConfigsArgs args, InvokeOptions options)
    public static Output<GetVodSuperPlayerConfigsResult> getVodSuperPlayerConfigs(GetVodSuperPlayerConfigsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getVodSuperPlayerConfigs:getVodSuperPlayerConfigs
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Name of super player config.
    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
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    Id string
    Name string
    Name of super player config.
    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
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    name String
    Name of super player config.
    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
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id string
    name string
    Name of super player config.
    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
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id str
    name str
    Name of super player config.
    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
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    name String
    Name of super player config.
    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
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    getVodSuperPlayerConfigs Result

    The following output properties are available:

    ConfigLists List<GetVodSuperPlayerConfigsConfigList>
    A list of super player configs. Each element contains the following attributes:
    Id string
    Name string
    Display name.
    ResultOutputFile string
    SubAppId double
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    ConfigLists []GetVodSuperPlayerConfigsConfigList
    A list of super player configs. Each element contains the following attributes:
    Id string
    Name string
    Display name.
    ResultOutputFile string
    SubAppId float64
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    configLists List<GetVodSuperPlayerConfigsConfigList>
    A list of super player configs. Each element contains the following attributes:
    id String
    name String
    Display name.
    resultOutputFile String
    subAppId Double
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    configLists GetVodSuperPlayerConfigsConfigList[]
    A list of super player configs. Each element contains the following attributes:
    id string
    name string
    Display name.
    resultOutputFile string
    subAppId number
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    config_lists Sequence[GetVodSuperPlayerConfigsConfigList]
    A list of super player configs. Each element contains the following attributes:
    id str
    name str
    Display name.
    result_output_file str
    sub_app_id float
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    configLists List<Property Map>
    A list of super player configs. Each element contains the following attributes:
    id String
    name String
    Display name.
    resultOutputFile String
    subAppId Number
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    Supporting Types

    GetVodSuperPlayerConfigsConfigList

    AdaptiveDynamicStreamingDefinition string
    ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if drm_switch is false.
    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    Domain string
    Domain name used for playback. If it is left empty or set to Default, the domain name configured in Default Distribution Configuration will be used.
    DrmStreamingInfos List<GetVodSuperPlayerConfigsConfigListDrmStreamingInfo>
    Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if drm_switch is true.
    DrmSwitch bool
    Switch of DRM-protected adaptive bitstream playback: true: enabled, indicating to play back only output adaptive bitstreams protected by DRM; false: disabled, indicating to play back unencrypted output adaptive bitstreams.
    ImageSpriteDefinition string
    ID of the image sprite template that allows output.
    Name string
    Name of super player config.
    ResolutionNames List<GetVodSuperPlayerConfigsConfigListResolutionName>
    Display name of player for substreams with different resolutions. If this parameter is left empty or an empty array, the default configuration will be used: min_edge_length: 240, name: LD; min_edge_length: 480, name: SD; min_edge_length: 720, name: HD; min_edge_length: 1080, name: FHD; min_edge_length: 1440, name: 2K; min_edge_length: 2160, name: 4K; min_edge_length: 4320, name: 8K.
    Scheme string
    Scheme used for playback. If it is left empty or set to Default, the scheme configured in Default Distribution Configuration will be used. Other valid values: HTTP; HTTPS.
    Type string
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    UpdateTime string
    Last modified time of template in ISO date format.
    AdaptiveDynamicStreamingDefinition string
    ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if drm_switch is false.
    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    Domain string
    Domain name used for playback. If it is left empty or set to Default, the domain name configured in Default Distribution Configuration will be used.
    DrmStreamingInfos []GetVodSuperPlayerConfigsConfigListDrmStreamingInfo
    Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if drm_switch is true.
    DrmSwitch bool
    Switch of DRM-protected adaptive bitstream playback: true: enabled, indicating to play back only output adaptive bitstreams protected by DRM; false: disabled, indicating to play back unencrypted output adaptive bitstreams.
    ImageSpriteDefinition string
    ID of the image sprite template that allows output.
    Name string
    Name of super player config.
    ResolutionNames []GetVodSuperPlayerConfigsConfigListResolutionName
    Display name of player for substreams with different resolutions. If this parameter is left empty or an empty array, the default configuration will be used: min_edge_length: 240, name: LD; min_edge_length: 480, name: SD; min_edge_length: 720, name: HD; min_edge_length: 1080, name: FHD; min_edge_length: 1440, name: 2K; min_edge_length: 2160, name: 4K; min_edge_length: 4320, name: 8K.
    Scheme string
    Scheme used for playback. If it is left empty or set to Default, the scheme configured in Default Distribution Configuration will be used. Other valid values: HTTP; HTTPS.
    Type string
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    UpdateTime string
    Last modified time of template in ISO date format.
    adaptiveDynamicStreamingDefinition String
    ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if drm_switch is false.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    domain String
    Domain name used for playback. If it is left empty or set to Default, the domain name configured in Default Distribution Configuration will be used.
    drmStreamingInfos List<GetVodSuperPlayerConfigsConfigListDrmStreamingInfo>
    Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if drm_switch is true.
    drmSwitch Boolean
    Switch of DRM-protected adaptive bitstream playback: true: enabled, indicating to play back only output adaptive bitstreams protected by DRM; false: disabled, indicating to play back unencrypted output adaptive bitstreams.
    imageSpriteDefinition String
    ID of the image sprite template that allows output.
    name String
    Name of super player config.
    resolutionNames List<GetVodSuperPlayerConfigsConfigListResolutionName>
    Display name of player for substreams with different resolutions. If this parameter is left empty or an empty array, the default configuration will be used: min_edge_length: 240, name: LD; min_edge_length: 480, name: SD; min_edge_length: 720, name: HD; min_edge_length: 1080, name: FHD; min_edge_length: 1440, name: 2K; min_edge_length: 2160, name: 4K; min_edge_length: 4320, name: 8K.
    scheme String
    Scheme used for playback. If it is left empty or set to Default, the scheme configured in Default Distribution Configuration will be used. Other valid values: HTTP; HTTPS.
    type String
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime String
    Last modified time of template in ISO date format.
    adaptiveDynamicStreamingDefinition string
    ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if drm_switch is false.
    comment string
    Template description.
    createTime string
    Creation time of template in ISO date format.
    domain string
    Domain name used for playback. If it is left empty or set to Default, the domain name configured in Default Distribution Configuration will be used.
    drmStreamingInfos GetVodSuperPlayerConfigsConfigListDrmStreamingInfo[]
    Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if drm_switch is true.
    drmSwitch boolean
    Switch of DRM-protected adaptive bitstream playback: true: enabled, indicating to play back only output adaptive bitstreams protected by DRM; false: disabled, indicating to play back unencrypted output adaptive bitstreams.
    imageSpriteDefinition string
    ID of the image sprite template that allows output.
    name string
    Name of super player config.
    resolutionNames GetVodSuperPlayerConfigsConfigListResolutionName[]
    Display name of player for substreams with different resolutions. If this parameter is left empty or an empty array, the default configuration will be used: min_edge_length: 240, name: LD; min_edge_length: 480, name: SD; min_edge_length: 720, name: HD; min_edge_length: 1080, name: FHD; min_edge_length: 1440, name: 2K; min_edge_length: 2160, name: 4K; min_edge_length: 4320, name: 8K.
    scheme string
    Scheme used for playback. If it is left empty or set to Default, the scheme configured in Default Distribution Configuration will be used. Other valid values: HTTP; HTTPS.
    type string
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime string
    Last modified time of template in ISO date format.
    adaptive_dynamic_streaming_definition str
    ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if drm_switch is false.
    comment str
    Template description.
    create_time str
    Creation time of template in ISO date format.
    domain str
    Domain name used for playback. If it is left empty or set to Default, the domain name configured in Default Distribution Configuration will be used.
    drm_streaming_infos Sequence[GetVodSuperPlayerConfigsConfigListDrmStreamingInfo]
    Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if drm_switch is true.
    drm_switch bool
    Switch of DRM-protected adaptive bitstream playback: true: enabled, indicating to play back only output adaptive bitstreams protected by DRM; false: disabled, indicating to play back unencrypted output adaptive bitstreams.
    image_sprite_definition str
    ID of the image sprite template that allows output.
    name str
    Name of super player config.
    resolution_names Sequence[GetVodSuperPlayerConfigsConfigListResolutionName]
    Display name of player for substreams with different resolutions. If this parameter is left empty or an empty array, the default configuration will be used: min_edge_length: 240, name: LD; min_edge_length: 480, name: SD; min_edge_length: 720, name: HD; min_edge_length: 1080, name: FHD; min_edge_length: 1440, name: 2K; min_edge_length: 2160, name: 4K; min_edge_length: 4320, name: 8K.
    scheme str
    Scheme used for playback. If it is left empty or set to Default, the scheme configured in Default Distribution Configuration will be used. Other valid values: HTTP; HTTPS.
    type str
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    update_time str
    Last modified time of template in ISO date format.
    adaptiveDynamicStreamingDefinition String
    ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if drm_switch is false.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    domain String
    Domain name used for playback. If it is left empty or set to Default, the domain name configured in Default Distribution Configuration will be used.
    drmStreamingInfos List<Property Map>
    Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if drm_switch is true.
    drmSwitch Boolean
    Switch of DRM-protected adaptive bitstream playback: true: enabled, indicating to play back only output adaptive bitstreams protected by DRM; false: disabled, indicating to play back unencrypted output adaptive bitstreams.
    imageSpriteDefinition String
    ID of the image sprite template that allows output.
    name String
    Name of super player config.
    resolutionNames List<Property Map>
    Display name of player for substreams with different resolutions. If this parameter is left empty or an empty array, the default configuration will be used: min_edge_length: 240, name: LD; min_edge_length: 480, name: SD; min_edge_length: 720, name: HD; min_edge_length: 1080, name: FHD; min_edge_length: 1440, name: 2K; min_edge_length: 2160, name: 4K; min_edge_length: 4320, name: 8K.
    scheme String
    Scheme used for playback. If it is left empty or set to Default, the scheme configured in Default Distribution Configuration will be used. Other valid values: HTTP; HTTPS.
    type String
    Config type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime String
    Last modified time of template in ISO date format.

    GetVodSuperPlayerConfigsConfigListDrmStreamingInfo

    SimpleAesDefinition string
    ID of the adaptive dynamic streaming template whose protection type is SimpleAES.
    SimpleAesDefinition string
    ID of the adaptive dynamic streaming template whose protection type is SimpleAES.
    simpleAesDefinition String
    ID of the adaptive dynamic streaming template whose protection type is SimpleAES.
    simpleAesDefinition string
    ID of the adaptive dynamic streaming template whose protection type is SimpleAES.
    simple_aes_definition str
    ID of the adaptive dynamic streaming template whose protection type is SimpleAES.
    simpleAesDefinition String
    ID of the adaptive dynamic streaming template whose protection type is SimpleAES.

    GetVodSuperPlayerConfigsConfigListResolutionName

    MinEdgeLength double
    Length of video short side in px.
    Name string
    Name of super player config.
    MinEdgeLength float64
    Length of video short side in px.
    Name string
    Name of super player config.
    minEdgeLength Double
    Length of video short side in px.
    name String
    Name of super player config.
    minEdgeLength number
    Length of video short side in px.
    name string
    Name of super player config.
    min_edge_length float
    Length of video short side in px.
    name str
    Name of super player config.
    minEdgeLength Number
    Length of video short side in px.
    name String
    Name of super player config.

    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.186 published on Thursday, Apr 24, 2025 by tencentcloudstack