1. Packages
  2. Datadog
  3. API Docs
  4. cloudflare
  5. IntegrationAccount
Datadog v4.27.0 published on Thursday, Mar 14, 2024 by Pulumi

datadog.cloudflare.IntegrationAccount

Explore with Pulumi AI

datadog logo
Datadog v4.27.0 published on Thursday, Mar 14, 2024 by Pulumi

    Provides a Datadog IntegrationCloudflareAccount resource. This can be used to create and manage Datadog integration_cloudflare_account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    const foo = new datadog.cloudflare.IntegrationAccount("foo", {
        apiKey: "12345678910abc",
        email: "test-email@example.com",
        name: "test-name",
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    foo = datadog.cloudflare.IntegrationAccount("foo",
        api_key="12345678910abc",
        email="test-email@example.com",
        name="test-name")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewIntegrationAccount(ctx, "foo", &cloudflare.IntegrationAccountArgs{
    			ApiKey: pulumi.String("12345678910abc"),
    			Email:  pulumi.String("test-email@example.com"),
    			Name:   pulumi.String("test-name"),
    		})
    		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 foo = new Datadog.Cloudflare.IntegrationAccount("foo", new()
        {
            ApiKey = "12345678910abc",
            Email = "test-email@example.com",
            Name = "test-name",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.cloudflare.IntegrationAccount;
    import com.pulumi.datadog.cloudflare.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) {
            var foo = new IntegrationAccount("foo", IntegrationAccountArgs.builder()        
                .apiKey("12345678910abc")
                .email("test-email@example.com")
                .name("test-name")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: datadog:cloudflare:IntegrationAccount
        properties:
          apiKey: 12345678910abc
          email: test-email@example.com
          name: test-name
    

    Create IntegrationAccount Resource

    new IntegrationAccount(name: string, args: IntegrationAccountArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccount(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           api_key: Optional[str] = None,
                           email: Optional[str] = None,
                           name: Optional[str] = None)
    @overload
    def IntegrationAccount(resource_name: str,
                           args: IntegrationAccountArgs,
                           opts: Optional[ResourceOptions] = 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:cloudflare:IntegrationAccount
    properties: # The arguments to resource properties.
    options: # 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.
    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.

    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 (or token) for the Cloudflare account.
    Name string
    The name of the Cloudflare account.
    Email string
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    ApiKey string
    The API key (or token) for the Cloudflare account.
    Name string
    The name of the Cloudflare account.
    Email string
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    apiKey String
    The API key (or token) for the Cloudflare account.
    name String
    The name of the Cloudflare account.
    email String
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    apiKey string
    The API key (or token) for the Cloudflare account.
    name string
    The name of the Cloudflare account.
    email string
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    api_key str
    The API key (or token) for the Cloudflare account.
    name str
    The name of the Cloudflare account.
    email str
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    apiKey String
    The API key (or token) for the Cloudflare account.
    name String
    The name of the Cloudflare account.
    email String
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.

    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,
            email: Optional[str] = None,
            name: Optional[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 (or token) for the Cloudflare account.
    Email string
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    Name string
    The name of the Cloudflare account.
    ApiKey string
    The API key (or token) for the Cloudflare account.
    Email string
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    Name string
    The name of the Cloudflare account.
    apiKey String
    The API key (or token) for the Cloudflare account.
    email String
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    name String
    The name of the Cloudflare account.
    apiKey string
    The API key (or token) for the Cloudflare account.
    email string
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    name string
    The name of the Cloudflare account.
    api_key str
    The API key (or token) for the Cloudflare account.
    email str
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    name str
    The name of the Cloudflare account.
    apiKey String
    The API key (or token) for the Cloudflare account.
    email String
    The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
    name String
    The name of the Cloudflare account.

    Import

    $ pulumi import datadog:cloudflare/integrationAccount:IntegrationAccount new_list ""
    

    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.27.0 published on Thursday, Mar 14, 2024 by Pulumi