1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceDatadog
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.SourceDatadog

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    SourceDatadog Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.SourceDatadog;
    import com.pulumi.airbyte.SourceDatadogArgs;
    import com.pulumi.airbyte.inputs.SourceDatadogConfigurationArgs;
    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 mySourceDatadog = new SourceDatadog("mySourceDatadog", SourceDatadogArgs.builder()
                .configuration(SourceDatadogConfigurationArgs.builder()
                    .api_key("...my_api_key...")
                    .application_key("...my_application_key...")
                    .end_date("2022-10-01T00:00:00Z")
                    .max_records_per_request(2070)
                    .queries(SourceDatadogConfigurationQueryArgs.builder()
                        .dataSource("rum")
                        .name("...my_name...")
                        .query("...my_query...")
                        .build())
                    .query("...my_query...")
                    .site("us3.datadoghq.com")
                    .start_date("2022-10-01T00:00:00Z")
                    .build())
                .definitionId("2540902d-96ce-424c-aecb-6e08ce06d99a")
                .secretId("...my_secret_id...")
                .workspaceId("de17fce0-44d9-442c-bb38-b8bd289009e8")
                .build());
    
        }
    }
    
    resources:
      mySourceDatadog:
        type: airbyte:SourceDatadog
        properties:
          configuration:
            api_key: '...my_api_key...'
            application_key: '...my_application_key...'
            end_date: 2022-10-01T00:00:00Z
            max_records_per_request: 2070
            queries:
              - dataSource: rum
                name: '...my_name...'
                query: '...my_query...'
            query: '...my_query...'
            site: us3.datadoghq.com
            start_date: 2022-10-01T00:00:00Z
          definitionId: 2540902d-96ce-424c-aecb-6e08ce06d99a
          secretId: '...my_secret_id...'
          workspaceId: de17fce0-44d9-442c-bb38-b8bd289009e8
    

    Create SourceDatadog Resource

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

    Constructor syntax

    new SourceDatadog(name: string, args: SourceDatadogArgs, opts?: CustomResourceOptions);
    @overload
    def SourceDatadog(resource_name: str,
                      args: SourceDatadogArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceDatadog(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      configuration: Optional[SourceDatadogConfigurationArgs] = None,
                      workspace_id: Optional[str] = None,
                      definition_id: Optional[str] = None,
                      name: Optional[str] = None,
                      secret_id: Optional[str] = None)
    func NewSourceDatadog(ctx *Context, name string, args SourceDatadogArgs, opts ...ResourceOption) (*SourceDatadog, error)
    public SourceDatadog(string name, SourceDatadogArgs args, CustomResourceOptions? opts = null)
    public SourceDatadog(String name, SourceDatadogArgs args)
    public SourceDatadog(String name, SourceDatadogArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceDatadog
    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 SourceDatadogArgs
    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 SourceDatadogArgs
    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 SourceDatadogArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceDatadogArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceDatadogArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var sourceDatadogResource = new Airbyte.SourceDatadog("sourceDatadogResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceDatadogConfigurationArgs
        {
            ApiKey = "string",
            ApplicationKey = "string",
            EndDate = "string",
            MaxRecordsPerRequest = 0,
            Queries = new[]
            {
                new Airbyte.Inputs.SourceDatadogConfigurationQueryArgs
                {
                    DataSource = "string",
                    Name = "string",
                    Query = "string",
                },
            },
            Query = "string",
            Site = "string",
            StartDate = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceDatadog(ctx, "sourceDatadogResource", &airbyte.SourceDatadogArgs{
    Configuration: &.SourceDatadogConfigurationArgs{
    ApiKey: pulumi.String("string"),
    ApplicationKey: pulumi.String("string"),
    EndDate: pulumi.String("string"),
    MaxRecordsPerRequest: pulumi.Float64(0),
    Queries: .SourceDatadogConfigurationQueryArray{
    &.SourceDatadogConfigurationQueryArgs{
    DataSource: pulumi.String("string"),
    Name: pulumi.String("string"),
    Query: pulumi.String("string"),
    },
    },
    Query: pulumi.String("string"),
    Site: pulumi.String("string"),
    StartDate: pulumi.String("string"),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourceDatadogResource = new SourceDatadog("sourceDatadogResource", SourceDatadogArgs.builder()
        .configuration(SourceDatadogConfigurationArgs.builder()
            .apiKey("string")
            .applicationKey("string")
            .endDate("string")
            .maxRecordsPerRequest(0)
            .queries(SourceDatadogConfigurationQueryArgs.builder()
                .dataSource("string")
                .name("string")
                .query("string")
                .build())
            .query("string")
            .site("string")
            .startDate("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_datadog_resource = airbyte.SourceDatadog("sourceDatadogResource",
        configuration={
            "api_key": "string",
            "application_key": "string",
            "end_date": "string",
            "max_records_per_request": 0,
            "queries": [{
                "data_source": "string",
                "name": "string",
                "query": "string",
            }],
            "query": "string",
            "site": "string",
            "start_date": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceDatadogResource = new airbyte.SourceDatadog("sourceDatadogResource", {
        configuration: {
            apiKey: "string",
            applicationKey: "string",
            endDate: "string",
            maxRecordsPerRequest: 0,
            queries: [{
                dataSource: "string",
                name: "string",
                query: "string",
            }],
            query: "string",
            site: "string",
            startDate: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceDatadog
    properties:
        configuration:
            apiKey: string
            applicationKey: string
            endDate: string
            maxRecordsPerRequest: 0
            queries:
                - dataSource: string
                  name: string
                  query: string
            query: string
            site: string
            startDate: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

    SourceDatadog Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SourceDatadog resource accepts the following input properties:

    Configuration SourceDatadogConfiguration
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the source e.g. dev-mysql-instance.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    Configuration SourceDatadogConfigurationArgs
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the source e.g. dev-mysql-instance.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration SourceDatadogConfiguration
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the source e.g. dev-mysql-instance.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration SourceDatadogConfiguration
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the source e.g. dev-mysql-instance.
    secretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration SourceDatadogConfigurationArgs
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the source e.g. dev-mysql-instance.
    secret_id str
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration Property Map
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the source e.g. dev-mysql-instance.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.

    Outputs

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

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    SourceId string
    SourceType string
    CreatedAt float64
    Id string
    The provider-assigned unique ID for this managed resource.
    SourceId string
    SourceType string
    createdAt Double
    id String
    The provider-assigned unique ID for this managed resource.
    sourceId String
    sourceType String
    createdAt number
    id string
    The provider-assigned unique ID for this managed resource.
    sourceId string
    sourceType string
    created_at float
    id str
    The provider-assigned unique ID for this managed resource.
    source_id str
    source_type str
    createdAt Number
    id String
    The provider-assigned unique ID for this managed resource.
    sourceId String
    sourceType String

    Look up Existing SourceDatadog Resource

    Get an existing SourceDatadog 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?: SourceDatadogState, opts?: CustomResourceOptions): SourceDatadog
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourceDatadogConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SourceDatadog
    func GetSourceDatadog(ctx *Context, name string, id IDInput, state *SourceDatadogState, opts ...ResourceOption) (*SourceDatadog, error)
    public static SourceDatadog Get(string name, Input<string> id, SourceDatadogState? state, CustomResourceOptions? opts = null)
    public static SourceDatadog get(String name, Output<String> id, SourceDatadogState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourceDatadog    get:      id: ${id}
    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:
    Configuration SourceDatadogConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the source e.g. dev-mysql-instance.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    Configuration SourceDatadogConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the source e.g. dev-mysql-instance.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    configuration SourceDatadogConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the source e.g. dev-mysql-instance.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String
    configuration SourceDatadogConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the source e.g. dev-mysql-instance.
    secretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId string
    sourceType string
    workspaceId string
    configuration SourceDatadogConfigurationArgs
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the source e.g. dev-mysql-instance.
    secret_id str
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    source_id str
    source_type str
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the source e.g. dev-mysql-instance.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String

    Supporting Types

    SourceDatadogConfiguration, SourceDatadogConfigurationArgs

    ApiKey string
    Datadog API key
    ApplicationKey string
    Datadog application key
    EndDate string
    UTC date and time in the format 2017-01-25T00:00:00Z. Data after this date will not be replicated. An empty value will represent the current datetime for each execution. This just applies to Incremental syncs. Default: "2024-01-01T00:00:00Z"
    MaxRecordsPerRequest double
    Maximum number of records to collect per request. Default: 5000
    Queries List<SourceDatadogConfigurationQuery>
    List of queries to be run and used as inputs.
    Query string
    The search query. This just applies to Incremental syncs. If empty, it'll collect all logs.
    Site string
    The site where Datadog data resides in. Default: "datadoghq.com"; must be one of ["datadoghq.com", "us3.datadoghq.com", "us5.datadoghq.com", "datadoghq.eu", "ddog-gov.com"]
    StartDate string
    UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This just applies to Incremental syncs. Default: "2023-12-01T00:00:00Z"
    ApiKey string
    Datadog API key
    ApplicationKey string
    Datadog application key
    EndDate string
    UTC date and time in the format 2017-01-25T00:00:00Z. Data after this date will not be replicated. An empty value will represent the current datetime for each execution. This just applies to Incremental syncs. Default: "2024-01-01T00:00:00Z"
    MaxRecordsPerRequest float64
    Maximum number of records to collect per request. Default: 5000
    Queries []SourceDatadogConfigurationQuery
    List of queries to be run and used as inputs.
    Query string
    The search query. This just applies to Incremental syncs. If empty, it'll collect all logs.
    Site string
    The site where Datadog data resides in. Default: "datadoghq.com"; must be one of ["datadoghq.com", "us3.datadoghq.com", "us5.datadoghq.com", "datadoghq.eu", "ddog-gov.com"]
    StartDate string
    UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This just applies to Incremental syncs. Default: "2023-12-01T00:00:00Z"
    apiKey String
    Datadog API key
    applicationKey String
    Datadog application key
    endDate String
    UTC date and time in the format 2017-01-25T00:00:00Z. Data after this date will not be replicated. An empty value will represent the current datetime for each execution. This just applies to Incremental syncs. Default: "2024-01-01T00:00:00Z"
    maxRecordsPerRequest Double
    Maximum number of records to collect per request. Default: 5000
    queries List<SourceDatadogConfigurationQuery>
    List of queries to be run and used as inputs.
    query String
    The search query. This just applies to Incremental syncs. If empty, it'll collect all logs.
    site String
    The site where Datadog data resides in. Default: "datadoghq.com"; must be one of ["datadoghq.com", "us3.datadoghq.com", "us5.datadoghq.com", "datadoghq.eu", "ddog-gov.com"]
    startDate String
    UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This just applies to Incremental syncs. Default: "2023-12-01T00:00:00Z"
    apiKey string
    Datadog API key
    applicationKey string
    Datadog application key
    endDate string
    UTC date and time in the format 2017-01-25T00:00:00Z. Data after this date will not be replicated. An empty value will represent the current datetime for each execution. This just applies to Incremental syncs. Default: "2024-01-01T00:00:00Z"
    maxRecordsPerRequest number
    Maximum number of records to collect per request. Default: 5000
    queries SourceDatadogConfigurationQuery[]
    List of queries to be run and used as inputs.
    query string
    The search query. This just applies to Incremental syncs. If empty, it'll collect all logs.
    site string
    The site where Datadog data resides in. Default: "datadoghq.com"; must be one of ["datadoghq.com", "us3.datadoghq.com", "us5.datadoghq.com", "datadoghq.eu", "ddog-gov.com"]
    startDate string
    UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This just applies to Incremental syncs. Default: "2023-12-01T00:00:00Z"
    api_key str
    Datadog API key
    application_key str
    Datadog application key
    end_date str
    UTC date and time in the format 2017-01-25T00:00:00Z. Data after this date will not be replicated. An empty value will represent the current datetime for each execution. This just applies to Incremental syncs. Default: "2024-01-01T00:00:00Z"
    max_records_per_request float
    Maximum number of records to collect per request. Default: 5000
    queries Sequence[SourceDatadogConfigurationQuery]
    List of queries to be run and used as inputs.
    query str
    The search query. This just applies to Incremental syncs. If empty, it'll collect all logs.
    site str
    The site where Datadog data resides in. Default: "datadoghq.com"; must be one of ["datadoghq.com", "us3.datadoghq.com", "us5.datadoghq.com", "datadoghq.eu", "ddog-gov.com"]
    start_date str
    UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This just applies to Incremental syncs. Default: "2023-12-01T00:00:00Z"
    apiKey String
    Datadog API key
    applicationKey String
    Datadog application key
    endDate String
    UTC date and time in the format 2017-01-25T00:00:00Z. Data after this date will not be replicated. An empty value will represent the current datetime for each execution. This just applies to Incremental syncs. Default: "2024-01-01T00:00:00Z"
    maxRecordsPerRequest Number
    Maximum number of records to collect per request. Default: 5000
    queries List<Property Map>
    List of queries to be run and used as inputs.
    query String
    The search query. This just applies to Incremental syncs. If empty, it'll collect all logs.
    site String
    The site where Datadog data resides in. Default: "datadoghq.com"; must be one of ["datadoghq.com", "us3.datadoghq.com", "us5.datadoghq.com", "datadoghq.eu", "ddog-gov.com"]
    startDate String
    UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This just applies to Incremental syncs. Default: "2023-12-01T00:00:00Z"

    SourceDatadogConfigurationQuery, SourceDatadogConfigurationQueryArgs

    DataSource string
    A data source that is powered by the platform. must be one of ["metrics", "cloud_cost", "logs", "rum"]
    Name string
    The variable name for use in queries.
    Query string
    A classic query string.
    DataSource string
    A data source that is powered by the platform. must be one of ["metrics", "cloud_cost", "logs", "rum"]
    Name string
    The variable name for use in queries.
    Query string
    A classic query string.
    dataSource String
    A data source that is powered by the platform. must be one of ["metrics", "cloud_cost", "logs", "rum"]
    name String
    The variable name for use in queries.
    query String
    A classic query string.
    dataSource string
    A data source that is powered by the platform. must be one of ["metrics", "cloud_cost", "logs", "rum"]
    name string
    The variable name for use in queries.
    query string
    A classic query string.
    data_source str
    A data source that is powered by the platform. must be one of ["metrics", "cloud_cost", "logs", "rum"]
    name str
    The variable name for use in queries.
    query str
    A classic query string.
    dataSource String
    A data source that is powered by the platform. must be one of ["metrics", "cloud_cost", "logs", "rum"]
    name String
    The variable name for use in queries.
    query String
    A classic query string.

    Import

    $ pulumi import airbyte:index/sourceDatadog:SourceDatadog my_airbyte_source_datadog ""
    

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

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq