1. Packages
  2. Datadog Provider
  3. API Docs
  4. getActionConnection
Datadog v4.47.0 published on Thursday, Mar 20, 2025 by Pulumi

datadog.getActionConnection

Explore with Pulumi AI

datadog logo
Datadog v4.47.0 published on Thursday, Mar 20, 2025 by Pulumi

    A connection that can be used in Actions, including in the Workflow Automation and App Builder products.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    const myConnection = datadog.getActionConnection({
        id: "11111111-2222-3333-4444-555555555555",
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    my_connection = datadog.get_action_connection(id="11111111-2222-3333-4444-555555555555")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datadog.LookupActionConnection(ctx, &datadog.LookupActionConnectionArgs{
    			Id: "11111111-2222-3333-4444-555555555555",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        var myConnection = Datadog.GetActionConnection.Invoke(new()
        {
            Id = "11111111-2222-3333-4444-555555555555",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.DatadogFunctions;
    import com.pulumi.datadog.inputs.GetActionConnectionArgs;
    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 myConnection = DatadogFunctions.getActionConnection(GetActionConnectionArgs.builder()
                .id("11111111-2222-3333-4444-555555555555")
                .build());
    
        }
    }
    
    variables:
      myConnection:
        fn::invoke:
          function: datadog:getActionConnection
          arguments:
            id: 11111111-2222-3333-4444-555555555555
    

    Using getActionConnection

    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 getActionConnection(args: GetActionConnectionArgs, opts?: InvokeOptions): Promise<GetActionConnectionResult>
    function getActionConnectionOutput(args: GetActionConnectionOutputArgs, opts?: InvokeOptions): Output<GetActionConnectionResult>
    def get_action_connection(aws: Optional[GetActionConnectionAws] = None,
                              http: Optional[GetActionConnectionHttp] = None,
                              id: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetActionConnectionResult
    def get_action_connection_output(aws: Optional[pulumi.Input[GetActionConnectionAwsArgs]] = None,
                              http: Optional[pulumi.Input[GetActionConnectionHttpArgs]] = None,
                              id: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetActionConnectionResult]
    func LookupActionConnection(ctx *Context, args *LookupActionConnectionArgs, opts ...InvokeOption) (*LookupActionConnectionResult, error)
    func LookupActionConnectionOutput(ctx *Context, args *LookupActionConnectionOutputArgs, opts ...InvokeOption) LookupActionConnectionResultOutput

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

    public static class GetActionConnection 
    {
        public static Task<GetActionConnectionResult> InvokeAsync(GetActionConnectionArgs args, InvokeOptions? opts = null)
        public static Output<GetActionConnectionResult> Invoke(GetActionConnectionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetActionConnectionResult> getActionConnection(GetActionConnectionArgs args, InvokeOptions options)
    public static Output<GetActionConnectionResult> getActionConnection(GetActionConnectionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: datadog:index/getActionConnection:getActionConnection
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    ID for Connection.
    Aws GetActionConnectionAws
    Configuration for an AWS connection
    Http GetActionConnectionHttp
    Configuration for an HTTP connection
    Id string
    ID for Connection.
    Aws GetActionConnectionAws
    Configuration for an AWS connection
    Http GetActionConnectionHttp
    Configuration for an HTTP connection
    id String
    ID for Connection.
    aws GetActionConnectionAws
    Configuration for an AWS connection
    http GetActionConnectionHttp
    Configuration for an HTTP connection
    id string
    ID for Connection.
    aws GetActionConnectionAws
    Configuration for an AWS connection
    http GetActionConnectionHttp
    Configuration for an HTTP connection
    id str
    ID for Connection.
    aws GetActionConnectionAws
    Configuration for an AWS connection
    http GetActionConnectionHttp
    Configuration for an HTTP connection
    id String
    ID for Connection.
    aws Property Map
    Configuration for an AWS connection
    http Property Map
    Configuration for an HTTP connection

    getActionConnection Result

    The following output properties are available:

    Id string
    ID for Connection.
    Name string
    Name of the connection
    Aws GetActionConnectionAws
    Configuration for an AWS connection
    Http GetActionConnectionHttp
    Configuration for an HTTP connection
    Id string
    ID for Connection.
    Name string
    Name of the connection
    Aws GetActionConnectionAws
    Configuration for an AWS connection
    Http GetActionConnectionHttp
    Configuration for an HTTP connection
    id String
    ID for Connection.
    name String
    Name of the connection
    aws GetActionConnectionAws
    Configuration for an AWS connection
    http GetActionConnectionHttp
    Configuration for an HTTP connection
    id string
    ID for Connection.
    name string
    Name of the connection
    aws GetActionConnectionAws
    Configuration for an AWS connection
    http GetActionConnectionHttp
    Configuration for an HTTP connection
    id str
    ID for Connection.
    name str
    Name of the connection
    aws GetActionConnectionAws
    Configuration for an AWS connection
    http GetActionConnectionHttp
    Configuration for an HTTP connection
    id String
    ID for Connection.
    name String
    Name of the connection
    aws Property Map
    Configuration for an AWS connection
    http Property Map
    Configuration for an HTTP connection

    Supporting Types

    GetActionConnectionAws

    AssumeRole GetActionConnectionAwsAssumeRole
    Configuration for an assume role AWS connection
    AssumeRole GetActionConnectionAwsAssumeRole
    Configuration for an assume role AWS connection
    assumeRole GetActionConnectionAwsAssumeRole
    Configuration for an assume role AWS connection
    assumeRole GetActionConnectionAwsAssumeRole
    Configuration for an assume role AWS connection
    assume_role GetActionConnectionAwsAssumeRole
    Configuration for an assume role AWS connection
    assumeRole Property Map
    Configuration for an assume role AWS connection

    GetActionConnectionAwsAssumeRole

    AccountId string
    AWS account that the connection is created for
    ExternalId string
    External ID that specifies which connection can be used to assume the role
    PrincipalId string
    AWS account that will assume the role
    Role string
    Role to assume
    AccountId string
    AWS account that the connection is created for
    ExternalId string
    External ID that specifies which connection can be used to assume the role
    PrincipalId string
    AWS account that will assume the role
    Role string
    Role to assume
    accountId String
    AWS account that the connection is created for
    externalId String
    External ID that specifies which connection can be used to assume the role
    principalId String
    AWS account that will assume the role
    role String
    Role to assume
    accountId string
    AWS account that the connection is created for
    externalId string
    External ID that specifies which connection can be used to assume the role
    principalId string
    AWS account that will assume the role
    role string
    Role to assume
    account_id str
    AWS account that the connection is created for
    external_id str
    External ID that specifies which connection can be used to assume the role
    principal_id str
    AWS account that will assume the role
    role str
    Role to assume
    accountId String
    AWS account that the connection is created for
    externalId String
    External ID that specifies which connection can be used to assume the role
    principalId String
    AWS account that will assume the role
    role String
    Role to assume

    GetActionConnectionHttp

    BaseUrl string
    Base HTTP url for the integration
    TokenAuth GetActionConnectionHttpTokenAuth
    Configuration for an HTTP connection that uses token auth
    BaseUrl string
    Base HTTP url for the integration
    TokenAuth GetActionConnectionHttpTokenAuth
    Configuration for an HTTP connection that uses token auth
    baseUrl String
    Base HTTP url for the integration
    tokenAuth GetActionConnectionHttpTokenAuth
    Configuration for an HTTP connection that uses token auth
    baseUrl string
    Base HTTP url for the integration
    tokenAuth GetActionConnectionHttpTokenAuth
    Configuration for an HTTP connection that uses token auth
    base_url str
    Base HTTP url for the integration
    token_auth GetActionConnectionHttpTokenAuth
    Configuration for an HTTP connection that uses token auth
    baseUrl String
    Base HTTP url for the integration
    tokenAuth Property Map
    Configuration for an HTTP connection that uses token auth

    GetActionConnectionHttpTokenAuth

    Body GetActionConnectionHttpTokenAuthBody
    Body for HTTP authentication
    Headers []GetActionConnectionHttpTokenAuthHeader
    Header for HTTP authentication
    Tokens []GetActionConnectionHttpTokenAuthToken
    Token for HTTP authentication
    UrlParameters []GetActionConnectionHttpTokenAuthUrlParameter
    URL parameter for HTTP authentication
    body GetActionConnectionHttpTokenAuthBody
    Body for HTTP authentication
    headers GetActionConnectionHttpTokenAuthHeader[]
    Header for HTTP authentication
    tokens GetActionConnectionHttpTokenAuthToken[]
    Token for HTTP authentication
    urlParameters GetActionConnectionHttpTokenAuthUrlParameter[]
    URL parameter for HTTP authentication
    body Property Map
    Body for HTTP authentication
    headers List<Property Map>
    Header for HTTP authentication
    tokens List<Property Map>
    Token for HTTP authentication
    urlParameters List<Property Map>
    URL parameter for HTTP authentication

    GetActionConnectionHttpTokenAuthBody

    Content string
    Serialized body content
    ContentType string
    Content type of the body
    Content string
    Serialized body content
    ContentType string
    Content type of the body
    content String
    Serialized body content
    contentType String
    Content type of the body
    content string
    Serialized body content
    contentType string
    Content type of the body
    content str
    Serialized body content
    content_type str
    Content type of the body
    content String
    Serialized body content
    contentType String
    Content type of the body

    GetActionConnectionHttpTokenAuthHeader

    Name string
    Header name
    Value string
    Name string
    Header name
    Value string
    name String
    Header name
    value String
    name string
    Header name
    value string
    name str
    Header name
    value str
    name String
    Header name
    value String

    GetActionConnectionHttpTokenAuthToken

    Name string
    Token name
    Type string
    Token type
    Value string
    Token value
    Name string
    Token name
    Type string
    Token type
    Value string
    Token value
    name String
    Token name
    type String
    Token type
    value String
    Token value
    name string
    Token name
    type string
    Token type
    value string
    Token value
    name str
    Token name
    type str
    Token type
    value str
    Token value
    name String
    Token name
    type String
    Token type
    value String
    Token value

    GetActionConnectionHttpTokenAuthUrlParameter

    Name string
    URL parameter name
    Value string
    URL parameter value
    Name string
    URL parameter name
    Value string
    URL parameter value
    name String
    URL parameter name
    value String
    URL parameter value
    name string
    URL parameter name
    value string
    URL parameter value
    name str
    URL parameter name
    value str
    URL parameter value
    name String
    URL parameter name
    value String
    URL parameter value

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Datadog v4.47.0 published on Thursday, Mar 20, 2025 by Pulumi