pulumi-datadog 4.65.0a1769799992__py3-none-any.whl → 4.65.0a1770091275__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_datadog/_inputs.py +99 -79
- pulumi_datadog/observability_pipeline.py +2 -2
- pulumi_datadog/outputs.py +62 -48
- pulumi_datadog/pulumi-plugin.json +1 -1
- pulumi_datadog/sensitive_data_scanner_rule.py +1 -1
- {pulumi_datadog-4.65.0a1769799992.dist-info → pulumi_datadog-4.65.0a1770091275.dist-info}/METADATA +1 -1
- {pulumi_datadog-4.65.0a1769799992.dist-info → pulumi_datadog-4.65.0a1770091275.dist-info}/RECORD +9 -9
- {pulumi_datadog-4.65.0a1769799992.dist-info → pulumi_datadog-4.65.0a1770091275.dist-info}/WHEEL +0 -0
- {pulumi_datadog-4.65.0a1769799992.dist-info → pulumi_datadog-4.65.0a1770091275.dist-info}/top_level.txt +0 -0
pulumi_datadog/_inputs.py
CHANGED
|
@@ -1219,6 +1219,8 @@ __all__ = [
|
|
|
1219
1219
|
'ObservabilityPipelineConfigDestinationNewRelicArgsDict',
|
|
1220
1220
|
'ObservabilityPipelineConfigDestinationOpensearchArgs',
|
|
1221
1221
|
'ObservabilityPipelineConfigDestinationOpensearchArgsDict',
|
|
1222
|
+
'ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs',
|
|
1223
|
+
'ObservabilityPipelineConfigDestinationOpensearchDataStreamArgsDict',
|
|
1222
1224
|
'ObservabilityPipelineConfigDestinationRsyslogArgs',
|
|
1223
1225
|
'ObservabilityPipelineConfigDestinationRsyslogArgsDict',
|
|
1224
1226
|
'ObservabilityPipelineConfigDestinationRsyslogTlsArgs',
|
|
@@ -1273,8 +1275,6 @@ __all__ = [
|
|
|
1273
1275
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncodingArgsDict',
|
|
1274
1276
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKeyArgs',
|
|
1275
1277
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKeyArgsDict',
|
|
1276
|
-
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs',
|
|
1277
|
-
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgsDict',
|
|
1278
1278
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoipArgs',
|
|
1279
1279
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoipArgsDict',
|
|
1280
1280
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableReferenceTableArgs',
|
|
@@ -63062,18 +63062,26 @@ if not MYPY:
|
|
|
63062
63062
|
"""
|
|
63063
63063
|
The index or datastream to write logs to.
|
|
63064
63064
|
"""
|
|
63065
|
+
data_stream: NotRequired[pulumi.Input['ObservabilityPipelineConfigDestinationOpensearchDataStreamArgsDict']]
|
|
63066
|
+
"""
|
|
63067
|
+
Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
|
|
63068
|
+
"""
|
|
63065
63069
|
elif False:
|
|
63066
63070
|
ObservabilityPipelineConfigDestinationOpensearchArgsDict: TypeAlias = Mapping[str, Any]
|
|
63067
63071
|
|
|
63068
63072
|
@pulumi.input_type
|
|
63069
63073
|
class ObservabilityPipelineConfigDestinationOpensearchArgs:
|
|
63070
63074
|
def __init__(__self__, *,
|
|
63071
|
-
bulk_index: Optional[pulumi.Input[_builtins.str]] = None
|
|
63075
|
+
bulk_index: Optional[pulumi.Input[_builtins.str]] = None,
|
|
63076
|
+
data_stream: Optional[pulumi.Input['ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs']] = None):
|
|
63072
63077
|
"""
|
|
63073
63078
|
:param pulumi.Input[_builtins.str] bulk_index: The index or datastream to write logs to.
|
|
63079
|
+
:param pulumi.Input['ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs'] data_stream: Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
|
|
63074
63080
|
"""
|
|
63075
63081
|
if bulk_index is not None:
|
|
63076
63082
|
pulumi.set(__self__, "bulk_index", bulk_index)
|
|
63083
|
+
if data_stream is not None:
|
|
63084
|
+
pulumi.set(__self__, "data_stream", data_stream)
|
|
63077
63085
|
|
|
63078
63086
|
@_builtins.property
|
|
63079
63087
|
@pulumi.getter(name="bulkIndex")
|
|
@@ -63087,6 +63095,90 @@ class ObservabilityPipelineConfigDestinationOpensearchArgs:
|
|
|
63087
63095
|
def bulk_index(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
63088
63096
|
pulumi.set(self, "bulk_index", value)
|
|
63089
63097
|
|
|
63098
|
+
@_builtins.property
|
|
63099
|
+
@pulumi.getter(name="dataStream")
|
|
63100
|
+
def data_stream(self) -> Optional[pulumi.Input['ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs']]:
|
|
63101
|
+
"""
|
|
63102
|
+
Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
|
|
63103
|
+
"""
|
|
63104
|
+
return pulumi.get(self, "data_stream")
|
|
63105
|
+
|
|
63106
|
+
@data_stream.setter
|
|
63107
|
+
def data_stream(self, value: Optional[pulumi.Input['ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs']]):
|
|
63108
|
+
pulumi.set(self, "data_stream", value)
|
|
63109
|
+
|
|
63110
|
+
|
|
63111
|
+
if not MYPY:
|
|
63112
|
+
class ObservabilityPipelineConfigDestinationOpensearchDataStreamArgsDict(TypedDict):
|
|
63113
|
+
dataset: NotRequired[pulumi.Input[_builtins.str]]
|
|
63114
|
+
"""
|
|
63115
|
+
The data stream dataset for your logs. This groups logs by their source or application.
|
|
63116
|
+
"""
|
|
63117
|
+
dtype: NotRequired[pulumi.Input[_builtins.str]]
|
|
63118
|
+
"""
|
|
63119
|
+
The data stream type for your logs. This determines how logs are categorized within the data stream.
|
|
63120
|
+
"""
|
|
63121
|
+
namespace: NotRequired[pulumi.Input[_builtins.str]]
|
|
63122
|
+
"""
|
|
63123
|
+
The data stream namespace for your logs. This separates logs into different environments or domains.
|
|
63124
|
+
"""
|
|
63125
|
+
elif False:
|
|
63126
|
+
ObservabilityPipelineConfigDestinationOpensearchDataStreamArgsDict: TypeAlias = Mapping[str, Any]
|
|
63127
|
+
|
|
63128
|
+
@pulumi.input_type
|
|
63129
|
+
class ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs:
|
|
63130
|
+
def __init__(__self__, *,
|
|
63131
|
+
dataset: Optional[pulumi.Input[_builtins.str]] = None,
|
|
63132
|
+
dtype: Optional[pulumi.Input[_builtins.str]] = None,
|
|
63133
|
+
namespace: Optional[pulumi.Input[_builtins.str]] = None):
|
|
63134
|
+
"""
|
|
63135
|
+
:param pulumi.Input[_builtins.str] dataset: The data stream dataset for your logs. This groups logs by their source or application.
|
|
63136
|
+
:param pulumi.Input[_builtins.str] dtype: The data stream type for your logs. This determines how logs are categorized within the data stream.
|
|
63137
|
+
:param pulumi.Input[_builtins.str] namespace: The data stream namespace for your logs. This separates logs into different environments or domains.
|
|
63138
|
+
"""
|
|
63139
|
+
if dataset is not None:
|
|
63140
|
+
pulumi.set(__self__, "dataset", dataset)
|
|
63141
|
+
if dtype is not None:
|
|
63142
|
+
pulumi.set(__self__, "dtype", dtype)
|
|
63143
|
+
if namespace is not None:
|
|
63144
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
63145
|
+
|
|
63146
|
+
@_builtins.property
|
|
63147
|
+
@pulumi.getter
|
|
63148
|
+
def dataset(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
63149
|
+
"""
|
|
63150
|
+
The data stream dataset for your logs. This groups logs by their source or application.
|
|
63151
|
+
"""
|
|
63152
|
+
return pulumi.get(self, "dataset")
|
|
63153
|
+
|
|
63154
|
+
@dataset.setter
|
|
63155
|
+
def dataset(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
63156
|
+
pulumi.set(self, "dataset", value)
|
|
63157
|
+
|
|
63158
|
+
@_builtins.property
|
|
63159
|
+
@pulumi.getter
|
|
63160
|
+
def dtype(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
63161
|
+
"""
|
|
63162
|
+
The data stream type for your logs. This determines how logs are categorized within the data stream.
|
|
63163
|
+
"""
|
|
63164
|
+
return pulumi.get(self, "dtype")
|
|
63165
|
+
|
|
63166
|
+
@dtype.setter
|
|
63167
|
+
def dtype(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
63168
|
+
pulumi.set(self, "dtype", value)
|
|
63169
|
+
|
|
63170
|
+
@_builtins.property
|
|
63171
|
+
@pulumi.getter
|
|
63172
|
+
def namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
63173
|
+
"""
|
|
63174
|
+
The data stream namespace for your logs. This separates logs into different environments or domains.
|
|
63175
|
+
"""
|
|
63176
|
+
return pulumi.get(self, "namespace")
|
|
63177
|
+
|
|
63178
|
+
@namespace.setter
|
|
63179
|
+
def namespace(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
63180
|
+
pulumi.set(self, "namespace", value)
|
|
63181
|
+
|
|
63090
63182
|
|
|
63091
63183
|
if not MYPY:
|
|
63092
63184
|
class ObservabilityPipelineConfigDestinationRsyslogArgsDict(TypedDict):
|
|
@@ -65042,10 +65134,6 @@ if not MYPY:
|
|
|
65042
65134
|
"""
|
|
65043
65135
|
Path to the CSV file.
|
|
65044
65136
|
"""
|
|
65045
|
-
schemas: NotRequired[pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgsDict']]]]
|
|
65046
|
-
"""
|
|
65047
|
-
Schema defining column names and their types.
|
|
65048
|
-
"""
|
|
65049
65137
|
elif False:
|
|
65050
65138
|
ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileArgsDict: TypeAlias = Mapping[str, Any]
|
|
65051
65139
|
|
|
@@ -65054,12 +65142,10 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileArgs:
|
|
|
65054
65142
|
def __init__(__self__, *,
|
|
65055
65143
|
encoding: Optional[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncodingArgs']] = None,
|
|
65056
65144
|
keys: Optional[pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKeyArgs']]]] = None,
|
|
65057
|
-
path: Optional[pulumi.Input[_builtins.str]] = None
|
|
65058
|
-
schemas: Optional[pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs']]]] = None):
|
|
65145
|
+
path: Optional[pulumi.Input[_builtins.str]] = None):
|
|
65059
65146
|
"""
|
|
65060
65147
|
:param pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKeyArgs']]] keys: Key fields used to look up enrichment values.
|
|
65061
65148
|
:param pulumi.Input[_builtins.str] path: Path to the CSV file.
|
|
65062
|
-
:param pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs']]] schemas: Schema defining column names and their types.
|
|
65063
65149
|
"""
|
|
65064
65150
|
if encoding is not None:
|
|
65065
65151
|
pulumi.set(__self__, "encoding", encoding)
|
|
@@ -65067,8 +65153,6 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileArgs:
|
|
|
65067
65153
|
pulumi.set(__self__, "keys", keys)
|
|
65068
65154
|
if path is not None:
|
|
65069
65155
|
pulumi.set(__self__, "path", path)
|
|
65070
|
-
if schemas is not None:
|
|
65071
|
-
pulumi.set(__self__, "schemas", schemas)
|
|
65072
65156
|
|
|
65073
65157
|
@_builtins.property
|
|
65074
65158
|
@pulumi.getter
|
|
@@ -65103,18 +65187,6 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileArgs:
|
|
|
65103
65187
|
def path(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
65104
65188
|
pulumi.set(self, "path", value)
|
|
65105
65189
|
|
|
65106
|
-
@_builtins.property
|
|
65107
|
-
@pulumi.getter
|
|
65108
|
-
def schemas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs']]]]:
|
|
65109
|
-
"""
|
|
65110
|
-
Schema defining column names and their types.
|
|
65111
|
-
"""
|
|
65112
|
-
return pulumi.get(self, "schemas")
|
|
65113
|
-
|
|
65114
|
-
@schemas.setter
|
|
65115
|
-
def schemas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs']]]]):
|
|
65116
|
-
pulumi.set(self, "schemas", value)
|
|
65117
|
-
|
|
65118
65190
|
|
|
65119
65191
|
if not MYPY:
|
|
65120
65192
|
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncodingArgsDict(TypedDict):
|
|
@@ -65258,58 +65330,6 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKeyAr
|
|
|
65258
65330
|
pulumi.set(self, "field", value)
|
|
65259
65331
|
|
|
65260
65332
|
|
|
65261
|
-
if not MYPY:
|
|
65262
|
-
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgsDict(TypedDict):
|
|
65263
|
-
column: NotRequired[pulumi.Input[_builtins.str]]
|
|
65264
|
-
"""
|
|
65265
|
-
The `items` `column`.
|
|
65266
|
-
"""
|
|
65267
|
-
type: NotRequired[pulumi.Input[_builtins.str]]
|
|
65268
|
-
"""
|
|
65269
|
-
The type of the column (e.g. string, boolean, integer, etc.).
|
|
65270
|
-
"""
|
|
65271
|
-
elif False:
|
|
65272
|
-
ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
|
65273
|
-
|
|
65274
|
-
@pulumi.input_type
|
|
65275
|
-
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs:
|
|
65276
|
-
def __init__(__self__, *,
|
|
65277
|
-
column: Optional[pulumi.Input[_builtins.str]] = None,
|
|
65278
|
-
type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
65279
|
-
"""
|
|
65280
|
-
:param pulumi.Input[_builtins.str] column: The `items` `column`.
|
|
65281
|
-
:param pulumi.Input[_builtins.str] type: The type of the column (e.g. string, boolean, integer, etc.).
|
|
65282
|
-
"""
|
|
65283
|
-
if column is not None:
|
|
65284
|
-
pulumi.set(__self__, "column", column)
|
|
65285
|
-
if type is not None:
|
|
65286
|
-
pulumi.set(__self__, "type", type)
|
|
65287
|
-
|
|
65288
|
-
@_builtins.property
|
|
65289
|
-
@pulumi.getter
|
|
65290
|
-
def column(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
65291
|
-
"""
|
|
65292
|
-
The `items` `column`.
|
|
65293
|
-
"""
|
|
65294
|
-
return pulumi.get(self, "column")
|
|
65295
|
-
|
|
65296
|
-
@column.setter
|
|
65297
|
-
def column(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
65298
|
-
pulumi.set(self, "column", value)
|
|
65299
|
-
|
|
65300
|
-
@_builtins.property
|
|
65301
|
-
@pulumi.getter
|
|
65302
|
-
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
65303
|
-
"""
|
|
65304
|
-
The type of the column (e.g. string, boolean, integer, etc.).
|
|
65305
|
-
"""
|
|
65306
|
-
return pulumi.get(self, "type")
|
|
65307
|
-
|
|
65308
|
-
@type.setter
|
|
65309
|
-
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
65310
|
-
pulumi.set(self, "type", value)
|
|
65311
|
-
|
|
65312
|
-
|
|
65313
65333
|
if not MYPY:
|
|
65314
65334
|
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoipArgsDict(TypedDict):
|
|
65315
65335
|
key_field: NotRequired[pulumi.Input[_builtins.str]]
|
|
@@ -69080,7 +69100,7 @@ if not MYPY:
|
|
|
69080
69100
|
"""
|
|
69081
69101
|
auth_strategy: NotRequired[pulumi.Input[_builtins.str]]
|
|
69082
69102
|
"""
|
|
69083
|
-
Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
|
|
69103
|
+
Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
|
|
69084
69104
|
"""
|
|
69085
69105
|
scrape_interval_secs: NotRequired[pulumi.Input[_builtins.int]]
|
|
69086
69106
|
"""
|
|
@@ -69107,7 +69127,7 @@ class ObservabilityPipelineConfigSourceHttpClientArgs:
|
|
|
69107
69127
|
tls: Optional[pulumi.Input['ObservabilityPipelineConfigSourceHttpClientTlsArgs']] = None):
|
|
69108
69128
|
"""
|
|
69109
69129
|
:param pulumi.Input[_builtins.str] decoding: The decoding format used to interpret incoming logs.
|
|
69110
|
-
:param pulumi.Input[_builtins.str] auth_strategy: Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
|
|
69130
|
+
:param pulumi.Input[_builtins.str] auth_strategy: Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
|
|
69111
69131
|
:param pulumi.Input[_builtins.int] scrape_interval_secs: The interval (in seconds) between HTTP scrape requests.
|
|
69112
69132
|
:param pulumi.Input[_builtins.int] scrape_timeout_secs: The timeout (in seconds) for each scrape request.
|
|
69113
69133
|
:param pulumi.Input['ObservabilityPipelineConfigSourceHttpClientTlsArgs'] tls: Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
@@ -69138,7 +69158,7 @@ class ObservabilityPipelineConfigSourceHttpClientArgs:
|
|
|
69138
69158
|
@pulumi.getter(name="authStrategy")
|
|
69139
69159
|
def auth_strategy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
69140
69160
|
"""
|
|
69141
|
-
Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
|
|
69161
|
+
Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
|
|
69142
69162
|
"""
|
|
69143
69163
|
return pulumi.get(self, "auth_strategy")
|
|
69144
69164
|
|
|
@@ -107,7 +107,7 @@ class ObservabilityPipeline(pulumi.CustomResource):
|
|
|
107
107
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
108
108
|
__props__=None):
|
|
109
109
|
"""
|
|
110
|
-
Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations.
|
|
110
|
+
Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations.
|
|
111
111
|
|
|
112
112
|
Datadog recommends using the `-parallelism=1` option to apply this resource.
|
|
113
113
|
|
|
@@ -198,7 +198,7 @@ class ObservabilityPipeline(pulumi.CustomResource):
|
|
|
198
198
|
args: ObservabilityPipelineArgs,
|
|
199
199
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
200
200
|
"""
|
|
201
|
-
Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations.
|
|
201
|
+
Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations.
|
|
202
202
|
|
|
203
203
|
Datadog recommends using the `-parallelism=1` option to apply this resource.
|
|
204
204
|
|
pulumi_datadog/outputs.py
CHANGED
|
@@ -618,6 +618,7 @@ __all__ = [
|
|
|
618
618
|
'ObservabilityPipelineConfigDestinationMicrosoftSentinel',
|
|
619
619
|
'ObservabilityPipelineConfigDestinationNewRelic',
|
|
620
620
|
'ObservabilityPipelineConfigDestinationOpensearch',
|
|
621
|
+
'ObservabilityPipelineConfigDestinationOpensearchDataStream',
|
|
621
622
|
'ObservabilityPipelineConfigDestinationRsyslog',
|
|
622
623
|
'ObservabilityPipelineConfigDestinationRsyslogTls',
|
|
623
624
|
'ObservabilityPipelineConfigDestinationSentinelOne',
|
|
@@ -645,7 +646,6 @@ __all__ = [
|
|
|
645
646
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFile',
|
|
646
647
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncoding',
|
|
647
648
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKey',
|
|
648
|
-
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema',
|
|
649
649
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoip',
|
|
650
650
|
'ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableReferenceTable',
|
|
651
651
|
'ObservabilityPipelineConfigProcessorGroupProcessorFilter',
|
|
@@ -45920,6 +45920,8 @@ class ObservabilityPipelineConfigDestinationOpensearch(dict):
|
|
|
45920
45920
|
suggest = None
|
|
45921
45921
|
if key == "bulkIndex":
|
|
45922
45922
|
suggest = "bulk_index"
|
|
45923
|
+
elif key == "dataStream":
|
|
45924
|
+
suggest = "data_stream"
|
|
45923
45925
|
|
|
45924
45926
|
if suggest:
|
|
45925
45927
|
pulumi.log.warn(f"Key '{key}' not found in ObservabilityPipelineConfigDestinationOpensearch. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -45933,12 +45935,16 @@ class ObservabilityPipelineConfigDestinationOpensearch(dict):
|
|
|
45933
45935
|
return super().get(key, default)
|
|
45934
45936
|
|
|
45935
45937
|
def __init__(__self__, *,
|
|
45936
|
-
bulk_index: Optional[_builtins.str] = None
|
|
45938
|
+
bulk_index: Optional[_builtins.str] = None,
|
|
45939
|
+
data_stream: Optional['outputs.ObservabilityPipelineConfigDestinationOpensearchDataStream'] = None):
|
|
45937
45940
|
"""
|
|
45938
45941
|
:param _builtins.str bulk_index: The index or datastream to write logs to.
|
|
45942
|
+
:param 'ObservabilityPipelineConfigDestinationOpensearchDataStreamArgs' data_stream: Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
|
|
45939
45943
|
"""
|
|
45940
45944
|
if bulk_index is not None:
|
|
45941
45945
|
pulumi.set(__self__, "bulk_index", bulk_index)
|
|
45946
|
+
if data_stream is not None:
|
|
45947
|
+
pulumi.set(__self__, "data_stream", data_stream)
|
|
45942
45948
|
|
|
45943
45949
|
@_builtins.property
|
|
45944
45950
|
@pulumi.getter(name="bulkIndex")
|
|
@@ -45948,6 +45954,57 @@ class ObservabilityPipelineConfigDestinationOpensearch(dict):
|
|
|
45948
45954
|
"""
|
|
45949
45955
|
return pulumi.get(self, "bulk_index")
|
|
45950
45956
|
|
|
45957
|
+
@_builtins.property
|
|
45958
|
+
@pulumi.getter(name="dataStream")
|
|
45959
|
+
def data_stream(self) -> Optional['outputs.ObservabilityPipelineConfigDestinationOpensearchDataStream']:
|
|
45960
|
+
"""
|
|
45961
|
+
Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
|
|
45962
|
+
"""
|
|
45963
|
+
return pulumi.get(self, "data_stream")
|
|
45964
|
+
|
|
45965
|
+
|
|
45966
|
+
@pulumi.output_type
|
|
45967
|
+
class ObservabilityPipelineConfigDestinationOpensearchDataStream(dict):
|
|
45968
|
+
def __init__(__self__, *,
|
|
45969
|
+
dataset: Optional[_builtins.str] = None,
|
|
45970
|
+
dtype: Optional[_builtins.str] = None,
|
|
45971
|
+
namespace: Optional[_builtins.str] = None):
|
|
45972
|
+
"""
|
|
45973
|
+
:param _builtins.str dataset: The data stream dataset for your logs. This groups logs by their source or application.
|
|
45974
|
+
:param _builtins.str dtype: The data stream type for your logs. This determines how logs are categorized within the data stream.
|
|
45975
|
+
:param _builtins.str namespace: The data stream namespace for your logs. This separates logs into different environments or domains.
|
|
45976
|
+
"""
|
|
45977
|
+
if dataset is not None:
|
|
45978
|
+
pulumi.set(__self__, "dataset", dataset)
|
|
45979
|
+
if dtype is not None:
|
|
45980
|
+
pulumi.set(__self__, "dtype", dtype)
|
|
45981
|
+
if namespace is not None:
|
|
45982
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
45983
|
+
|
|
45984
|
+
@_builtins.property
|
|
45985
|
+
@pulumi.getter
|
|
45986
|
+
def dataset(self) -> Optional[_builtins.str]:
|
|
45987
|
+
"""
|
|
45988
|
+
The data stream dataset for your logs. This groups logs by their source or application.
|
|
45989
|
+
"""
|
|
45990
|
+
return pulumi.get(self, "dataset")
|
|
45991
|
+
|
|
45992
|
+
@_builtins.property
|
|
45993
|
+
@pulumi.getter
|
|
45994
|
+
def dtype(self) -> Optional[_builtins.str]:
|
|
45995
|
+
"""
|
|
45996
|
+
The data stream type for your logs. This determines how logs are categorized within the data stream.
|
|
45997
|
+
"""
|
|
45998
|
+
return pulumi.get(self, "dtype")
|
|
45999
|
+
|
|
46000
|
+
@_builtins.property
|
|
46001
|
+
@pulumi.getter
|
|
46002
|
+
def namespace(self) -> Optional[_builtins.str]:
|
|
46003
|
+
"""
|
|
46004
|
+
The data stream namespace for your logs. This separates logs into different environments or domains.
|
|
46005
|
+
"""
|
|
46006
|
+
return pulumi.get(self, "namespace")
|
|
46007
|
+
|
|
45951
46008
|
|
|
45952
46009
|
@pulumi.output_type
|
|
45953
46010
|
class ObservabilityPipelineConfigDestinationRsyslog(dict):
|
|
@@ -47322,12 +47379,10 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFile(dict
|
|
|
47322
47379
|
def __init__(__self__, *,
|
|
47323
47380
|
encoding: Optional['outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncoding'] = None,
|
|
47324
47381
|
keys: Optional[Sequence['outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKey']] = None,
|
|
47325
|
-
path: Optional[_builtins.str] = None
|
|
47326
|
-
schemas: Optional[Sequence['outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema']] = None):
|
|
47382
|
+
path: Optional[_builtins.str] = None):
|
|
47327
47383
|
"""
|
|
47328
47384
|
:param Sequence['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKeyArgs'] keys: Key fields used to look up enrichment values.
|
|
47329
47385
|
:param _builtins.str path: Path to the CSV file.
|
|
47330
|
-
:param Sequence['ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchemaArgs'] schemas: Schema defining column names and their types.
|
|
47331
47386
|
"""
|
|
47332
47387
|
if encoding is not None:
|
|
47333
47388
|
pulumi.set(__self__, "encoding", encoding)
|
|
@@ -47335,8 +47390,6 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFile(dict
|
|
|
47335
47390
|
pulumi.set(__self__, "keys", keys)
|
|
47336
47391
|
if path is not None:
|
|
47337
47392
|
pulumi.set(__self__, "path", path)
|
|
47338
|
-
if schemas is not None:
|
|
47339
|
-
pulumi.set(__self__, "schemas", schemas)
|
|
47340
47393
|
|
|
47341
47394
|
@_builtins.property
|
|
47342
47395
|
@pulumi.getter
|
|
@@ -47359,14 +47412,6 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFile(dict
|
|
|
47359
47412
|
"""
|
|
47360
47413
|
return pulumi.get(self, "path")
|
|
47361
47414
|
|
|
47362
|
-
@_builtins.property
|
|
47363
|
-
@pulumi.getter
|
|
47364
|
-
def schemas(self) -> Optional[Sequence['outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema']]:
|
|
47365
|
-
"""
|
|
47366
|
-
Schema defining column names and their types.
|
|
47367
|
-
"""
|
|
47368
|
-
return pulumi.get(self, "schemas")
|
|
47369
|
-
|
|
47370
47415
|
|
|
47371
47416
|
@pulumi.output_type
|
|
47372
47417
|
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncoding(dict):
|
|
@@ -47469,37 +47514,6 @@ class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileKey(d
|
|
|
47469
47514
|
return pulumi.get(self, "field")
|
|
47470
47515
|
|
|
47471
47516
|
|
|
47472
|
-
@pulumi.output_type
|
|
47473
|
-
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema(dict):
|
|
47474
|
-
def __init__(__self__, *,
|
|
47475
|
-
column: Optional[_builtins.str] = None,
|
|
47476
|
-
type: Optional[_builtins.str] = None):
|
|
47477
|
-
"""
|
|
47478
|
-
:param _builtins.str column: The `items` `column`.
|
|
47479
|
-
:param _builtins.str type: The type of the column (e.g. string, boolean, integer, etc.).
|
|
47480
|
-
"""
|
|
47481
|
-
if column is not None:
|
|
47482
|
-
pulumi.set(__self__, "column", column)
|
|
47483
|
-
if type is not None:
|
|
47484
|
-
pulumi.set(__self__, "type", type)
|
|
47485
|
-
|
|
47486
|
-
@_builtins.property
|
|
47487
|
-
@pulumi.getter
|
|
47488
|
-
def column(self) -> Optional[_builtins.str]:
|
|
47489
|
-
"""
|
|
47490
|
-
The `items` `column`.
|
|
47491
|
-
"""
|
|
47492
|
-
return pulumi.get(self, "column")
|
|
47493
|
-
|
|
47494
|
-
@_builtins.property
|
|
47495
|
-
@pulumi.getter
|
|
47496
|
-
def type(self) -> Optional[_builtins.str]:
|
|
47497
|
-
"""
|
|
47498
|
-
The type of the column (e.g. string, boolean, integer, etc.).
|
|
47499
|
-
"""
|
|
47500
|
-
return pulumi.get(self, "type")
|
|
47501
|
-
|
|
47502
|
-
|
|
47503
47517
|
@pulumi.output_type
|
|
47504
47518
|
class ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoip(dict):
|
|
47505
47519
|
@staticmethod
|
|
@@ -50261,7 +50275,7 @@ class ObservabilityPipelineConfigSourceHttpClient(dict):
|
|
|
50261
50275
|
tls: Optional['outputs.ObservabilityPipelineConfigSourceHttpClientTls'] = None):
|
|
50262
50276
|
"""
|
|
50263
50277
|
:param _builtins.str decoding: The decoding format used to interpret incoming logs.
|
|
50264
|
-
:param _builtins.str auth_strategy: Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
|
|
50278
|
+
:param _builtins.str auth_strategy: Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
|
|
50265
50279
|
:param _builtins.int scrape_interval_secs: The interval (in seconds) between HTTP scrape requests.
|
|
50266
50280
|
:param _builtins.int scrape_timeout_secs: The timeout (in seconds) for each scrape request.
|
|
50267
50281
|
:param 'ObservabilityPipelineConfigSourceHttpClientTlsArgs' tls: Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
@@ -50288,7 +50302,7 @@ class ObservabilityPipelineConfigSourceHttpClient(dict):
|
|
|
50288
50302
|
@pulumi.getter(name="authStrategy")
|
|
50289
50303
|
def auth_strategy(self) -> Optional[_builtins.str]:
|
|
50290
50304
|
"""
|
|
50291
|
-
Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
|
|
50305
|
+
Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
|
|
50292
50306
|
"""
|
|
50293
50307
|
return pulumi.get(self, "auth_strategy")
|
|
50294
50308
|
|
|
@@ -615,7 +615,7 @@ class SensitiveDataScannerRule(pulumi.CustomResource):
|
|
|
615
615
|
|
|
616
616
|
@_builtins.property
|
|
617
617
|
@pulumi.getter(name="includedKeywordConfiguration")
|
|
618
|
-
def included_keyword_configuration(self) -> pulumi.Output[
|
|
618
|
+
def included_keyword_configuration(self) -> pulumi.Output['outputs.SensitiveDataScannerRuleIncludedKeywordConfiguration']:
|
|
619
619
|
"""
|
|
620
620
|
Object defining a set of keywords and a number of characters that help reduce noise. You can provide a list of keywords you would like to check within a defined proximity of the matching pattern. If any of the keywords are found within the proximity check then the match is kept. If none are found, the match is discarded. If the rule has the `standard_pattern_id` field, then discarding this field will apply the recommended keywords. Setting the `create_before_destroy` lifecycle Meta-argument to `true` is highly recommended if modifying this field to avoid unexpectedly disabling Sensitive Data Scanner groups.
|
|
621
621
|
"""
|
{pulumi_datadog-4.65.0a1769799992.dist-info → pulumi_datadog-4.65.0a1770091275.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_datadog/__init__.py,sha256=t3i8gQKGf4UZ7Pp-g9e-Oj-3qJH5YtrL45Z0_izHqSY,32726
|
|
2
|
-
pulumi_datadog/_inputs.py,sha256=
|
|
2
|
+
pulumi_datadog/_inputs.py,sha256=W64drpdgF-TWc_cNdlTzSgA-35dP078kgsb_DRebo4M,6389284
|
|
3
3
|
pulumi_datadog/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_datadog/action_connection.py,sha256=ltCWudGwXkqbIgD-f3rySesLvTaTcKfeeJ2a-CrCJ2A,15408
|
|
5
5
|
pulumi_datadog/agentless_scanning_aws_scan_options.py,sha256=1MVA_g8OmJRxaR05P8w1AXr24nzZsV9FYgSglQOT7D0,18168
|
|
@@ -125,7 +125,7 @@ pulumi_datadog/monitor.py,sha256=ZYw7BLm6basY5wdc4q0L2kpeUff6RtOeWMD6QgCEKcc,119
|
|
|
125
125
|
pulumi_datadog/monitor_config_policy.py,sha256=uVL8EnBUO5agKCh_sqlWCYqMqp12zeuTFi-BMb_WxKQ,10194
|
|
126
126
|
pulumi_datadog/monitor_json.py,sha256=lOfasfHki8UCNP966DoqLc2KyajirJLr-iPUvpizTMo,10612
|
|
127
127
|
pulumi_datadog/monitor_notification_rule.py,sha256=O7u_-LAq_VVsQ5X8hqey5JntRjarZaWa3it8RGPNm8U,15702
|
|
128
|
-
pulumi_datadog/observability_pipeline.py,sha256=
|
|
128
|
+
pulumi_datadog/observability_pipeline.py,sha256=zoDXa-d3fFv7BSCpPWvAqNc55nt1ofEyDOcbXhOzj_Y,14071
|
|
129
129
|
pulumi_datadog/on_call_escalation_policy.py,sha256=hWcRH6wcMPgEti0gn09PjpK98YShykmmvb6jY1bYAqk,19332
|
|
130
130
|
pulumi_datadog/on_call_schedule.py,sha256=4E1H4F6vDdWu_9wgX6FhIF4CBJkr_PJkyEz-TfcgwW8,16518
|
|
131
131
|
pulumi_datadog/on_call_team_routing_rules.py,sha256=ifdMcgNmcoUyqokqidYTyJT2-anAPfscJGumrEUy8KA,11867
|
|
@@ -134,10 +134,10 @@ pulumi_datadog/on_call_user_notification_rule.py,sha256=RwXgZLQdmSqJGYNPXjwMuoBc
|
|
|
134
134
|
pulumi_datadog/openapi_api.py,sha256=gzGnlfRROU2agG4Z07W6kJKO4_NXGrB3ssbBPTy4N88,7964
|
|
135
135
|
pulumi_datadog/org_connection.py,sha256=uM1BfGSqe-sLDYsWWQUDsG52bBnnkrnfc8ehkpOJFTI,16809
|
|
136
136
|
pulumi_datadog/organization_settings.py,sha256=M6ZIIfrXrymL5E5y2-REIDZSoJzrbWLlf4pSRqHrK_k,14599
|
|
137
|
-
pulumi_datadog/outputs.py,sha256=
|
|
137
|
+
pulumi_datadog/outputs.py,sha256=HqIIbZ90ltJtB4jCrxvCiQ0QKypOT_D9Taed2wIk9pc,4529723
|
|
138
138
|
pulumi_datadog/powerpack.py,sha256=0AoTFNafihtPED5_svxohMEq4dZCiAwZeCa8UBzetoY,25640
|
|
139
139
|
pulumi_datadog/provider.py,sha256=y5qSSKNilMZ0T_07LAQ3D5NS_MHj4lWVXEOQbEmwuhc,34051
|
|
140
|
-
pulumi_datadog/pulumi-plugin.json,sha256=
|
|
140
|
+
pulumi_datadog/pulumi-plugin.json,sha256=OHV7G57RIBORwssP6K8d9Jlu2BOCTQe6amtYGdpb37A,84
|
|
141
141
|
pulumi_datadog/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
142
|
pulumi_datadog/reference_table.py,sha256=BoetwwQX-ic0C0QghIYgZ5O1x0BEhMA9k-0GcXHs5nI,31826
|
|
143
143
|
pulumi_datadog/restriction_policy.py,sha256=Acoxi7R1ANJtfR8y_Ti8ySLyLvnqg2tjp3t22kxUXe8,10173
|
|
@@ -155,7 +155,7 @@ pulumi_datadog/security_monitoring_suppression.py,sha256=OukfbknqUi4VkGm-xra4f9M
|
|
|
155
155
|
pulumi_datadog/security_notification_rule.py,sha256=-lAmm4uqA0_6qbIAdyZ90UctwR1XadE9D7QgqkTI2Sk,28735
|
|
156
156
|
pulumi_datadog/sensitive_data_scanner_group.py,sha256=dWkAK6BSbRsyVsMwKcTgSJApyiyuPJm061E88otNXwQ,21890
|
|
157
157
|
pulumi_datadog/sensitive_data_scanner_group_order.py,sha256=oDAp0ozaMv7d-5Y5mw6JuZP7lxxq1Iy9yaQ850Xxqs4,8951
|
|
158
|
-
pulumi_datadog/sensitive_data_scanner_rule.py,sha256=
|
|
158
|
+
pulumi_datadog/sensitive_data_scanner_rule.py,sha256=9up7NCVZjf8O3hxQti3AJQTapszFmtzpAWdf_oeMLcs,40241
|
|
159
159
|
pulumi_datadog/service_account.py,sha256=4arHPnu5ZwFZmTMpZ8i7zbgxTTF3GwzvUynR0KOVlQ4,13391
|
|
160
160
|
pulumi_datadog/service_account_application_key.py,sha256=oCyLXQBMWUuEmqiK0FHYbYW5Dg6HwyLfeuLajslwahM,17707
|
|
161
161
|
pulumi_datadog/service_definition_yaml.py,sha256=hY1Gn9LkyzC6-CUXz__tFmPDjVwCQSBoq_16z1GRoxY,18385
|
|
@@ -232,7 +232,7 @@ pulumi_datadog/slack/__init__.py,sha256=Qw85Mps2qz6dYqIgbUlv0wvMAxJZ3_DFkVuBXOa6
|
|
|
232
232
|
pulumi_datadog/slack/_inputs.py,sha256=d2HE6EPv5gCWqcJn8WHKdDhfxUAf7HITa9dMznofSJ4,4976
|
|
233
233
|
pulumi_datadog/slack/channel.py,sha256=WmKZ43UDXxCcaoPxEwnOvKm4M5UdRedmDtPeIxcBlGA,11929
|
|
234
234
|
pulumi_datadog/slack/outputs.py,sha256=2dHQCePDmq_bp4uUBVcZC376nTblMCh4nart5q1ZZBU,3689
|
|
235
|
-
pulumi_datadog-4.65.
|
|
236
|
-
pulumi_datadog-4.65.
|
|
237
|
-
pulumi_datadog-4.65.
|
|
238
|
-
pulumi_datadog-4.65.
|
|
235
|
+
pulumi_datadog-4.65.0a1770091275.dist-info/METADATA,sha256=Zc8zc-s8q8PrM9BNvpVLmNVL-zmXXY9HM_gQvDec99Q,2982
|
|
236
|
+
pulumi_datadog-4.65.0a1770091275.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
237
|
+
pulumi_datadog-4.65.0a1770091275.dist-info/top_level.txt,sha256=tuEwlo-x2vb27M4S-mfocfIzKeklZ0C3dJHJ2Q8XSy0,15
|
|
238
|
+
pulumi_datadog-4.65.0a1770091275.dist-info/RECORD,,
|
{pulumi_datadog-4.65.0a1769799992.dist-info → pulumi_datadog-4.65.0a1770091275.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|