airbyte.SourceDatadog
Explore with Pulumi AI
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
Source
Datadog Configuration - Workspace
Id string - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Datadog Configuration Args - Workspace
Id string - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Datadog Configuration - workspace
Id String - definition
Id 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.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Datadog Configuration - workspace
Id string - definition
Id 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.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Datadog Configuration Args - 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
- workspace
Id String - definition
Id 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.
- secret
Id 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:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type 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.
- Configuration
Source
Datadog Configuration - Created
At double - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Datadog Configuration Args - Created
At float64 - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Datadog Configuration - created
At Double - definition
Id 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.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Datadog Configuration - created
At number - definition
Id 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.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Datadog Configuration Args - 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
- created
At Number - definition
Id 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.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceDatadogConfiguration, SourceDatadogConfigurationArgs
- Api
Key string - Datadog API key
- Application
Key string - Datadog application key
- End
Date 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"
- Max
Records doublePer Request - Maximum number of records to collect per request. Default: 5000
- Queries
List<Source
Datadog Configuration Query> - 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"]
- Start
Date 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 string - Datadog API key
- Application
Key string - Datadog application key
- End
Date 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"
- Max
Records float64Per Request - Maximum number of records to collect per request. Default: 5000
- Queries
[]Source
Datadog Configuration Query - 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"]
- Start
Date 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 String - Datadog API key
- application
Key String - Datadog application key
- end
Date 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"
- max
Records DoublePer Request - Maximum number of records to collect per request. Default: 5000
- queries
List<Source
Datadog Configuration Query> - 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"]
- start
Date 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 string - Datadog API key
- application
Key string - Datadog application key
- end
Date 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"
- max
Records numberPer Request - Maximum number of records to collect per request. Default: 5000
- queries
Source
Datadog Configuration Query[] - 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"]
- start
Date 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_ floatper_ request - Maximum number of records to collect per request. Default: 5000
- queries
Sequence[Source
Datadog Configuration Query] - 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"
- api
Key String - Datadog API key
- application
Key String - Datadog application key
- end
Date 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"
- max
Records NumberPer Request - 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"]
- start
Date 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
- Data
Source 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 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 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 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.
- data
Source 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.