SystemGroupArgs

data class SystemGroupArgs(val callback: Output<String>? = null, val description: Output<String>? = null, val enabled: Output<Boolean>? = null, val groupName: Output<String>? = null, val inProtocol: Output<String>? = null, val outProtocol: Output<String>? = null, val playDomain: Output<String>? = null, val pushDomain: Output<String>? = null) : ConvertibleToJava<SystemGroupArgs>

Provides a Video Surveillance System Group resource. For information about Video Surveillance System Group and how to use it, see What is Group.

NOTE: Available in v1.135.0+.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.videosurveillance.SystemGroup;
import com.pulumi.alicloud.videosurveillance.SystemGroupArgs;
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 default_ = new SystemGroup("default", SystemGroupArgs.builder()
.groupName("your_group_name")
.inProtocol("rtmp")
.outProtocol("flv")
.playDomain("your_plan_domain")
.pushDomain("your_push_domain")
.build());
}
}

Import

Video Surveillance System Group can be imported using the id, e.g.

$ pulumi import alicloud:videosurveillance/systemGroup:SystemGroup example <id>

Constructors

Link copied to clipboard
fun SystemGroupArgs(callback: Output<String>? = null, description: Output<String>? = null, enabled: Output<Boolean>? = null, groupName: Output<String>? = null, inProtocol: Output<String>? = null, outProtocol: Output<String>? = null, playDomain: Output<String>? = null, pushDomain: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SystemGroupArgs

Properties

Link copied to clipboard
val callback: Output<String>? = null

The space within the device status update of the callback, need to start with http:// or https:// at the beginning.

Link copied to clipboard
val description: Output<String>? = null

The description of Group.

Link copied to clipboard
val enabled: Output<Boolean>? = null

Whether to open Group.

Link copied to clipboard
val groupName: Output<String>? = null

The Group Name.

Link copied to clipboard
val inProtocol: Output<String>? = null

The use of the access protocol support gb28181, Real Time Messaging Protocol (rtmp). Valid values: gb28181, rtmp.

Link copied to clipboard
val outProtocol: Output<String>? = null

The playback protocol used by the space, multiple values are separated by commas (,). Valid values: flv,hls, rtmp.

Link copied to clipboard
val playDomain: Output<String>? = null

The domain name of plan streaming used by the group.

Link copied to clipboard
val pushDomain: Output<String>? = null

The domain name of push streaming used by the group.