tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getEbPlatformEventNames
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 platform_event_names
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const platformEventNames = tencentcloud.getEbPlatformEventNames({
productType: "",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
platform_event_names = tencentcloud.get_eb_platform_event_names(product_type="")
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.GetEbPlatformEventNames(ctx, &tencentcloud.GetEbPlatformEventNamesArgs{
ProductType: "",
}, 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 platformEventNames = Tencentcloud.GetEbPlatformEventNames.Invoke(new()
{
ProductType = "",
});
});
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.GetEbPlatformEventNamesArgs;
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 platformEventNames = TencentcloudFunctions.getEbPlatformEventNames(GetEbPlatformEventNamesArgs.builder()
.productType("")
.build());
}
}
variables:
platformEventNames:
fn::invoke:
function: tencentcloud:getEbPlatformEventNames
arguments:
productType: ""
Using getEbPlatformEventNames
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 getEbPlatformEventNames(args: GetEbPlatformEventNamesArgs, opts?: InvokeOptions): Promise<GetEbPlatformEventNamesResult>
function getEbPlatformEventNamesOutput(args: GetEbPlatformEventNamesOutputArgs, opts?: InvokeOptions): Output<GetEbPlatformEventNamesResult>
def get_eb_platform_event_names(id: Optional[str] = None,
product_type: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEbPlatformEventNamesResult
def get_eb_platform_event_names_output(id: Optional[pulumi.Input[str]] = None,
product_type: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEbPlatformEventNamesResult]
func GetEbPlatformEventNames(ctx *Context, args *GetEbPlatformEventNamesArgs, opts ...InvokeOption) (*GetEbPlatformEventNamesResult, error)
func GetEbPlatformEventNamesOutput(ctx *Context, args *GetEbPlatformEventNamesOutputArgs, opts ...InvokeOption) GetEbPlatformEventNamesResultOutput
> Note: This function is named GetEbPlatformEventNames
in the Go SDK.
public static class GetEbPlatformEventNames
{
public static Task<GetEbPlatformEventNamesResult> InvokeAsync(GetEbPlatformEventNamesArgs args, InvokeOptions? opts = null)
public static Output<GetEbPlatformEventNamesResult> Invoke(GetEbPlatformEventNamesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetEbPlatformEventNamesResult> getEbPlatformEventNames(GetEbPlatformEventNamesArgs args, InvokeOptions options)
public static Output<GetEbPlatformEventNamesResult> getEbPlatformEventNames(GetEbPlatformEventNamesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getEbPlatformEventNames:getEbPlatformEventNames
arguments:
# arguments dictionary
The following arguments are supported:
- Product
Type string - Platform product event type.
- Id string
- Result
Output stringFile - Used to save results.
- Product
Type string - Platform product event type.
- Id string
- Result
Output stringFile - Used to save results.
- product
Type String - Platform product event type.
- id String
- result
Output StringFile - Used to save results.
- product
Type string - Platform product event type.
- id string
- result
Output stringFile - Used to save results.
- product_
type str - Platform product event type.
- id str
- result_
output_ strfile - Used to save results.
- product
Type String - Platform product event type.
- id String
- result
Output StringFile - Used to save results.
getEbPlatformEventNames Result
The following output properties are available:
- Event
Names List<GetEb Platform Event Names Event Name> - Platform product list.
- Id string
- Product
Type string - Result
Output stringFile
- Event
Names []GetEb Platform Event Names Event Name - Platform product list.
- Id string
- Product
Type string - Result
Output stringFile
- event
Names List<GetEb Platform Event Names Event Name> - Platform product list.
- id String
- product
Type String - result
Output StringFile
- event
Names GetEb Platform Event Names Event Name[] - Platform product list.
- id string
- product
Type string - result
Output stringFile
- event_
names Sequence[GetEb Platform Event Names Event Name] - Platform product list.
- id str
- product_
type str - result_
output_ strfile
- event
Names List<Property Map> - Platform product list.
- id String
- product
Type String - result
Output StringFile
Supporting Types
GetEbPlatformEventNamesEventName
- event_
name str - Event name.Note: This field may return null, indicating that no valid value can be obtained.
- event_
type str - Event type.Note: This field may return null, indicating that no valid value can be obtained.
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