1. Packages
  2. Datadog
  3. API Docs
  4. confluent
  5. IntegrationAccount
Datadog v4.28.0 published on Tuesday, Apr 23, 2024 by Pulumi

datadog.confluent.IntegrationAccount

Explore with Pulumi AI

datadog logo
Datadog v4.28.0 published on Tuesday, Apr 23, 2024 by Pulumi

    Provides a Datadog IntegrationConfluentAccount resource. This can be used to create and manage Datadog integration_confluent_account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    // Create new integration_confluent_account resource
    const foo = new datadog.confluent.IntegrationAccount("foo", {
        apiKey: "TESTAPIKEY123",
        apiSecret: "test-api-secret-123",
        tags: [
            "mytag",
            "mytag2:myvalue",
        ],
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    # Create new integration_confluent_account resource
    foo = datadog.confluent.IntegrationAccount("foo",
        api_key="TESTAPIKEY123",
        api_secret="test-api-secret-123",
        tags=[
            "mytag",
            "mytag2:myvalue",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog/confluent"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create new integration_confluent_account resource
    		_, err := confluent.NewIntegrationAccount(ctx, "foo", &confluent.IntegrationAccountArgs{
    			ApiKey:    pulumi.String("TESTAPIKEY123"),
    			ApiSecret: pulumi.String("test-api-secret-123"),
    			Tags: pulumi.StringArray{
    				pulumi.String("mytag"),
    				pulumi.String("mytag2:myvalue"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        // Create new integration_confluent_account resource
        var foo = new Datadog.Confluent.IntegrationAccount("foo", new()
        {
            ApiKey = "TESTAPIKEY123",
            ApiSecret = "test-api-secret-123",
            Tags = new[]
            {
                "mytag",
                "mytag2:myvalue",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.confluent.IntegrationAccount;
    import com.pulumi.datadog.confluent.IntegrationAccountArgs;
    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) {
            // Create new integration_confluent_account resource
            var foo = new IntegrationAccount("foo", IntegrationAccountArgs.builder()        
                .apiKey("TESTAPIKEY123")
                .apiSecret("test-api-secret-123")
                .tags(            
                    "mytag",
                    "mytag2:myvalue")
                .build());
    
        }
    }
    
    resources:
      # Create new integration_confluent_account resource
      foo:
        type: datadog:confluent:IntegrationAccount
        properties:
          apiKey: TESTAPIKEY123
          apiSecret: test-api-secret-123
          tags:
            - mytag
            - mytag2:myvalue
    

    Create IntegrationAccount Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IntegrationAccount(name: string, args: IntegrationAccountArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccount(resource_name: str,
                           args: IntegrationAccountArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationAccount(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           api_key: Optional[str] = None,
                           api_secret: Optional[str] = None,
                           tags: Optional[Sequence[str]] = None)
    func NewIntegrationAccount(ctx *Context, name string, args IntegrationAccountArgs, opts ...ResourceOption) (*IntegrationAccount, error)
    public IntegrationAccount(string name, IntegrationAccountArgs args, CustomResourceOptions? opts = null)
    public IntegrationAccount(String name, IntegrationAccountArgs args)
    public IntegrationAccount(String name, IntegrationAccountArgs args, CustomResourceOptions options)
    
    type: datadog:confluent:IntegrationAccount
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IntegrationAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IntegrationAccountArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IntegrationAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationAccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var datadogIntegrationAccountResource = new Datadog.Confluent.IntegrationAccount("datadogIntegrationAccountResource", new()
    {
        ApiKey = "string",
        ApiSecret = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := confluent.NewIntegrationAccount(ctx, "datadogIntegrationAccountResource", &confluent.IntegrationAccountArgs{
    	ApiKey:    pulumi.String("string"),
    	ApiSecret: pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var datadogIntegrationAccountResource = new IntegrationAccount("datadogIntegrationAccountResource", IntegrationAccountArgs.builder()        
        .apiKey("string")
        .apiSecret("string")
        .tags("string")
        .build());
    
    datadog_integration_account_resource = datadog.confluent.IntegrationAccount("datadogIntegrationAccountResource",
        api_key="string",
        api_secret="string",
        tags=["string"])
    
    const datadogIntegrationAccountResource = new datadog.confluent.IntegrationAccount("datadogIntegrationAccountResource", {
        apiKey: "string",
        apiSecret: "string",
        tags: ["string"],
    });
    
    type: datadog:confluent:IntegrationAccount
    properties:
        apiKey: string
        apiSecret: string
        tags:
            - string
    

    IntegrationAccount Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The IntegrationAccount resource accepts the following input properties:

    ApiKey string
    The API key associated with your Confluent account.
    ApiSecret string
    The API secret associated with your Confluent account.
    Tags List<string>
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    ApiKey string
    The API key associated with your Confluent account.
    ApiSecret string
    The API secret associated with your Confluent account.
    Tags []string
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    apiKey String
    The API key associated with your Confluent account.
    apiSecret String
    The API secret associated with your Confluent account.
    tags List<String>
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    apiKey string
    The API key associated with your Confluent account.
    apiSecret string
    The API secret associated with your Confluent account.
    tags string[]
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    api_key str
    The API key associated with your Confluent account.
    api_secret str
    The API secret associated with your Confluent account.
    tags Sequence[str]
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    apiKey String
    The API key associated with your Confluent account.
    apiSecret String
    The API secret associated with your Confluent account.
    tags List<String>
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationAccount resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing IntegrationAccount Resource

    Get an existing IntegrationAccount resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IntegrationAccountState, opts?: CustomResourceOptions): IntegrationAccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_key: Optional[str] = None,
            api_secret: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> IntegrationAccount
    func GetIntegrationAccount(ctx *Context, name string, id IDInput, state *IntegrationAccountState, opts ...ResourceOption) (*IntegrationAccount, error)
    public static IntegrationAccount Get(string name, Input<string> id, IntegrationAccountState? state, CustomResourceOptions? opts = null)
    public static IntegrationAccount get(String name, Output<String> id, IntegrationAccountState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApiKey string
    The API key associated with your Confluent account.
    ApiSecret string
    The API secret associated with your Confluent account.
    Tags List<string>
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    ApiKey string
    The API key associated with your Confluent account.
    ApiSecret string
    The API secret associated with your Confluent account.
    Tags []string
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    apiKey String
    The API key associated with your Confluent account.
    apiSecret String
    The API secret associated with your Confluent account.
    tags List<String>
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    apiKey string
    The API key associated with your Confluent account.
    apiSecret string
    The API secret associated with your Confluent account.
    tags string[]
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    api_key str
    The API key associated with your Confluent account.
    api_secret str
    The API secret associated with your Confluent account.
    tags Sequence[str]
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.
    apiKey String
    The API key associated with your Confluent account.
    apiSecret String
    The API secret associated with your Confluent account.
    tags List<String>
    A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.

    Import

    Confluent account ID can be retrieved using the ListConfluentAccounts endpoint

    https://docs.datadoghq.com/api/latest/confluent-cloud/#list-confluent-accounts

    $ pulumi import datadog:confluent/integrationAccount:IntegrationAccount new_list "<ID>"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.28.0 published on Tuesday, Apr 23, 2024 by Pulumi