Skip to content

Commit 2e2b1e1

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 55b88fd3 of spec repo (#1020)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 6fae729 commit 2e2b1e1

File tree

12 files changed

+15
-61
lines changed

12 files changed

+15
-61
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.2",
7-
"regenerated": "2022-05-25 07:05:44.760972",
8-
"spec_repo_commit": "ee6c9cb0"
7+
"regenerated": "2022-05-26 16:07:23.358324",
8+
"spec_repo_commit": "55b88fd3"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.2",
12-
"regenerated": "2022-05-25 07:05:44.772272",
13-
"spec_repo_commit": "ee6c9cb0"
12+
"regenerated": "2022-05-26 16:07:23.376562",
13+
"spec_repo_commit": "55b88fd3"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23807,9 +23807,6 @@ paths:
2380723807
x-menu-order: 2
2380823808
x-undo:
2380923809
type: safe
23810-
x-unstable: '**Note**: This endpoint is in public beta.
23811-
23812-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
2381323810
post:
2381423811
description: Create an SLO Correction.
2381523812
operationId: CreateSLOCorrection
@@ -23868,9 +23865,6 @@ paths:
2386823865
- name: slo_correction_id
2386923866
source: data.id
2387023867
type: unsafe
23871-
x-unstable: '**Note**: This endpoint is in public beta.
23872-
23873-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
2387423868
/api/v1/slo/correction/{slo_correction_id}:
2387523869
delete:
2387623870
description: Permanently delete the specified SLO correction object.
@@ -23905,9 +23899,6 @@ paths:
2390523899
x-menu-order: 5
2390623900
x-undo:
2390723901
type: idempotent
23908-
x-unstable: '**Note**: This endpoint is in public beta.
23909-
23910-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
2391123902
get:
2391223903
description: Get an SLO correction.
2391323904
operationId: GetSLOCorrection
@@ -23945,9 +23936,6 @@ paths:
2394523936
x-menu-order: 3
2394623937
x-undo:
2394723938
type: safe
23948-
x-unstable: '**Note**: This endpoint is in public beta.
23949-
23950-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
2395123939
patch:
2395223940
description: Update the specified SLO correction object.
2395323941
operationId: UpdateSLOCorrection
@@ -23999,9 +23987,6 @@ paths:
2399923987
x-menu-order: 4
2400023988
x-undo:
2400123989
type: idempotent
24002-
x-unstable: '**Note**: This endpoint is in public beta.
24003-
24004-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
2400523990
/api/v1/slo/{slo_id}:
2400623991
delete:
2400723992
description: 'Permanently delete the specified service level objective object.
@@ -24205,9 +24190,6 @@ paths:
2420524190
x-menu-order: 6
2420624191
x-undo:
2420724192
type: safe
24208-
x-unstable: '**Note**: This endpoint is in public beta.
24209-
24210-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
2421124193
/api/v1/slo/{slo_id}/history:
2421224194
get:
2421324195
description: "Get a specific SLO\u2019s history, regardless of its SLO type.\n\nThe

examples/v1/service-level-objective-corrections/CreateSLOCorrection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
)
3232

3333
configuration = Configuration()
34-
configuration.unstable_operations["create_slo_correction"] = True
3534
with ApiClient(configuration) as api_client:
3635
api_instance = ServiceLevelObjectiveCorrectionsApi(api_client)
3736
response = api_instance.create_slo_correction(body=body)

examples/v1/service-level-objective-corrections/CreateSLOCorrection_1326388368.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
)
3232

3333
configuration = Configuration()
34-
configuration.unstable_operations["create_slo_correction"] = True
3534
with ApiClient(configuration) as api_client:
3635
api_instance = ServiceLevelObjectiveCorrectionsApi(api_client)
3736
response = api_instance.create_slo_correction(body=body)

examples/v1/service-level-objective-corrections/DeleteSLOCorrection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from datadog_api_client.v1.api.service_level_objective_corrections_api import ServiceLevelObjectiveCorrectionsApi
77

88
configuration = Configuration()
9-
configuration.unstable_operations["delete_slo_correction"] = True
109
with ApiClient(configuration) as api_client:
1110
api_instance = ServiceLevelObjectiveCorrectionsApi(api_client)
1211
api_instance.delete_slo_correction(

examples/v1/service-level-objective-corrections/GetSLOCorrection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
CORRECTION_DATA_ID = environ["CORRECTION_DATA_ID"]
1111

1212
configuration = Configuration()
13-
configuration.unstable_operations["get_slo_correction"] = True
1413
with ApiClient(configuration) as api_client:
1514
api_instance = ServiceLevelObjectiveCorrectionsApi(api_client)
1615
response = api_instance.get_slo_correction(

examples/v1/service-level-objective-corrections/ListSLOCorrection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from datadog_api_client.v1.api.service_level_objective_corrections_api import ServiceLevelObjectiveCorrectionsApi
77

88
configuration = Configuration()
9-
configuration.unstable_operations["list_slo_correction"] = True
109
with ApiClient(configuration) as api_client:
1110
api_instance = ServiceLevelObjectiveCorrectionsApi(api_client)
1211
response = api_instance.list_slo_correction()

examples/v1/service-level-objective-corrections/UpdateSLOCorrection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
)
3131

3232
configuration = Configuration()
33-
configuration.unstable_operations["update_slo_correction"] = True
3433
with ApiClient(configuration) as api_client:
3534
api_instance = ServiceLevelObjectiveCorrectionsApi(api_client)
3635
response = api_instance.update_slo_correction(slo_correction_id=CORRECTION_DATA_ID, body=body)

examples/v1/service-level-objectives/GetSLOCorrections.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
SLO_DATA_0_ID = environ["SLO_DATA_0_ID"]
1111

1212
configuration = Configuration()
13-
configuration.unstable_operations["get_slo_corrections"] = True
1413
with ApiClient(configuration) as api_client:
1514
api_instance = ServiceLevelObjectivesApi(api_client)
1615
response = api_instance.get_slo_corrections(

src/datadog_api_client/configuration.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,7 @@ def __init__(
197197
"v1.get_specified_daily_custom_reports": False,
198198
"v1.get_specified_monthly_custom_reports": False,
199199
"v1.get_usage_attribution": False,
200-
"v1.get_slo_corrections": False,
201200
"v1.get_slo_history": False,
202-
"v1.create_slo_correction": False,
203-
"v1.delete_slo_correction": False,
204-
"v1.get_slo_correction": False,
205-
"v1.list_slo_correction": False,
206-
"v1.update_slo_correction": False,
207201
"v2.create_incident": False,
208202
"v2.delete_incident": False,
209203
"v2.get_incident": False,

0 commit comments

Comments
 (0)