Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83957,8 +83957,6 @@ paths:
operator: OR
permissions:
- observability_pipelines_read
x-unstable: '**Note**: This endpoint is in Preview. Fill out this [form](https://www.datadoghq.com/product-preview/observability-pipelines-api-and-terraform-support/)
to request access.'
post:
description: Create a new pipeline.
operationId: CreatePipeline
Expand Down Expand Up @@ -83990,8 +83988,6 @@ paths:
operator: OR
permissions:
- observability_pipelines_deploy
x-unstable: '**Note**: This endpoint is in Preview. Fill out this [form](https://www.datadoghq.com/product-preview/observability-pipelines-api-and-terraform-support/)
to request access.'
/api/v2/obs-pipelines/pipelines/validate:
post:
description: 'Validates a pipeline configuration without creating or updating
Expand Down Expand Up @@ -84025,8 +84021,6 @@ paths:
operator: OR
permissions:
- observability_pipelines_read
x-unstable: '**Note**: This endpoint is in Preview. Fill out this [form](https://www.datadoghq.com/product-preview/observability-pipelines-api-and-terraform-support/)
to request access.'
/api/v2/obs-pipelines/pipelines/{pipeline_id}:
delete:
description: Delete a pipeline.
Expand Down Expand Up @@ -84068,8 +84062,6 @@ paths:
operator: OR
permissions:
- observability_pipelines_delete
x-unstable: '**Note**: This endpoint is in Preview. Fill out this [form](https://www.datadoghq.com/product-preview/observability-pipelines-api-and-terraform-support/)
to request access.'
get:
description: Get a specific pipeline by its ID.
operationId: GetPipeline
Expand Down Expand Up @@ -84102,8 +84094,6 @@ paths:
operator: OR
permissions:
- observability_pipelines_read
x-unstable: '**Note**: This endpoint is in Preview. Fill out this [form](https://www.datadoghq.com/product-preview/observability-pipelines-api-and-terraform-support/)
to request access.'
put:
description: Update a pipeline.
operationId: UpdatePipeline
Expand Down Expand Up @@ -84144,8 +84134,6 @@ paths:
operator: OR
permissions:
- observability_pipelines_deploy
x-unstable: '**Note**: This endpoint is in Preview. Fill out this [form](https://www.datadoghq.com/product-preview/observability-pipelines-api-and-terraform-support/)
to request access.'
/api/v2/on-call/escalation-policies:
post:
description: Create a new On-Call escalation policy
Expand Down
1 change: 0 additions & 1 deletion examples/v2/observability-pipelines/CreatePipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
)

configuration = Configuration()
configuration.unstable_operations["create_pipeline"] = True
with ApiClient(configuration) as api_client:
api_instance = ObservabilityPipelinesApi(api_client)
response = api_instance.create_pipeline(body=body)
Expand Down
1 change: 0 additions & 1 deletion examples/v2/observability-pipelines/DeletePipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
PIPELINE_DATA_ID = environ["PIPELINE_DATA_ID"]

configuration = Configuration()
configuration.unstable_operations["delete_pipeline"] = True
with ApiClient(configuration) as api_client:
api_instance = ObservabilityPipelinesApi(api_client)
api_instance.delete_pipeline(
Expand Down
1 change: 0 additions & 1 deletion examples/v2/observability-pipelines/GetPipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
PIPELINE_DATA_ID = environ["PIPELINE_DATA_ID"]

configuration = Configuration()
configuration.unstable_operations["get_pipeline"] = True
with ApiClient(configuration) as api_client:
api_instance = ObservabilityPipelinesApi(api_client)
response = api_instance.get_pipeline(
Expand Down
1 change: 0 additions & 1 deletion examples/v2/observability-pipelines/ListPipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from datadog_api_client.v2.api.observability_pipelines_api import ObservabilityPipelinesApi

configuration = Configuration()
configuration.unstable_operations["list_pipelines"] = True
with ApiClient(configuration) as api_client:
api_instance = ObservabilityPipelinesApi(api_client)
response = api_instance.list_pipelines()
Expand Down
1 change: 0 additions & 1 deletion examples/v2/observability-pipelines/UpdatePipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
)

configuration = Configuration()
configuration.unstable_operations["update_pipeline"] = True
with ApiClient(configuration) as api_client:
api_instance = ObservabilityPipelinesApi(api_client)
response = api_instance.update_pipeline(pipeline_id=PIPELINE_DATA_ID, body=body)
Expand Down
1 change: 0 additions & 1 deletion examples/v2/observability-pipelines/ValidatePipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
)

