1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getMpsParseNotification
tencentcloud 1.81.185 published on Wednesday, Apr 23, 2025 by tencentcloudstack

tencentcloud.getMpsParseNotification

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.185 published on Wednesday, Apr 23, 2025 by tencentcloudstack

    Use this data source to query detailed information of mps parse_notification

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const parseNotification = tencentcloud.getMpsParseNotification({
        content: "your_content",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    parse_notification = tencentcloud.get_mps_parse_notification(content="your_content")
    
    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.GetMpsParseNotification(ctx, &tencentcloud.GetMpsParseNotificationArgs{
    			Content: "your_content",
    		}, 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 parseNotification = Tencentcloud.GetMpsParseNotification.Invoke(new()
        {
            Content = "your_content",
        });
    
    });
    
    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.GetMpsParseNotificationArgs;
    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 parseNotification = TencentcloudFunctions.getMpsParseNotification(GetMpsParseNotificationArgs.builder()
                .content("your_content")
                .build());
    
        }
    }
    
    variables:
      parseNotification:
        fn::invoke:
          function: tencentcloud:getMpsParseNotification
          arguments:
            content: your_content
    

    Using getMpsParseNotification

    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 getMpsParseNotification(args: GetMpsParseNotificationArgs, opts?: InvokeOptions): Promise<GetMpsParseNotificationResult>
    function getMpsParseNotificationOutput(args: GetMpsParseNotificationOutputArgs, opts?: InvokeOptions): Output<GetMpsParseNotificationResult>
    def get_mps_parse_notification(content: Optional[str] = None,
                                   id: Optional[str] = None,
                                   result_output_file: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetMpsParseNotificationResult
    def get_mps_parse_notification_output(content: Optional[pulumi.Input[str]] = None,
                                   id: Optional[pulumi.Input[str]] = None,
                                   result_output_file: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetMpsParseNotificationResult]
    func GetMpsParseNotification(ctx *Context, args *GetMpsParseNotificationArgs, opts ...InvokeOption) (*GetMpsParseNotificationResult, error)
    func GetMpsParseNotificationOutput(ctx *Context, args *GetMpsParseNotificationOutputArgs, opts ...InvokeOption) GetMpsParseNotificationResultOutput

    > Note: This function is named GetMpsParseNotification in the Go SDK.

    public static class GetMpsParseNotification 
    {
        public static Task<GetMpsParseNotificationResult> InvokeAsync(GetMpsParseNotificationArgs args, InvokeOptions? opts = null)
        public static Output<GetMpsParseNotificationResult> Invoke(GetMpsParseNotificationInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMpsParseNotificationResult> getMpsParseNotification(GetMpsParseNotificationArgs args, InvokeOptions options)
    public static Output<GetMpsParseNotificationResult> getMpsParseNotification(GetMpsParseNotificationArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getMpsParseNotification:getMpsParseNotification
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Content string
    Event notification obtained from CMQ.
    Id string
    ResultOutputFile string
    Used to save results.
    Content string
    Event notification obtained from CMQ.
    Id string
    ResultOutputFile string
    Used to save results.
    content String
    Event notification obtained from CMQ.
    id String
    resultOutputFile String
    Used to save results.
    content string
    Event notification obtained from CMQ.
    id string
    resultOutputFile string
    Used to save results.
    content str
    Event notification obtained from CMQ.
    id str
    result_output_file str
    Used to save results.
    content String
    Event notification obtained from CMQ.
    id String
    resultOutputFile String
    Used to save results.

    getMpsParseNotification Result

    The following output properties are available:

    Content string
    Id string
    ResultOutputFile string
    Content string
    Id string
    ResultOutputFile string
    content String
    id String
    resultOutputFile String
    content string
    id string
    resultOutputFile string
    content String
    id String
    resultOutputFile String

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.185 published on Wednesday, Apr 23, 2025 by tencentcloudstack