1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. getCloudforceOneRequestMessage
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

cloudflare.getCloudforceOneRequestMessage

Explore with Pulumi AI

cloudflare logo
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleCloudforceOneRequestMessage = cloudflare.getCloudforceOneRequestMessage({
        accountIdentifier: "023e105f4ecef8ad9ca31a8372d0c353",
        requestIdentifier: "f174e90a-fafe-4643-bbbc-4a0ed4fc8415",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_cloudforce_one_request_message = cloudflare.get_cloudforce_one_request_message(account_identifier="023e105f4ecef8ad9ca31a8372d0c353",
        request_identifier="f174e90a-fafe-4643-bbbc-4a0ed4fc8415")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.LookupCloudforceOneRequestMessage(ctx, &cloudflare.LookupCloudforceOneRequestMessageArgs{
    			AccountIdentifier: "023e105f4ecef8ad9ca31a8372d0c353",
    			RequestIdentifier: "f174e90a-fafe-4643-bbbc-4a0ed4fc8415",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCloudforceOneRequestMessage = Cloudflare.GetCloudforceOneRequestMessage.Invoke(new()
        {
            AccountIdentifier = "023e105f4ecef8ad9ca31a8372d0c353",
            RequestIdentifier = "f174e90a-fafe-4643-bbbc-4a0ed4fc8415",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.CloudflareFunctions;
    import com.pulumi.cloudflare.inputs.GetCloudforceOneRequestMessageArgs;
    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 exampleCloudforceOneRequestMessage = CloudflareFunctions.getCloudforceOneRequestMessage(GetCloudforceOneRequestMessageArgs.builder()
                .accountIdentifier("023e105f4ecef8ad9ca31a8372d0c353")
                .requestIdentifier("f174e90a-fafe-4643-bbbc-4a0ed4fc8415")
                .build());
    
        }
    }
    
    variables:
      exampleCloudforceOneRequestMessage:
        fn::invoke:
          function: cloudflare:getCloudforceOneRequestMessage
          arguments:
            accountIdentifier: 023e105f4ecef8ad9ca31a8372d0c353
            requestIdentifier: f174e90a-fafe-4643-bbbc-4a0ed4fc8415
    

    Using getCloudforceOneRequestMessage

    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 getCloudforceOneRequestMessage(args: GetCloudforceOneRequestMessageArgs, opts?: InvokeOptions): Promise<GetCloudforceOneRequestMessageResult>
    function getCloudforceOneRequestMessageOutput(args: GetCloudforceOneRequestMessageOutputArgs, opts?: InvokeOptions): Output<GetCloudforceOneRequestMessageResult>
    def get_cloudforce_one_request_message(account_identifier: Optional[str] = None,
                                           request_identifier: Optional[str] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetCloudforceOneRequestMessageResult
    def get_cloudforce_one_request_message_output(account_identifier: Optional[pulumi.Input[str]] = None,
                                           request_identifier: Optional[pulumi.Input[str]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetCloudforceOneRequestMessageResult]
    func LookupCloudforceOneRequestMessage(ctx *Context, args *LookupCloudforceOneRequestMessageArgs, opts ...InvokeOption) (*LookupCloudforceOneRequestMessageResult, error)
    func LookupCloudforceOneRequestMessageOutput(ctx *Context, args *LookupCloudforceOneRequestMessageOutputArgs, opts ...InvokeOption) LookupCloudforceOneRequestMessageResultOutput

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

    public static class GetCloudforceOneRequestMessage 
    {
        public static Task<GetCloudforceOneRequestMessageResult> InvokeAsync(GetCloudforceOneRequestMessageArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudforceOneRequestMessageResult> Invoke(GetCloudforceOneRequestMessageInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudforceOneRequestMessageResult> getCloudforceOneRequestMessage(GetCloudforceOneRequestMessageArgs args, InvokeOptions options)
    public static Output<GetCloudforceOneRequestMessageResult> getCloudforceOneRequestMessage(GetCloudforceOneRequestMessageArgs args, InvokeOptions options)
    
    fn::invoke:
      function: cloudflare:index/getCloudforceOneRequestMessage:getCloudforceOneRequestMessage
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AccountIdentifier string
    Identifier
    RequestIdentifier string
    UUID
    AccountIdentifier string
    Identifier
    RequestIdentifier string
    UUID
    accountIdentifier String
    Identifier
    requestIdentifier String
    UUID
    accountIdentifier string
    Identifier
    requestIdentifier string
    UUID
    accountIdentifier String
    Identifier
    requestIdentifier String
    UUID

    getCloudforceOneRequestMessage Result

    The following output properties are available:

    AccountIdentifier string
    Identifier
    Author string
    Author of message
    Content string
    Content of message
    Created string
    Message creation time
    Id int
    Message ID
    IsFollowOnRequest bool
    Whether the message is a follow-on request
    RequestIdentifier string
    UUID
    Updated string
    Message last updated time
    AccountIdentifier string
    Identifier
    Author string
    Author of message
    Content string
    Content of message
    Created string
    Message creation time
    Id int
    Message ID
    IsFollowOnRequest bool
    Whether the message is a follow-on request
    RequestIdentifier string
    UUID
    Updated string
    Message last updated time
    accountIdentifier String
    Identifier
    author String
    Author of message
    content String
    Content of message
    created String
    Message creation time
    id Integer
    Message ID
    isFollowOnRequest Boolean
    Whether the message is a follow-on request
    requestIdentifier String
    UUID
    updated String
    Message last updated time
    accountIdentifier string
    Identifier
    author string
    Author of message
    content string
    Content of message
    created string
    Message creation time
    id number
    Message ID
    isFollowOnRequest boolean
    Whether the message is a follow-on request
    requestIdentifier string
    UUID
    updated string
    Message last updated time
    account_identifier str
    Identifier
    author str
    Author of message
    content str
    Content of message
    created str
    Message creation time
    id int
    Message ID
    is_follow_on_request bool
    Whether the message is a follow-on request
    request_identifier str
    UUID
    updated str
    Message last updated time
    accountIdentifier String
    Identifier
    author String
    Author of message
    content String
    Content of message
    created String
    Message creation time
    id Number
    Message ID
    isFollowOnRequest Boolean
    Whether the message is a follow-on request
    requestIdentifier String
    UUID
    updated String
    Message last updated time

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi