tencentcloud.CssStreamMonitor
Explore with Pulumi AI
Provides a resource to create a css stream_monitor
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const streamMonitor = new tencentcloud.CssStreamMonitor("streamMonitor", {
aiAsrInputIndexLists: [1],
aiFormatDiagnose: 1,
aiOcrInputIndexLists: [1],
allowMonitorReport: 1,
asrLanguage: 1,
checkStreamBroken: 1,
checkStreamLowFrameRate: 1,
inputLists: [{
inputApp: "live",
inputDomain: "177154.push.tlivecloud.com",
inputStreamName: "ppp",
}],
monitorName: "test",
notifyPolicy: {
callbackUrl: "http://example.com/test",
notifyPolicyType: 1,
},
ocrLanguage: 1,
outputInfo: {
outputDomain: "test122.jingxhu.top",
outputStreamHeight: 1080,
outputStreamName: "afc7847d-1fe1-43bc-b1e4-20d86303c393",
outputStreamWidth: 1920,
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
stream_monitor = tencentcloud.CssStreamMonitor("streamMonitor",
ai_asr_input_index_lists=[1],
ai_format_diagnose=1,
ai_ocr_input_index_lists=[1],
allow_monitor_report=1,
asr_language=1,
check_stream_broken=1,
check_stream_low_frame_rate=1,
input_lists=[{
"input_app": "live",
"input_domain": "177154.push.tlivecloud.com",
"input_stream_name": "ppp",
}],
monitor_name="test",
notify_policy={
"callback_url": "http://example.com/test",
"notify_policy_type": 1,
},
ocr_language=1,
output_info={
"output_domain": "test122.jingxhu.top",
"output_stream_height": 1080,
"output_stream_name": "afc7847d-1fe1-43bc-b1e4-20d86303c393",
"output_stream_width": 1920,
})
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.NewCssStreamMonitor(ctx, "streamMonitor", &tencentcloud.CssStreamMonitorArgs{
AiAsrInputIndexLists: pulumi.Float64Array{
pulumi.Float64(1),
},
AiFormatDiagnose: pulumi.Float64(1),
AiOcrInputIndexLists: pulumi.Float64Array{
pulumi.Float64(1),
},
AllowMonitorReport: pulumi.Float64(1),
AsrLanguage: pulumi.Float64(1),
CheckStreamBroken: pulumi.Float64(1),
CheckStreamLowFrameRate: pulumi.Float64(1),
InputLists: tencentcloud.CssStreamMonitorInputListArray{
&tencentcloud.CssStreamMonitorInputListArgs{
InputApp: pulumi.String("live"),
InputDomain: pulumi.String("177154.push.tlivecloud.com"),
InputStreamName: pulumi.String("ppp"),
},
},
MonitorName: pulumi.String("test"),
NotifyPolicy: &tencentcloud.CssStreamMonitorNotifyPolicyArgs{
CallbackUrl: pulumi.String("http://example.com/test"),
NotifyPolicyType: pulumi.Float64(1),
},
OcrLanguage: pulumi.Float64(1),
OutputInfo: &tencentcloud.CssStreamMonitorOutputInfoArgs{
OutputDomain: pulumi.String("test122.jingxhu.top"),
OutputStreamHeight: pulumi.Float64(1080),
OutputStreamName: pulumi.String("afc7847d-1fe1-43bc-b1e4-20d86303c393"),
OutputStreamWidth: pulumi.Float64(1920),
},
})
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 streamMonitor = new Tencentcloud.CssStreamMonitor("streamMonitor", new()
{
AiAsrInputIndexLists = new[]
{
1,
},
AiFormatDiagnose = 1,
AiOcrInputIndexLists = new[]
{
1,
},
AllowMonitorReport = 1,
AsrLanguage = 1,
CheckStreamBroken = 1,
CheckStreamLowFrameRate = 1,
InputLists = new[]
{
new Tencentcloud.Inputs.CssStreamMonitorInputListArgs
{
InputApp = "live",
InputDomain = "177154.push.tlivecloud.com",
InputStreamName = "ppp",
},
},
MonitorName = "test",
NotifyPolicy = new Tencentcloud.Inputs.CssStreamMonitorNotifyPolicyArgs
{
CallbackUrl = "http://example.com/test",
NotifyPolicyType = 1,
},
OcrLanguage = 1,
OutputInfo = new Tencentcloud.Inputs.CssStreamMonitorOutputInfoArgs
{
OutputDomain = "test122.jingxhu.top",
OutputStreamHeight = 1080,
OutputStreamName = "afc7847d-1fe1-43bc-b1e4-20d86303c393",
OutputStreamWidth = 1920,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.CssStreamMonitor;
import com.pulumi.tencentcloud.CssStreamMonitorArgs;
import com.pulumi.tencentcloud.inputs.CssStreamMonitorInputListArgs;
import com.pulumi.tencentcloud.inputs.CssStreamMonitorNotifyPolicyArgs;
import com.pulumi.tencentcloud.inputs.CssStreamMonitorOutputInfoArgs;
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 streamMonitor = new CssStreamMonitor("streamMonitor", CssStreamMonitorArgs.builder()
.aiAsrInputIndexLists(1)
.aiFormatDiagnose(1)
.aiOcrInputIndexLists(1)
.allowMonitorReport(1)
.asrLanguage(1)
.checkStreamBroken(1)
.checkStreamLowFrameRate(1)
.inputLists(CssStreamMonitorInputListArgs.builder()
.inputApp("live")
.inputDomain("177154.push.tlivecloud.com")
.inputStreamName("ppp")
.build())
.monitorName("test")
.notifyPolicy(CssStreamMonitorNotifyPolicyArgs.builder()
.callbackUrl("http://example.com/test")
.notifyPolicyType(1)
.build())
.ocrLanguage(1)
.outputInfo(CssStreamMonitorOutputInfoArgs.builder()
.outputDomain("test122.jingxhu.top")
.outputStreamHeight(1080)
.outputStreamName("afc7847d-1fe1-43bc-b1e4-20d86303c393")
.outputStreamWidth(1920)
.build())
.build());
}
}
resources:
streamMonitor:
type: tencentcloud:CssStreamMonitor
properties:
aiAsrInputIndexLists:
- 1
aiFormatDiagnose: 1
aiOcrInputIndexLists:
- 1
allowMonitorReport: 1
asrLanguage: 1
checkStreamBroken: 1
checkStreamLowFrameRate: 1
inputLists:
- inputApp: live
inputDomain: 177154.push.tlivecloud.com
inputStreamName: ppp
monitorName: test
notifyPolicy:
callbackUrl: http://example.com/test
notifyPolicyType: 1
ocrLanguage: 1
outputInfo:
outputDomain: test122.jingxhu.top
outputStreamHeight: 1080
outputStreamName: afc7847d-1fe1-43bc-b1e4-20d86303c393
outputStreamWidth: 1920
Create CssStreamMonitor Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CssStreamMonitor(name: string, args: CssStreamMonitorArgs, opts?: CustomResourceOptions);
@overload
def CssStreamMonitor(resource_name: str,
args: CssStreamMonitorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CssStreamMonitor(resource_name: str,
opts: Optional[ResourceOptions] = None,
input_lists: Optional[Sequence[CssStreamMonitorInputListArgs]] = None,
output_info: Optional[CssStreamMonitorOutputInfoArgs] = None,
check_stream_low_frame_rate: Optional[float] = None,
allow_monitor_report: Optional[float] = None,
asr_language: Optional[float] = None,
check_stream_broken: Optional[float] = None,
ai_asr_input_index_lists: Optional[Sequence[float]] = None,
css_stream_monitor_id: Optional[str] = None,
ai_ocr_input_index_lists: Optional[Sequence[float]] = None,
monitor_name: Optional[str] = None,
notify_policy: Optional[CssStreamMonitorNotifyPolicyArgs] = None,
ocr_language: Optional[float] = None,
ai_format_diagnose: Optional[float] = None)
func NewCssStreamMonitor(ctx *Context, name string, args CssStreamMonitorArgs, opts ...ResourceOption) (*CssStreamMonitor, error)
public CssStreamMonitor(string name, CssStreamMonitorArgs args, CustomResourceOptions? opts = null)
public CssStreamMonitor(String name, CssStreamMonitorArgs args)
public CssStreamMonitor(String name, CssStreamMonitorArgs args, CustomResourceOptions options)
type: tencentcloud:CssStreamMonitor
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 CssStreamMonitorArgs
- 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 CssStreamMonitorArgs
- 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 CssStreamMonitorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CssStreamMonitorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CssStreamMonitorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
CssStreamMonitor 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 CssStreamMonitor resource accepts the following input properties:
- Input
Lists List<CssStream Monitor Input List> - Wait monitor input info list.
- Output
Info CssStream Monitor Output Info - Monitor task output info.
- Ai
Asr List<double>Input Index Lists - AI asr input index list.(first input index is 1.).
- Ai
Format doubleDiagnose - If enable format diagnose.
- Ai
Ocr List<double>Input Index Lists - Ai ocr input index list(first input index is 1.).
- Allow
Monitor doubleReport - If store monitor event.
- Asr
Language double - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- Check
Stream doubleBroken - If enable stream broken check.
- Check
Stream doubleLow Frame Rate - If enable low frame rate check.
- Css
Stream stringMonitor Id - ID of the resource.
- Monitor
Name string - Monitor task name.
- Notify
Policy CssStream Monitor Notify Policy - Monitor event notify policy.
- Ocr
Language double - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- Input
Lists []CssStream Monitor Input List Args - Wait monitor input info list.
- Output
Info CssStream Monitor Output Info Args - Monitor task output info.
- Ai
Asr []float64Input Index Lists - AI asr input index list.(first input index is 1.).
- Ai
Format float64Diagnose - If enable format diagnose.
- Ai
Ocr []float64Input Index Lists - Ai ocr input index list(first input index is 1.).
- Allow
Monitor float64Report - If store monitor event.
- Asr
Language float64 - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- Check
Stream float64Broken - If enable stream broken check.
- Check
Stream float64Low Frame Rate - If enable low frame rate check.
- Css
Stream stringMonitor Id - ID of the resource.
- Monitor
Name string - Monitor task name.
- Notify
Policy CssStream Monitor Notify Policy Args - Monitor event notify policy.
- Ocr
Language float64 - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- input
Lists List<CssStream Monitor Input List> - Wait monitor input info list.
- output
Info CssStream Monitor Output Info - Monitor task output info.
- ai
Asr List<Double>Input Index Lists - AI asr input index list.(first input index is 1.).
- ai
Format DoubleDiagnose - If enable format diagnose.
- ai
Ocr List<Double>Input Index Lists - Ai ocr input index list(first input index is 1.).
- allow
Monitor DoubleReport - If store monitor event.
- asr
Language Double - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check
Stream DoubleBroken - If enable stream broken check.
- check
Stream DoubleLow Frame Rate - If enable low frame rate check.
- css
Stream StringMonitor Id - ID of the resource.
- monitor
Name String - Monitor task name.
- notify
Policy CssStream Monitor Notify Policy - Monitor event notify policy.
- ocr
Language Double - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- input
Lists CssStream Monitor Input List[] - Wait monitor input info list.
- output
Info CssStream Monitor Output Info - Monitor task output info.
- ai
Asr number[]Input Index Lists - AI asr input index list.(first input index is 1.).
- ai
Format numberDiagnose - If enable format diagnose.
- ai
Ocr number[]Input Index Lists - Ai ocr input index list(first input index is 1.).
- allow
Monitor numberReport - If store monitor event.
- asr
Language number - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check
Stream numberBroken - If enable stream broken check.
- check
Stream numberLow Frame Rate - If enable low frame rate check.
- css
Stream stringMonitor Id - ID of the resource.
- monitor
Name string - Monitor task name.
- notify
Policy CssStream Monitor Notify Policy - Monitor event notify policy.
- ocr
Language number - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- input_
lists Sequence[CssStream Monitor Input List Args] - Wait monitor input info list.
- output_
info CssStream Monitor Output Info Args - Monitor task output info.
- ai_
asr_ Sequence[float]input_ index_ lists - AI asr input index list.(first input index is 1.).
- ai_
format_ floatdiagnose - If enable format diagnose.
- ai_
ocr_ Sequence[float]input_ index_ lists - Ai ocr input index list(first input index is 1.).
- allow_
monitor_ floatreport - If store monitor event.
- asr_
language float - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check_
stream_ floatbroken - If enable stream broken check.
- check_
stream_ floatlow_ frame_ rate - If enable low frame rate check.
- css_
stream_ strmonitor_ id - ID of the resource.
- monitor_
name str - Monitor task name.
- notify_
policy CssStream Monitor Notify Policy Args - Monitor event notify policy.
- ocr_
language float - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- input
Lists List<Property Map> - Wait monitor input info list.
- output
Info Property Map - Monitor task output info.
- ai
Asr List<Number>Input Index Lists - AI asr input index list.(first input index is 1.).
- ai
Format NumberDiagnose - If enable format diagnose.
- ai
Ocr List<Number>Input Index Lists - Ai ocr input index list(first input index is 1.).
- allow
Monitor NumberReport - If store monitor event.
- asr
Language Number - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check
Stream NumberBroken - If enable stream broken check.
- check
Stream NumberLow Frame Rate - If enable low frame rate check.
- css
Stream StringMonitor Id - ID of the resource.
- monitor
Name String - Monitor task name.
- notify
Policy Property Map - Monitor event notify policy.
- ocr
Language Number - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
Outputs
All input properties are implicitly available as output properties. Additionally, the CssStreamMonitor 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 CssStreamMonitor Resource
Get an existing CssStreamMonitor 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?: CssStreamMonitorState, opts?: CustomResourceOptions): CssStreamMonitor
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ai_asr_input_index_lists: Optional[Sequence[float]] = None,
ai_format_diagnose: Optional[float] = None,
ai_ocr_input_index_lists: Optional[Sequence[float]] = None,
allow_monitor_report: Optional[float] = None,
asr_language: Optional[float] = None,
check_stream_broken: Optional[float] = None,
check_stream_low_frame_rate: Optional[float] = None,
css_stream_monitor_id: Optional[str] = None,
input_lists: Optional[Sequence[CssStreamMonitorInputListArgs]] = None,
monitor_name: Optional[str] = None,
notify_policy: Optional[CssStreamMonitorNotifyPolicyArgs] = None,
ocr_language: Optional[float] = None,
output_info: Optional[CssStreamMonitorOutputInfoArgs] = None) -> CssStreamMonitor
func GetCssStreamMonitor(ctx *Context, name string, id IDInput, state *CssStreamMonitorState, opts ...ResourceOption) (*CssStreamMonitor, error)
public static CssStreamMonitor Get(string name, Input<string> id, CssStreamMonitorState? state, CustomResourceOptions? opts = null)
public static CssStreamMonitor get(String name, Output<String> id, CssStreamMonitorState state, CustomResourceOptions options)
resources: _: type: tencentcloud:CssStreamMonitor 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.
- Ai
Asr List<double>Input Index Lists - AI asr input index list.(first input index is 1.).
- Ai
Format doubleDiagnose - If enable format diagnose.
- Ai
Ocr List<double>Input Index Lists - Ai ocr input index list(first input index is 1.).
- Allow
Monitor doubleReport - If store monitor event.
- Asr
Language double - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- Check
Stream doubleBroken - If enable stream broken check.
- Check
Stream doubleLow Frame Rate - If enable low frame rate check.
- Css
Stream stringMonitor Id - ID of the resource.
- Input
Lists List<CssStream Monitor Input List> - Wait monitor input info list.
- Monitor
Name string - Monitor task name.
- Notify
Policy CssStream Monitor Notify Policy - Monitor event notify policy.
- Ocr
Language double - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- Output
Info CssStream Monitor Output Info - Monitor task output info.
- Ai
Asr []float64Input Index Lists - AI asr input index list.(first input index is 1.).
- Ai
Format float64Diagnose - If enable format diagnose.
- Ai
Ocr []float64Input Index Lists - Ai ocr input index list(first input index is 1.).
- Allow
Monitor float64Report - If store monitor event.
- Asr
Language float64 - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- Check
Stream float64Broken - If enable stream broken check.
- Check
Stream float64Low Frame Rate - If enable low frame rate check.
- Css
Stream stringMonitor Id - ID of the resource.
- Input
Lists []CssStream Monitor Input List Args - Wait monitor input info list.
- Monitor
Name string - Monitor task name.
- Notify
Policy CssStream Monitor Notify Policy Args - Monitor event notify policy.
- Ocr
Language float64 - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- Output
Info CssStream Monitor Output Info Args - Monitor task output info.
- ai
Asr List<Double>Input Index Lists - AI asr input index list.(first input index is 1.).
- ai
Format DoubleDiagnose - If enable format diagnose.
- ai
Ocr List<Double>Input Index Lists - Ai ocr input index list(first input index is 1.).
- allow
Monitor DoubleReport - If store monitor event.
- asr
Language Double - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check
Stream DoubleBroken - If enable stream broken check.
- check
Stream DoubleLow Frame Rate - If enable low frame rate check.
- css
Stream StringMonitor Id - ID of the resource.
- input
Lists List<CssStream Monitor Input List> - Wait monitor input info list.
- monitor
Name String - Monitor task name.
- notify
Policy CssStream Monitor Notify Policy - Monitor event notify policy.
- ocr
Language Double - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- output
Info CssStream Monitor Output Info - Monitor task output info.
- ai
Asr number[]Input Index Lists - AI asr input index list.(first input index is 1.).
- ai
Format numberDiagnose - If enable format diagnose.
- ai
Ocr number[]Input Index Lists - Ai ocr input index list(first input index is 1.).
- allow
Monitor numberReport - If store monitor event.
- asr
Language number - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check
Stream numberBroken - If enable stream broken check.
- check
Stream numberLow Frame Rate - If enable low frame rate check.
- css
Stream stringMonitor Id - ID of the resource.
- input
Lists CssStream Monitor Input List[] - Wait monitor input info list.
- monitor
Name string - Monitor task name.
- notify
Policy CssStream Monitor Notify Policy - Monitor event notify policy.
- ocr
Language number - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- output
Info CssStream Monitor Output Info - Monitor task output info.
- ai_
asr_ Sequence[float]input_ index_ lists - AI asr input index list.(first input index is 1.).
- ai_
format_ floatdiagnose - If enable format diagnose.
- ai_
ocr_ Sequence[float]input_ index_ lists - Ai ocr input index list(first input index is 1.).
- allow_
monitor_ floatreport - If store monitor event.
- asr_
language float - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check_
stream_ floatbroken - If enable stream broken check.
- check_
stream_ floatlow_ frame_ rate - If enable low frame rate check.
- css_
stream_ strmonitor_ id - ID of the resource.
- input_
lists Sequence[CssStream Monitor Input List Args] - Wait monitor input info list.
- monitor_
name str - Monitor task name.
- notify_
policy CssStream Monitor Notify Policy Args - Monitor event notify policy.
- ocr_
language float - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- output_
info CssStream Monitor Output Info Args - Monitor task output info.
- ai
Asr List<Number>Input Index Lists - AI asr input index list.(first input index is 1.).
- ai
Format NumberDiagnose - If enable format diagnose.
- ai
Ocr List<Number>Input Index Lists - Ai ocr input index list(first input index is 1.).
- allow
Monitor NumberReport - If store monitor event.
- asr
Language Number - Asr language.0: close.1: Chinese2: English3: Japanese4: Korean.
- check
Stream NumberBroken - If enable stream broken check.
- check
Stream NumberLow Frame Rate - If enable low frame rate check.
- css
Stream StringMonitor Id - ID of the resource.
- input
Lists List<Property Map> - Wait monitor input info list.
- monitor
Name String - Monitor task name.
- notify
Policy Property Map - Monitor event notify policy.
- ocr
Language Number - Intelligent text recognition language settings: ocr language.0: close.1. Chinese,English.
- output
Info Property Map - Monitor task output info.
Supporting Types
CssStreamMonitorInputList, CssStreamMonitorInputListArgs
- Input
Stream stringName - Wait monitor input stream name.limit 256 bytes.
- Description string
- Description content.limit 256 bytes.
- Input
App string - Wait monitor input push path.limit 32 bytes.
- Input
Domain string - Wait monitor input push domain.limit 128 bytes.
- Input
Url string - Wait monitor input stream push url.
- Input
Stream stringName - Wait monitor input stream name.limit 256 bytes.
- Description string
- Description content.limit 256 bytes.
- Input
App string - Wait monitor input push path.limit 32 bytes.
- Input
Domain string - Wait monitor input push domain.limit 128 bytes.
- Input
Url string - Wait monitor input stream push url.
- input
Stream StringName - Wait monitor input stream name.limit 256 bytes.
- description String
- Description content.limit 256 bytes.
- input
App String - Wait monitor input push path.limit 32 bytes.
- input
Domain String - Wait monitor input push domain.limit 128 bytes.
- input
Url String - Wait monitor input stream push url.
- input
Stream stringName - Wait monitor input stream name.limit 256 bytes.
- description string
- Description content.limit 256 bytes.
- input
App string - Wait monitor input push path.limit 32 bytes.
- input
Domain string - Wait monitor input push domain.limit 128 bytes.
- input
Url string - Wait monitor input stream push url.
- input_
stream_ strname - Wait monitor input stream name.limit 256 bytes.
- description str
- Description content.limit 256 bytes.
- input_
app str - Wait monitor input push path.limit 32 bytes.
- input_
domain str - Wait monitor input push domain.limit 128 bytes.
- input_
url str - Wait monitor input stream push url.
- input
Stream StringName - Wait monitor input stream name.limit 256 bytes.
- description String
- Description content.limit 256 bytes.
- input
App String - Wait monitor input push path.limit 32 bytes.
- input
Domain String - Wait monitor input push domain.limit 128 bytes.
- input
Url String - Wait monitor input stream push url.
CssStreamMonitorNotifyPolicy, CssStreamMonitorNotifyPolicyArgs
- Callback
Url string - Callback url.limit [0,512].only http or https.
- Notify
Policy doubleType - Notify policy type.0: not notify.1: use global policy.
- Callback
Url string - Callback url.limit [0,512].only http or https.
- Notify
Policy float64Type - Notify policy type.0: not notify.1: use global policy.
- callback
Url String - Callback url.limit [0,512].only http or https.
- notify
Policy DoubleType - Notify policy type.0: not notify.1: use global policy.
- callback
Url string - Callback url.limit [0,512].only http or https.
- notify
Policy numberType - Notify policy type.0: not notify.1: use global policy.
- callback_
url str - Callback url.limit [0,512].only http or https.
- notify_
policy_ floattype - Notify policy type.0: not notify.1: use global policy.
- callback
Url String - Callback url.limit [0,512].only http or https.
- notify
Policy NumberType - Notify policy type.0: not notify.1: use global policy.
CssStreamMonitorOutputInfo, CssStreamMonitorOutputInfoArgs
- Output
Stream doubleHeight - Monitor task output height, limit[1, 1080].
- Output
Stream doubleWidth - Output stream width, limit[1, 1920].
- Output
App string - Monitor task play path.limit 32 bytes.
- Output
Domain string - Monitor task output play domain.limit 128 bytes.
- Output
Stream stringName - Monitor task output stream name.limit 256 bytes.
- Output
Stream float64Height - Monitor task output height, limit[1, 1080].
- Output
Stream float64Width - Output stream width, limit[1, 1920].
- Output
App string - Monitor task play path.limit 32 bytes.
- Output
Domain string - Monitor task output play domain.limit 128 bytes.
- Output
Stream stringName - Monitor task output stream name.limit 256 bytes.
- output
Stream DoubleHeight - Monitor task output height, limit[1, 1080].
- output
Stream DoubleWidth - Output stream width, limit[1, 1920].
- output
App String - Monitor task play path.limit 32 bytes.
- output
Domain String - Monitor task output play domain.limit 128 bytes.
- output
Stream StringName - Monitor task output stream name.limit 256 bytes.
- output
Stream numberHeight - Monitor task output height, limit[1, 1080].
- output
Stream numberWidth - Output stream width, limit[1, 1920].
- output
App string - Monitor task play path.limit 32 bytes.
- output
Domain string - Monitor task output play domain.limit 128 bytes.
- output
Stream stringName - Monitor task output stream name.limit 256 bytes.
- output_
stream_ floatheight - Monitor task output height, limit[1, 1080].
- output_
stream_ floatwidth - Output stream width, limit[1, 1920].
- output_
app str - Monitor task play path.limit 32 bytes.
- output_
domain str - Monitor task output play domain.limit 128 bytes.
- output_
stream_ strname - Monitor task output stream name.limit 256 bytes.
- output
Stream NumberHeight - Monitor task output height, limit[1, 1080].
- output
Stream NumberWidth - Output stream width, limit[1, 1920].
- output
App String - Monitor task play path.limit 32 bytes.
- output
Domain String - Monitor task output play domain.limit 128 bytes.
- output
Stream StringName - Monitor task output stream name.limit 256 bytes.
Import
css stream_monitor can be imported using the id, e.g.
$ pulumi import tencentcloud:index/cssStreamMonitor:CssStreamMonitor stream_monitor stream_monitor_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.