AppTemplate

class AppTemplate : KotlinCustomResource

Provides a Apsara Agile Live (IMP) App Template resource. For information about Apsara Agile Live (IMP) App Template and how to use it, see What is App Template.

NOTE: Available in v1.137.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.imp.AppTemplate;
import com.pulumi.alicloud.imp.AppTemplateArgs;
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 example = new AppTemplate("example", AppTemplateArgs.builder()
.appTemplateName("example_value")
.componentLists(
"component.live",
"component.liveRecord")
.integrationMode("paasSDK")
.scene("business")
.build());
}
}

Import

Apsara Agile Live (IMP) App Template can be imported using the id, e.g.

$ pulumi import alicloud:imp/appTemplate:AppTemplate example <id>

Properties

Link copied to clipboard
val appTemplateName: Output<String>

The name of the resource.

Link copied to clipboard
val componentLists: Output<List<String>>

List of components. Its element valid values: "component.live","component.liveRecord","component.liveBeauty","component.rtc","component.rtcRecord","component.im","component.whiteboard","component.liveSecurity","component.chatSecurity".

Link copied to clipboard

Configuration list. It have several default configs after the resource is created. See the following Block config_list.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val integrationMode: Output<String>?

Integration mode. Valid values:

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val scene: Output<String>?

Application Template scenario. Valid values: "business", "classroom".

Link copied to clipboard
val status: Output<String>

Application template usage status.

Link copied to clipboard
val urn: Output<String>