Skip to content

Commit b6248e0

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit ef1331f of spec repo
1 parent e33ae0f commit b6248e0

File tree

47 files changed

+823
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+823
-69
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6684,6 +6684,8 @@ components:
66846684
description: Optional prefix for blobs written to the container.
66856685
example: logs/
66866686
type: string
6687+
buffer:
6688+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
66876689
container_name:
66886690
description: The name of the Azure Blob Storage container to store logs
66896691
in.
@@ -33334,6 +33336,8 @@ components:
3333433336
description: The `microsoft_sentinel` destination forwards logs to Microsoft
3333533337
Sentinel.
3333633338
properties:
33339+
buffer:
33340+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3333733341
client_id:
3333833342
description: Azure AD client ID used for authentication.
3333933343
example: a1b2c3d4-5678-90ab-cdef-1234567890ab
@@ -35211,6 +35215,8 @@ components:
3521135215
properties:
3521235216
auth:
3521335217
$ref: '#/components/schemas/ObservabilityPipelineAmazonOpenSearchDestinationAuth'
35218+
buffer:
35219+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3521435220
bulk_index:
3521535221
description: The index to write logs to.
3521635222
example: logs-index
@@ -35287,6 +35293,8 @@ components:
3528735293
description: S3 bucket name.
3528835294
example: error-logs
3528935295
type: string
35296+
buffer:
35297+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3529035298
id:
3529135299
description: Unique identifier for the destination component.
3529235300
example: amazon-s3-destination
@@ -35455,6 +35463,39 @@ components:
3545535463
role session.
3545635464
type: string
3545735465
type: object
35466+
ObservabilityPipelineBufferOptions:
35467+
description: Configuration for buffer settings on destination components.
35468+
oneOf:
35469+
- $ref: '#/components/schemas/ObservabilityPipelineDiskBufferOptions'
35470+
- $ref: '#/components/schemas/ObservabilityPipelineMemoryBufferOptions'
35471+
- $ref: '#/components/schemas/ObservabilityPipelineMemoryBufferSizeOptions'
35472+
ObservabilityPipelineBufferOptionsDiskType:
35473+
default: disk
35474+
description: The type of the buffer that will be configured, a disk buffer.
35475+
enum:
35476+
- disk
35477+
type: string
35478+
x-enum-varnames:
35479+
- DISK
35480+
ObservabilityPipelineBufferOptionsMemoryType:
35481+
default: memory
35482+
description: The type of the buffer that will be configured, a memory buffer.
35483+
enum:
35484+
- memory
35485+
type: string
35486+
x-enum-varnames:
35487+
- MEMORY
35488+
ObservabilityPipelineBufferOptionsWhenFull:
35489+
default: block
35490+
description: Behavior when the buffer is full (block and stop accepting new
35491+
events, or drop new events)
35492+
enum:
35493+
- block
35494+
- drop_newest
35495+
type: string
35496+
x-enum-varnames:
35497+
- BLOCK
35498+
- DROP_NEWEST
3545835499
ObservabilityPipelineComponentDisplayName:
3545935500
description: The display name for a component.
3546035501
example: my component
@@ -36020,12 +36061,27 @@ components:
3602036061
type: string
3602136062
x-enum-varnames:
3602236063
- DEDUPE
36064+
ObservabilityPipelineDiskBufferOptions:
36065+
description: Options for configuring a disk buffer.
36066+
properties:
36067+
max_size:
36068+
description: Maximum size of the disk buffer.
36069+
example: 4096
36070+
format: int64
36071+
type: integer
36072+
type:
36073+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsDiskType'
36074+
when_full:
36075+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsWhenFull'
36076+
type: object
3602336077
ObservabilityPipelineElasticsearchDestination:
3602436078
description: The `elasticsearch` destination writes logs to an Elasticsearch
3602536079
cluster.
3602636080
properties:
3602736081
api_version:
3602836082
$ref: '#/components/schemas/ObservabilityPipelineElasticsearchDestinationApiVersion'
36083+
buffer:
36084+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3602936085
bulk_index:
3603036086
description: The index to write logs to in Elasticsearch.
3603136087
example: logs-index
@@ -36496,6 +36552,8 @@ components:
3649636552
properties:
3649736553
auth:
3649836554
$ref: '#/components/schemas/ObservabilityPipelineGcpAuth'
36555+
buffer:
36556+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3649936557
customer_id:
3650036558
description: The Google Chronicle customer ID.
3650136559
example: abcdefg123456789
@@ -36559,6 +36617,8 @@ components:
3655936617
description: Name of the GCS bucket.
3656036618
example: error-logs
3656136619
type: string
36620+
buffer:
36621+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3656236622
id:
3656336623
description: Unique identifier for the destination component.
3656436624
example: gcs-destination
@@ -36925,6 +36985,28 @@ components:
3692536985
type: string
3692636986
x-enum-varnames:
3692736987
- LOGSTASH
36988+
ObservabilityPipelineMemoryBufferOptions:
36989+
description: Options for configuring a memory buffer by byte size.
36990+
properties:
36991+
max_size:
36992+
description: Maximum size of the disk buffer.
36993+
example: 4096
36994+
format: int64
36995+
type: integer
36996+
type:
36997+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsMemoryType'
36998+
type: object
36999+
ObservabilityPipelineMemoryBufferSizeOptions:
37000+
description: Options for configuring a memory buffer by queue length.
37001+
properties:
37002+
max_events:
37003+
description: Maximum events for the memory buffer.
37004+
example: 500
37005+
format: int64
37006+
type: integer
37007+
type:
37008+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsMemoryType'
37009+
type: object
3692837010
ObservabilityPipelineMetadataEntry:
3692937011
description: A custom metadata entry.
3693037012
properties:
@@ -36948,6 +37030,8 @@ components:
3694837030
ObservabilityPipelineNewRelicDestination:
3694937031
description: The `new_relic` destination sends logs to the New Relic platform.
3695037032
properties:
37033+
buffer:
37034+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3695137035
id:
3695237036
description: The unique identifier for this component.
3695337037
example: new-relic-destination
@@ -37084,6 +37168,8 @@ components:
3708437168
ObservabilityPipelineOpenSearchDestination:
3708537169
description: The `opensearch` destination writes logs to an OpenSearch cluster.
3708637170
properties:
37171+
buffer:
37172+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3708737173
bulk_index:
3708837174
description: The index to write logs to.
3708937175
example: logs-index
@@ -37635,6 +37721,8 @@ components:
3763537721
description: The `rsyslog` destination forwards logs to an external `rsyslog`
3763637722
server over TCP or UDP using the syslog protocol.
3763737723
properties:
37724+
buffer:
37725+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3763837726
id:
3763937727
description: The unique identifier for this component.
3764037728
example: rsyslog-destination
@@ -38105,6 +38193,8 @@ components:
3810538193
ObservabilityPipelineSentinelOneDestination:
3810638194
description: The `sentinel_one` destination sends logs to SentinelOne.
3810738195
properties:
38196+
buffer:
38197+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3810838198
id:
3810938199
description: The unique identifier for this component.
3811038200
example: sentinelone-destination
@@ -38453,6 +38543,8 @@ components:
3845338543
If `false`, Splunk assigns the time the event was received.'
3845438544
example: true
3845538545
type: boolean
38546+
buffer:
38547+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3845638548
encoding:
3845738549
$ref: '#/components/schemas/ObservabilityPipelineSplunkHecDestinationEncoding'
3845838550
id:
@@ -38562,6 +38654,8 @@ components:
3856238654
ObservabilityPipelineSumoLogicDestination:
3856338655
description: The `sumo_logic` destination forwards logs to Sumo Logic.
3856438656
properties:
38657+
buffer:
38658+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3856538659
encoding:
3856638660
$ref: '#/components/schemas/ObservabilityPipelineSumoLogicDestinationEncoding'
3856738661
header_custom_fields:
@@ -38665,6 +38759,8 @@ components:
3866538759
description: The `syslog_ng` destination forwards logs to an external `syslog-ng`
3866638760
server over TCP or UDP using the syslog protocol.
3866738761
properties:
38762+
buffer:
38763+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptions'
3866838764
id:
3866938765
description: The unique identifier for this component.
3867038766
example: syslog-ng-destination
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-12-18T16:15:15.575Z
1+
2026-01-05T15:04:52.209Z

cassettes/features/v2/observability_pipelines/Create-a-new-pipeline-returns-Bad-Request-response.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-12-18T16:15:16.062Z
1+
2026-01-05T15:04:52.887Z

cassettes/features/v2/observability_pipelines/Create-a-new-pipeline-returns-OK-response.yml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-12-18T16:15:17.165Z
1+
2026-01-05T15:04:54.785Z

cassettes/features/v2/observability_pipelines/Delete-a-pipeline-returns-Not-Found-response.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-12-18T16:15:17.716Z
1+
2026-01-05T15:04:55.371Z

cassettes/features/v2/observability_pipelines/Delete-a-pipeline-returns-OK-response.yml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-12-18T16:15:20.018Z
1+
2026-01-05T15:04:57.465Z

0 commit comments

Comments
 (0)