tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getEbPlateformEventTemplate
Explore with Pulumi AI
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
Use this data source to query detailed information of eb plateform_event_template
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const plateformEventTemplate = tencentcloud.getEbPlateformEventTemplate({
eventType: "eb_platform_test:TEST:ALL",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
plateform_event_template = tencentcloud.get_eb_plateform_event_template(event_type="eb_platform_test:TEST:ALL")
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.GetEbPlateformEventTemplate(ctx, &tencentcloud.GetEbPlateformEventTemplateArgs{
EventType: "eb_platform_test:TEST:ALL",
}, 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 plateformEventTemplate = Tencentcloud.GetEbPlateformEventTemplate.Invoke(new()
{
EventType = "eb_platform_test:TEST:ALL",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetEbPlateformEventTemplateArgs;
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) {
final var plateformEventTemplate = TencentcloudFunctions.getEbPlateformEventTemplate(GetEbPlateformEventTemplateArgs.builder()
.eventType("eb_platform_test:TEST:ALL")
.build());
}
}
variables:
plateformEventTemplate:
fn::invoke:
function: tencentcloud:getEbPlateformEventTemplate
arguments:
eventType: eb_platform_test:TEST:ALL
Using getEbPlateformEventTemplate
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 getEbPlateformEventTemplate(args: GetEbPlateformEventTemplateArgs, opts?: InvokeOptions): Promise<GetEbPlateformEventTemplateResult>
function getEbPlateformEventTemplateOutput(args: GetEbPlateformEventTemplateOutputArgs, opts?: InvokeOptions): Output<GetEbPlateformEventTemplateResult>
def get_eb_plateform_event_template(event_type: Optional[str] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEbPlateformEventTemplateResult
def get_eb_plateform_event_template_output(event_type: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEbPlateformEventTemplateResult]
func GetEbPlateformEventTemplate(ctx *Context, args *GetEbPlateformEventTemplateArgs, opts ...InvokeOption) (*GetEbPlateformEventTemplateResult, error)
func GetEbPlateformEventTemplateOutput(ctx *Context, args *GetEbPlateformEventTemplateOutputArgs, opts ...InvokeOption) GetEbPlateformEventTemplateResultOutput
> Note: This function is named GetEbPlateformEventTemplate
in the Go SDK.
public static class GetEbPlateformEventTemplate
{
public static Task<GetEbPlateformEventTemplateResult> InvokeAsync(GetEbPlateformEventTemplateArgs args, InvokeOptions? opts = null)
public static Output<GetEbPlateformEventTemplateResult> Invoke(GetEbPlateformEventTemplateInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetEbPlateformEventTemplateResult> getEbPlateformEventTemplate(GetEbPlateformEventTemplateArgs args, InvokeOptions options)
public static Output<GetEbPlateformEventTemplateResult> getEbPlateformEventTemplate(GetEbPlateformEventTemplateArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getEbPlateformEventTemplate:getEbPlateformEventTemplate
arguments:
# arguments dictionary
The following arguments are supported:
- Event
Type string - Platform product event type.
- Id string
- Result
Output stringFile - Used to save results.
- Event
Type string - Platform product event type.
- Id string
- Result
Output stringFile - Used to save results.
- event
Type String - Platform product event type.
- id String
- result
Output StringFile - Used to save results.
- event
Type string - Platform product event type.
- id string
- result
Output stringFile - Used to save results.
- event_
type str - Platform product event type.
- id str
- result_
output_ strfile - Used to save results.
- event
Type String - Platform product event type.
- id String
- result
Output StringFile - Used to save results.
getEbPlateformEventTemplate Result
The following output properties are available:
- Event
Template string - Platform product event template.
- Event
Type string - Id string
- Result
Output stringFile
- Event
Template string - Platform product event template.
- Event
Type string - Id string
- Result
Output stringFile
- event
Template String - Platform product event template.
- event
Type String - id String
- result
Output StringFile
- event
Template string - Platform product event template.
- event
Type string - id string
- result
Output stringFile
- event_
template str - Platform product event template.
- event_
type str - id str
- result_
output_ strfile
- event
Template String - Platform product event template.
- event
Type String - id String
- result
Output StringFile
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack