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

tencentcloud.MdlStreamLiveInput

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a mdl streamlive_input

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const streamLiveInput = new tencentcloud.MdlStreamLiveInput("streamLiveInput", {
        securityGroupIds: ["6405DF9D000007DFB4EC"],
        type: "RTP_PUSH",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    stream_live_input = tencentcloud.MdlStreamLiveInput("streamLiveInput",
        security_group_ids=["6405DF9D000007DFB4EC"],
        type="RTP_PUSH")
    
    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.NewMdlStreamLiveInput(ctx, "streamLiveInput", &tencentcloud.MdlStreamLiveInputArgs{
    			SecurityGroupIds: pulumi.StringArray{
    				pulumi.String("6405DF9D000007DFB4EC"),
    			},
    			Type: pulumi.String("RTP_PUSH"),
    		})
    		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 streamLiveInput = new Tencentcloud.MdlStreamLiveInput("streamLiveInput", new()
        {
            SecurityGroupIds = new[]
            {
                "6405DF9D000007DFB4EC",
            },
            Type = "RTP_PUSH",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.MdlStreamLiveInput;
    import com.pulumi.tencentcloud.MdlStreamLiveInputArgs;
    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 streamLiveInput = new MdlStreamLiveInput("streamLiveInput", MdlStreamLiveInputArgs.builder()
                .securityGroupIds("6405DF9D000007DFB4EC")
                .type("RTP_PUSH")
                .build());
    
        }
    }
    
    resources:
      streamLiveInput:
        type: tencentcloud:MdlStreamLiveInput
        properties:
          securityGroupIds:
            - 6405DF9D000007DFB4EC
          type: RTP_PUSH
    

    Create MdlStreamLiveInput Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MdlStreamLiveInput(name: string, args: MdlStreamLiveInputArgs, opts?: CustomResourceOptions);
    @overload
    def MdlStreamLiveInput(resource_name: str,
                           args: MdlStreamLiveInputArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def MdlStreamLiveInput(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           type: Optional[str] = None,
                           input_settings: Optional[Sequence[MdlStreamLiveInputInputSettingArgs]] = None,
                           mdl_stream_live_input_id: Optional[str] = None,
                           name: Optional[str] = None,
                           security_group_ids: Optional[Sequence[str]] = None)
    func NewMdlStreamLiveInput(ctx *Context, name string, args MdlStreamLiveInputArgs, opts ...ResourceOption) (*MdlStreamLiveInput, error)
    public MdlStreamLiveInput(string name, MdlStreamLiveInputArgs args, CustomResourceOptions? opts = null)
    public MdlStreamLiveInput(String name, MdlStreamLiveInputArgs args)
    public MdlStreamLiveInput(String name, MdlStreamLiveInputArgs args, CustomResourceOptions options)
    
    type: tencentcloud:MdlStreamLiveInput
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MdlStreamLiveInputArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MdlStreamLiveInputArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MdlStreamLiveInputArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MdlStreamLiveInputArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MdlStreamLiveInputArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    MdlStreamLiveInput Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MdlStreamLiveInput resource accepts the following input properties:

    Type string
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    InputSettings List<MdlStreamLiveInputInputSetting>
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    MdlStreamLiveInputId string
    ID of the resource.
    Name string
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    SecurityGroupIds List<string>
    ID of the input security group to attachYou can attach only one security group to an input.
    Type string
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    InputSettings []MdlStreamLiveInputInputSettingArgs
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    MdlStreamLiveInputId string
    ID of the resource.
    Name string
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    SecurityGroupIds []string
    ID of the input security group to attachYou can attach only one security group to an input.
    type String
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    inputSettings List<MdlStreamLiveInputInputSetting>
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdlStreamLiveInputId String
    ID of the resource.
    name String
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    securityGroupIds List<String>
    ID of the input security group to attachYou can attach only one security group to an input.
    type string
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    inputSettings MdlStreamLiveInputInputSetting[]
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdlStreamLiveInputId string
    ID of the resource.
    name string
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    securityGroupIds string[]
    ID of the input security group to attachYou can attach only one security group to an input.
    type str
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    input_settings Sequence[MdlStreamLiveInputInputSettingArgs]
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdl_stream_live_input_id str
    ID of the resource.
    name str
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    security_group_ids Sequence[str]
    ID of the input security group to attachYou can attach only one security group to an input.
    type String
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    inputSettings List<Property Map>
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdlStreamLiveInputId String
    ID of the resource.
    name String
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    securityGroupIds List<String>
    ID of the input security group to attachYou can attach only one security group to an input.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MdlStreamLiveInput resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing MdlStreamLiveInput Resource

    Get an existing MdlStreamLiveInput resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MdlStreamLiveInputState, opts?: CustomResourceOptions): MdlStreamLiveInput
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            input_settings: Optional[Sequence[MdlStreamLiveInputInputSettingArgs]] = None,
            mdl_stream_live_input_id: Optional[str] = None,
            name: Optional[str] = None,
            security_group_ids: Optional[Sequence[str]] = None,
            type: Optional[str] = None) -> MdlStreamLiveInput
    func GetMdlStreamLiveInput(ctx *Context, name string, id IDInput, state *MdlStreamLiveInputState, opts ...ResourceOption) (*MdlStreamLiveInput, error)
    public static MdlStreamLiveInput Get(string name, Input<string> id, MdlStreamLiveInputState? state, CustomResourceOptions? opts = null)
    public static MdlStreamLiveInput get(String name, Output<String> id, MdlStreamLiveInputState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:MdlStreamLiveInput    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    InputSettings List<MdlStreamLiveInputInputSetting>
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    MdlStreamLiveInputId string
    ID of the resource.
    Name string
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    SecurityGroupIds List<string>
    ID of the input security group to attachYou can attach only one security group to an input.
    Type string
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    InputSettings []MdlStreamLiveInputInputSettingArgs
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    MdlStreamLiveInputId string
    ID of the resource.
    Name string
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    SecurityGroupIds []string
    ID of the input security group to attachYou can attach only one security group to an input.
    Type string
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    inputSettings List<MdlStreamLiveInputInputSetting>
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdlStreamLiveInputId String
    ID of the resource.
    name String
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    securityGroupIds List<String>
    ID of the input security group to attachYou can attach only one security group to an input.
    type String
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    inputSettings MdlStreamLiveInputInputSetting[]
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdlStreamLiveInputId string
    ID of the resource.
    name string
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    securityGroupIds string[]
    ID of the input security group to attachYou can attach only one security group to an input.
    type string
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    input_settings Sequence[MdlStreamLiveInputInputSettingArgs]
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdl_stream_live_input_id str
    ID of the resource.
    name str
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    security_group_ids Sequence[str]
    ID of the input security group to attachYou can attach only one security group to an input.
    type str
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.
    inputSettings List<Property Map>
    Input settings. For the type RTMP_PUSH, RTMP_PULL, HLS_PULL, or MP4_PULL, 1 or 2 inputs of the corresponding type can be configured.
    mdlStreamLiveInputId String
    ID of the resource.
    name String
    Input name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level.
    securityGroupIds List<String>
    ID of the input security group to attachYou can attach only one security group to an input.
    type String
    Input typeValid values: RTMP_PUSH, RTP_PUSH, UDP_PUSH, RTMP_PULL, HLS_PULL, MP4_PULL.

    Supporting Types

    MdlStreamLiveInputInputSetting, MdlStreamLiveInputInputSettingArgs

    AppName string
    Application name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    DelayTime double
    Delayed time (ms) for playback, which is valid if Type is RTMP_PUSHValue range: 0 (default) or 10000-600000The value must be a multiple of 1,000.Note: This field may return null, indicating that no valid value was found.
    InputAddress string
    RTP/UDP input address, which does not need to be entered for the input parameter.Note: this field may return null, indicating that no valid values can be obtained.
    InputDomain string
    The domain of an SRT_PUSH address. If this is a request parameter, you do not need to specify it.Note: This field may return null, indicating that no valid value was found.
    Password string
    The password, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    SourceType string
    Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to TencentCOS; otherwise, leave it empty.Note: this field may return null, indicating that no valid value was found.
    SourceUrl string
    Source URL, which is valid if Type is RTMP_PULL, HLS_PULL, or MP4_PULL and can contain 1-512 charactersNote: This field may return null, indicating that no valid value was found.
    StreamName string
    Stream name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    UserName string
    The username, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    AppName string
    Application name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    DelayTime float64
    Delayed time (ms) for playback, which is valid if Type is RTMP_PUSHValue range: 0 (default) or 10000-600000The value must be a multiple of 1,000.Note: This field may return null, indicating that no valid value was found.
    InputAddress string
    RTP/UDP input address, which does not need to be entered for the input parameter.Note: this field may return null, indicating that no valid values can be obtained.
    InputDomain string
    The domain of an SRT_PUSH address. If this is a request parameter, you do not need to specify it.Note: This field may return null, indicating that no valid value was found.
    Password string
    The password, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    SourceType string
    Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to TencentCOS; otherwise, leave it empty.Note: this field may return null, indicating that no valid value was found.
    SourceUrl string
    Source URL, which is valid if Type is RTMP_PULL, HLS_PULL, or MP4_PULL and can contain 1-512 charactersNote: This field may return null, indicating that no valid value was found.
    StreamName string
    Stream name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    UserName string
    The username, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    appName String
    Application name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    delayTime Double
    Delayed time (ms) for playback, which is valid if Type is RTMP_PUSHValue range: 0 (default) or 10000-600000The value must be a multiple of 1,000.Note: This field may return null, indicating that no valid value was found.
    inputAddress String
    RTP/UDP input address, which does not need to be entered for the input parameter.Note: this field may return null, indicating that no valid values can be obtained.
    inputDomain String
    The domain of an SRT_PUSH address. If this is a request parameter, you do not need to specify it.Note: This field may return null, indicating that no valid value was found.
    password String
    The password, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    sourceType String
    Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to TencentCOS; otherwise, leave it empty.Note: this field may return null, indicating that no valid value was found.
    sourceUrl String
    Source URL, which is valid if Type is RTMP_PULL, HLS_PULL, or MP4_PULL and can contain 1-512 charactersNote: This field may return null, indicating that no valid value was found.
    streamName String
    Stream name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    userName String
    The username, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    appName string
    Application name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    delayTime number
    Delayed time (ms) for playback, which is valid if Type is RTMP_PUSHValue range: 0 (default) or 10000-600000The value must be a multiple of 1,000.Note: This field may return null, indicating that no valid value was found.
    inputAddress string
    RTP/UDP input address, which does not need to be entered for the input parameter.Note: this field may return null, indicating that no valid values can be obtained.
    inputDomain string
    The domain of an SRT_PUSH address. If this is a request parameter, you do not need to specify it.Note: This field may return null, indicating that no valid value was found.
    password string
    The password, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    sourceType string
    Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to TencentCOS; otherwise, leave it empty.Note: this field may return null, indicating that no valid value was found.
    sourceUrl string
    Source URL, which is valid if Type is RTMP_PULL, HLS_PULL, or MP4_PULL and can contain 1-512 charactersNote: This field may return null, indicating that no valid value was found.
    streamName string
    Stream name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    userName string
    The username, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    app_name str
    Application name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    delay_time float
    Delayed time (ms) for playback, which is valid if Type is RTMP_PUSHValue range: 0 (default) or 10000-600000The value must be a multiple of 1,000.Note: This field may return null, indicating that no valid value was found.
    input_address str
    RTP/UDP input address, which does not need to be entered for the input parameter.Note: this field may return null, indicating that no valid values can be obtained.
    input_domain str
    The domain of an SRT_PUSH address. If this is a request parameter, you do not need to specify it.Note: This field may return null, indicating that no valid value was found.
    password str
    The password, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    source_type str
    Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to TencentCOS; otherwise, leave it empty.Note: this field may return null, indicating that no valid value was found.
    source_url str
    Source URL, which is valid if Type is RTMP_PULL, HLS_PULL, or MP4_PULL and can contain 1-512 charactersNote: This field may return null, indicating that no valid value was found.
    stream_name str
    Stream name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    user_name str
    The username, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    appName String
    Application name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    delayTime Number
    Delayed time (ms) for playback, which is valid if Type is RTMP_PUSHValue range: 0 (default) or 10000-600000The value must be a multiple of 1,000.Note: This field may return null, indicating that no valid value was found.
    inputAddress String
    RTP/UDP input address, which does not need to be entered for the input parameter.Note: this field may return null, indicating that no valid values can be obtained.
    inputDomain String
    The domain of an SRT_PUSH address. If this is a request parameter, you do not need to specify it.Note: This field may return null, indicating that no valid value was found.
    password String
    The password, which is used for authentication.Note: This field may return null, indicating that no valid value was found.
    sourceType String
    Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to TencentCOS; otherwise, leave it empty.Note: this field may return null, indicating that no valid value was found.
    sourceUrl String
    Source URL, which is valid if Type is RTMP_PULL, HLS_PULL, or MP4_PULL and can contain 1-512 charactersNote: This field may return null, indicating that no valid value was found.
    streamName String
    Stream name, which is valid if Type is RTMP_PUSH and can contain 1-32 letters and digitsNote: This field may return null, indicating that no valid value was found.
    userName String
    The username, which is used for authentication.Note: This field may return null, indicating that no valid value was found.

    Import

    mdl stream_live_input can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/mdlStreamLiveInput:MdlStreamLiveInput stream_live_input id
    

    To learn more about importing existing cloud resources, see Importing resources.

    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