configuration = Configuration()
configuration.unstable_operations["validate_pipeline"] = True
with ApiClient(configuration) as api_client:
api_instance = ObservabilityPipelinesApi(api_client)
response = api_instance.validate_pipeline(body=body)
Expand Down
6 changes: 0 additions & 6 deletions src/datadog_api_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,12 +380,6 @@ def __init__(
"v2.update_monitor_user_template": False,
"v2.validate_existing_monitor_user_template": False,
"v2.validate_monitor_user_template": False,
"v2.create_pipeline": False,
"v2.delete_pipeline": False,
"v2.get_pipeline": False,
"v2.list_pipelines": False,
"v2.update_pipeline": False,
"v2.validate_pipeline": False,
"v2.list_role_templates": False,
"v2.create_connection": False,
"v2.delete_connection": False,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:36.842Z
2026-01-30T16:23:40.491Z
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:37.370Z
2026-01-30T16:23:40.989Z
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interactions:
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines
response:
body:
string: '{"data":{"id":"d33cceac-ed71-11f0-bd8c-da7ad0900002","type":"pipelines","attributes":{"name":"Main
string: '{"data":{"id":"0a44c8d2-fdf8-11f0-8d8c-da7ad0900002","type":"pipelines","attributes":{"name":"Main
Observability Pipeline","config":{"destinations":[{"id":"datadog-logs-destination","inputs":["my-processor-group"],"type":"datadog_logs"}],"processor_groups":[{"enabled":true,"id":"my-processor-group","include":"service:my-service","inputs":["datadog-agent-source"],"processors":[{"enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"processors":[{"enabled":true,"id":"my-processor-group","include":"service:my-service","inputs":["datadog-agent-source"],"processors":[{"enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"sources":[{"id":"datadog-agent-source","type":"datadog_agent"}]}}}}

'
Expand All @@ -27,7 +27,7 @@ interactions:
accept:
- '*/*'
method: DELETE
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/d33cceac-ed71-11f0-bd8c-da7ad0900002
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/0a44c8d2-fdf8-11f0-8d8c-da7ad0900002
response:
body:
string: ''
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:38.750Z
2026-01-30T16:23:42.608Z
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:39.305Z
2026-01-30T16:23:43.204Z
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interactions:
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines
response:
body:
string: '{"data":{"id":"d46478de-ed71-11f0-99c8-da7ad0900002","type":"pipelines","attributes":{"name":"Main
string: '{"data":{"id":"0b949d84-fdf8-11f0-8d8e-da7ad0900002","type":"pipelines","attributes":{"name":"Main
Observability Pipeline","config":{"destinations":[{"id":"datadog-logs-destination","inputs":["processor-group-0"],"type":"datadog_logs"}],"processor_groups":[{"display_name":"My
Processor Group","enabled":true,"id":"processor-group-0","include":"service:my-service","inputs":["datadog-agent-source"],"processors":[{"display_name":"My
Filter Processor","enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"processors":[{"display_name":"My
Expand All @@ -33,7 +33,7 @@ interactions:
accept:
- '*/*'
method: DELETE
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/d46478de-ed71-11f0-99c8-da7ad0900002
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/0b949d84-fdf8-11f0-8d8e-da7ad0900002
response:
body:
string: ''
Expand All @@ -49,7 +49,7 @@ interactions:
accept:
- '*/*'
method: DELETE
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/d46478de-ed71-11f0-99c8-da7ad0900002
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/0b949d84-fdf8-11f0-8d8e-da7ad0900002
response:
body:
string: '{"errors":[{"title":"Resource Not Found"}]}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:41.635Z
2026-01-30T16:23:45.333Z
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interactions:
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines
response:
body:
string: '{"data":{"id":"d5da36ae-ed71-11f0-bd8e-da7ad0900002","type":"pipelines","attributes":{"name":"Main
string: '{"data":{"id":"0cda650c-fdf8-11f0-9e92-da7ad0900002","type":"pipelines","attributes":{"name":"Main
Observability Pipeline","config":{"destinations":[{"id":"datadog-logs-destination","inputs":["processor-group-0"],"type":"datadog_logs"}],"processor_groups":[{"display_name":"My
Processor Group","enabled":true,"id":"processor-group-0","include":"service:my-service","inputs":["datadog-agent-source"],"processors":[{"display_name":"My
Filter Processor","enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"processors":[{"display_name":"My
Expand All @@ -33,10 +33,10 @@ interactions:
accept:
- application/json
method: GET
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/d5da36ae-ed71-11f0-bd8e-da7ad0900002
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/0cda650c-fdf8-11f0-9e92-da7ad0900002
response:
body:
string: '{"data":{"id":"d5da36ae-ed71-11f0-bd8e-da7ad0900002","type":"pipelines","attributes":{"name":"Main
string: '{"data":{"id":"0cda650c-fdf8-11f0-9e92-da7ad0900002","type":"pipelines","attributes":{"name":"Main
Observability Pipeline","config":{"destinations":[{"id":"datadog-logs-destination","inputs":["processor-group-0"],"type":"datadog_logs"}],"processor_groups":[{"display_name":"My
Processor Group","enabled":true,"id":"processor-group-0","include":"service:my-service","inputs":["datadog-agent-source"],"processors":[{"display_name":"My
Filter Processor","enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"processors":[{"display_name":"My
Expand All @@ -56,7 +56,7 @@ interactions:
accept:
- '*/*'
method: DELETE
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/d5da36ae-ed71-11f0-bd8e-da7ad0900002
uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/0cda650c-fdf8-11f0-9e92-da7ad0900002
response:
body:
string: ''
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:44.442Z
2026-01-30T16:23:47.526Z
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-09T15:42:45.631Z
2026-01-30T16:23:48.015Z
Loading