You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components).
43056
43058
example: aws-s3-source
@@ -43073,6 +43075,20 @@ components:
43073
43075
- region
43074
43076
type: object
43075
43077
x-pipeline-types: [logs]
43078
+
ObservabilityPipelineAmazonS3SourceCompression:
43079
+
description: Compression format for objects retrieved from the S3 bucket. Use `auto` to detect compression from the object's Content-Encoding header or file extension.
Copy file name to clipboardExpand all lines: cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-amazon-S3-source-compression-returns-OK-response.yml
Copy file name to clipboardExpand all lines: lib/datadog_api_client/v2/models/observability_pipeline_amazon_s3_source.rb
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
19
19
moduleDatadogAPIClient::V2
20
20
# The `amazon_s3` source ingests logs from an Amazon S3 bucket.
21
-
# It supports AWS authentication and TLS encryption.
21
+
# It supports AWS authentication, TLS encryption, and configurable compression.
22
22
#
23
23
# **Supported pipeline types:** logs
24
24
classObservabilityPipelineAmazonS3Source
@@ -28,6 +28,9 @@ class ObservabilityPipelineAmazonS3Source
28
28
# If omitted, the system’s default credentials are used (for example, the IAM role and environment variables).
29
29
attr_accessor:auth
30
30
31
+
# Compression format for objects retrieved from the S3 bucket. Use `auto` to detect compression from the object's Content-Encoding header or file extension.
32
+
attr_accessor:compression
33
+
31
34
# The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components).
32
35
attr_reader:id
33
36
@@ -50,6 +53,7 @@ class ObservabilityPipelineAmazonS3Source
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
11
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
12
+
Copyright 2020-Present Datadog, Inc.
13
+
14
+
=end
15
+
16
+
require'date'
17
+
require'time'
18
+
19
+
moduleDatadogAPIClient::V2
20
+
# Compression format for objects retrieved from the S3 bucket. Use `auto` to detect compression from the object's Content-Encoding header or file extension.
0 commit comments