tencentcloud 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack
tencentcloud.getVodSuperPlayerConfigs
Explore with Pulumi AI
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.
- 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
- Config type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- Id string
- Name string
- Name of super player config.
- 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
- Config type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id String
- name String
- Name of super player config.
- 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
- Config type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id string
- name string
- Name of super player config.
- 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
- Config type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id str
- name str
- Name of super player config.
- 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
- Config type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id String
- name String
- Name of super player config.
- 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
- Config type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
getVodSuperPlayerConfigs Result
The following output properties are available:
- Config
Lists List<GetVod Super Player Configs Config List> - A list of super player configs. Each element contains the following attributes:
- Id string
- Name string
- Display name.
- Result
Output stringFile - Sub
App doubleId - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- Config
Lists []GetVod Super Player Configs Config List - A list of super player configs. Each element contains the following attributes:
- Id string
- Name string
- Display name.
- Result
Output stringFile - Sub
App float64Id - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- config
Lists List<GetVod Super Player Configs Config List> - A list of super player configs. Each element contains the following attributes:
- id String
- name String
- Display name.
- result
Output StringFile - sub
App DoubleId - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- config
Lists GetVod Super Player Configs Config List[] - A list of super player configs. Each element contains the following attributes:
- id string
- name string
- Display name.
- result
Output stringFile - sub
App numberId - type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- config_
lists Sequence[GetVod Super Player Configs Config List] - A list of super player configs. Each element contains the following attributes:
- id str
- name str
- Display name.
- result_
output_ strfile - sub_
app_ floatid - type str
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- config
Lists List<Property Map> - A list of super player configs. Each element contains the following attributes:
- id String
- name String
- Display name.
- result
Output StringFile - sub
App NumberId - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
Supporting Types
GetVodSuperPlayerConfigsConfigList
- Adaptive
Dynamic stringStreaming Definition - ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if
drm_switch
isfalse
. - Comment string
- Template description.
- Create
Time 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. - Drm
Streaming List<GetInfos Vod Super Player Configs Config List Drm Streaming Info> - Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if
drm_switch
istrue
. - 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 stringDefinition - ID of the image sprite template that allows output.
- Name string
- Name of super player config.
- Resolution
Names List<GetVod Super Player Configs Config List Resolution Name> - 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. - Update
Time string - Last modified time of template in ISO date format.
- Adaptive
Dynamic stringStreaming Definition - ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if
drm_switch
isfalse
. - Comment string
- Template description.
- Create
Time 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. - Drm
Streaming []GetInfos Vod Super Player Configs Config List Drm Streaming Info - Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if
drm_switch
istrue
. - 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 stringDefinition - ID of the image sprite template that allows output.
- Name string
- Name of super player config.
- Resolution
Names []GetVod Super Player Configs Config List Resolution Name - 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. - Update
Time string - Last modified time of template in ISO date format.
- adaptive
Dynamic StringStreaming Definition - ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if
drm_switch
isfalse
. - comment String
- Template description.
- create
Time 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. - drm
Streaming List<GetInfos Vod Super Player Configs Config List Drm Streaming Info> - Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if
drm_switch
istrue
. - drm
Switch 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. - image
Sprite StringDefinition - ID of the image sprite template that allows output.
- name String
- Name of super player config.
- resolution
Names List<GetVod Super Player Configs Config List Resolution Name> - 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. - update
Time String - Last modified time of template in ISO date format.
- adaptive
Dynamic stringStreaming Definition - ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if
drm_switch
isfalse
. - comment string
- Template description.
- create
Time 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. - drm
Streaming GetInfos Vod Super Player Configs Config List Drm Streaming Info[] - Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if
drm_switch
istrue
. - drm
Switch 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. - image
Sprite stringDefinition - ID of the image sprite template that allows output.
- name string
- Name of super player config.
- resolution
Names GetVod Super Player Configs Config List Resolution Name[] - 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. - update
Time string - Last modified time of template in ISO date format.
- adaptive_
dynamic_ strstreaming_ definition - ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if
drm_switch
isfalse
. - 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_ Sequence[Getinfos Vod Super Player Configs Config List Drm Streaming Info] - Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if
drm_switch
istrue
. - 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_ strdefinition - ID of the image sprite template that allows output.
- name str
- Name of super player config.
- resolution_
names Sequence[GetVod Super Player Configs Config List Resolution Name] - 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.
- adaptive
Dynamic StringStreaming Definition - ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if
drm_switch
isfalse
. - comment String
- Template description.
- create
Time 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. - drm
Streaming List<Property Map>Infos - Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if
drm_switch
istrue
. - drm
Switch 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. - image
Sprite StringDefinition - ID of the image sprite template that allows output.
- name String
- Name of super player config.
- resolution
Names 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. - update
Time String - Last modified time of template in ISO date format.
GetVodSuperPlayerConfigsConfigListDrmStreamingInfo
- Simple
Aes stringDefinition - ID of the adaptive dynamic streaming template whose protection type is
SimpleAES
.
- Simple
Aes stringDefinition - ID of the adaptive dynamic streaming template whose protection type is
SimpleAES
.
- simple
Aes StringDefinition - ID of the adaptive dynamic streaming template whose protection type is
SimpleAES
.
- simple
Aes stringDefinition - ID of the adaptive dynamic streaming template whose protection type is
SimpleAES
.
- simple_
aes_ strdefinition - ID of the adaptive dynamic streaming template whose protection type is
SimpleAES
.
- simple
Aes StringDefinition - ID of the adaptive dynamic streaming template whose protection type is
SimpleAES
.
GetVodSuperPlayerConfigsConfigListResolutionName
- Min
Edge doubleLength - Length of video short side in px.
- Name string
- Name of super player config.
- Min
Edge float64Length - Length of video short side in px.
- Name string
- Name of super player config.
- min
Edge DoubleLength - Length of video short side in px.
- name String
- Name of super player config.
- min
Edge numberLength - Length of video short side in px.
- name string
- Name of super player config.
- min_
edge_ floatlength - Length of video short side in px.
- name str
- Name of super player config.
- min
Edge NumberLength - 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 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack