LogsIndex
Import
$ pulumi import datadog:index/logsIndex:LogsIndex The current Datadog Terraform provider version does not support the creation and deletion of indexes. To manage the existing indexes, do `<datadog_logs_index.name> <indexName>` to import them to Terraform. If you create a resource which does not match the name of any existing index, `terraform apply` will throw `Not Found` error code.
Create a LogsIndex Resource
new LogsIndex(name: string, args: LogsIndexArgs, opts?: CustomResourceOptions);
def LogsIndex(resource_name: str, opts: Optional[ResourceOptions] = None, exclusion_filters: Optional[Sequence[LogsIndexExclusionFilterArgs]] = None, filters: Optional[Sequence[LogsIndexFilterArgs]] = None, name: Optional[str] = None)
func NewLogsIndex(ctx *Context, name string, args LogsIndexArgs, opts ...ResourceOption) (*LogsIndex, error)
public LogsIndex(string name, LogsIndexArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args LogsIndexArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LogsIndexArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogsIndexArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
LogsIndex Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The LogsIndex resource accepts the following input properties:
- Filters
List<Logs
Index Filter Args> Logs filter
- Name string
The name of the index.
- Exclusion
Filters List<LogsIndex Exclusion Filter Args> List of exclusion filters.
- Filters
[]Logs
Index Filter Logs filter
- Name string
The name of the index.
- Exclusion
Filters []LogsIndex Exclusion Filter List of exclusion filters.
- filters
Logs
Index Filter[] Logs filter
- name string
The name of the index.
- exclusion
Filters LogsIndex Exclusion Filter[] List of exclusion filters.
- filters
Sequence[Logs
Index Filter Args] Logs filter
- name str
The name of the index.
- exclusion_
filters Sequence[LogsIndex Exclusion Filter Args] List of exclusion filters.
Outputs
All input properties are implicitly available as output properties. Additionally, the LogsIndex 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 str
- The provider-assigned unique ID for this managed resource.
Look up an Existing LogsIndex Resource
Get an existing LogsIndex 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?: LogsIndexState, opts?: CustomResourceOptions): LogsIndex
@staticmethod
def get(resource_name: str, id: str, opts: Optional[ResourceOptions] = None, exclusion_filters: Optional[Sequence[LogsIndexExclusionFilterArgs]] = None, filters: Optional[Sequence[LogsIndexFilterArgs]] = None, name: Optional[str] = None) -> LogsIndex
func GetLogsIndex(ctx *Context, name string, id IDInput, state *LogsIndexState, opts ...ResourceOption) (*LogsIndex, error)
public static LogsIndex Get(string name, Input<string> id, LogsIndexState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- Exclusion
Filters List<LogsIndex Exclusion Filter Args> List of exclusion filters.
- Filters
List<Logs
Index Filter Args> Logs filter
- Name string
The name of the index.
- Exclusion
Filters []LogsIndex Exclusion Filter List of exclusion filters.
- Filters
[]Logs
Index Filter Logs filter
- Name string
The name of the index.
- exclusion
Filters LogsIndex Exclusion Filter[] List of exclusion filters.
- filters
Logs
Index Filter[] Logs filter
- name string
The name of the index.
- exclusion_
filters Sequence[LogsIndex Exclusion Filter Args] List of exclusion filters.
- filters
Sequence[Logs
Index Filter Args] Logs filter
- name str
The name of the index.
Supporting Types
LogsIndexExclusionFilter
- Filters
[]Logs
Index Exclusion Filter Filter - Is
Enabled bool - Name string
- filters
Logs
Index Exclusion Filter Filter[] - is
Enabled boolean - name string
LogsIndexExclusionFilterFilter
- Query string
- Sample
Rate double
- Query string
- Sample
Rate float64
- query string
- sample
Rate number
- query str
- sample_
rate float
LogsIndexFilter
- Query string
- Query string
- query string
- query str
Package Details
- Repository
- https://github.com/pulumi/pulumi-datadog
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
datadog
Terraform Provider.