Skip to content

Commit 3174d94

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit fe2e0b5 of spec repo (#607)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 4aef06e commit 3174d94

33 files changed

+3688
-5
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.4.1.dev2",
7-
"regenerated": "2021-01-13 15:26:31.275709",
8-
"spec_repo_commit": "426d7a0"
7+
"regenerated": "2021-01-13 20:16:01.073732",
8+
"spec_repo_commit": "fe2e0b5"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev2",
12-
"regenerated": "2021-01-13 15:26:41.380079",
13-
"spec_repo_commit": "426d7a0"
12+
"regenerated": "2021-01-13 20:16:11.121788",
13+
"spec_repo_commit": "fe2e0b5"
1414
}
1515
}
1616
}

api_docs/v1/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ Class | Method | HTTP request | Description
9797
*PagerDutyIntegrationApi* | [**deletePagerDutyIntegrationService**](PagerDutyIntegrationApi.md#deletePagerDutyIntegrationService) | **DELETE** /api/v1/integration/pagerduty/configuration/services/{service_name} | Delete a single service object
9898
*PagerDutyIntegrationApi* | [**getPagerDutyIntegrationService**](PagerDutyIntegrationApi.md#getPagerDutyIntegrationService) | **GET** /api/v1/integration/pagerduty/configuration/services/{service_name} | Get a single service object
9999
*PagerDutyIntegrationApi* | [**updatePagerDutyIntegrationService**](PagerDutyIntegrationApi.md#updatePagerDutyIntegrationService) | **PUT** /api/v1/integration/pagerduty/configuration/services/{service_name} | Update a single service object
100+
*ServiceLevelObjectiveCorrectionsApi* | [**createSLOCorrection**](ServiceLevelObjectiveCorrectionsApi.md#createSLOCorrection) | **POST** /api/v1/slo/correction | Create an SLO correction
101+
*ServiceLevelObjectiveCorrectionsApi* | [**deleteSLOCorrection**](ServiceLevelObjectiveCorrectionsApi.md#deleteSLOCorrection) | **DELETE** /api/v1/slo/correction/{slo_correction_id} | Delete an SLO Correction
102+
*ServiceLevelObjectiveCorrectionsApi* | [**getSLOCorrection**](ServiceLevelObjectiveCorrectionsApi.md#getSLOCorrection) | **GET** /api/v1/slo/correction/{slo_correction_id} | Get an SLO correction for an SLO
103+
*ServiceLevelObjectiveCorrectionsApi* | [**listSLOCorrection**](ServiceLevelObjectiveCorrectionsApi.md#listSLOCorrection) | **GET** /api/v1/slo/correction | Get all SLO corrections
104+
*ServiceLevelObjectiveCorrectionsApi* | [**updateSLOCorrection**](ServiceLevelObjectiveCorrectionsApi.md#updateSLOCorrection) | **PATCH** /api/v1/slo/correction/{slo_correction_id} | Update an SLO Correction
100105
*ServiceLevelObjectivesApi* | [**checkCanDeleteSLO**](ServiceLevelObjectivesApi.md#checkCanDeleteSLO) | **GET** /api/v1/slo/can_delete | Check if SLOs can be safely deleted
101106
*ServiceLevelObjectivesApi* | [**createSLO**](ServiceLevelObjectivesApi.md#createSLO) | **POST** /api/v1/slo | Create a SLO object
102107
*ServiceLevelObjectivesApi* | [**deleteSLO**](ServiceLevelObjectivesApi.md#deleteSLO) | **DELETE** /api/v1/slo/{slo_id} | Delete a SLO
@@ -378,6 +383,18 @@ Class | Method | HTTP request | Description
378383
- [SLOBulkDeleteResponse](SLOBulkDeleteResponse.md)
379384
- [SLOBulkDeleteResponseData](SLOBulkDeleteResponseData.md)
380385
- [SLOBulkDeleteResponseErrors](SLOBulkDeleteResponseErrors.md)
386+
- [SLOCorrectionCategory](SLOCorrectionCategory.md)
387+
- [SLOCorrectionCreateRequest](SLOCorrectionCreateRequest.md)
388+
- [SLOCorrectionCreateRequestAttributes](SLOCorrectionCreateRequestAttributes.md)
389+
- [SLOCorrectionCreateRequestData](SLOCorrectionCreateRequestData.md)
390+
- [SLOCorrectionListResponse](SLOCorrectionListResponse.md)
391+
- [SLOCorrectionListResponseData](SLOCorrectionListResponseData.md)
392+
- [SLOCorrectionResponse](SLOCorrectionResponse.md)
393+
- [SLOCorrectionResponseAttributes](SLOCorrectionResponseAttributes.md)
394+
- [SLOCorrectionResponseData](SLOCorrectionResponseData.md)
395+
- [SLOCorrectionUpdateRequest](SLOCorrectionUpdateRequest.md)
396+
- [SLOCorrectionUpdateRequestAttributes](SLOCorrectionUpdateRequestAttributes.md)
397+
- [SLOCorrectionUpdateRequestData](SLOCorrectionUpdateRequestData.md)
381398
- [SLODeleteResponse](SLODeleteResponse.md)
382399
- [SLOErrorTimeframe](SLOErrorTimeframe.md)
383400
- [SLOHistoryMetrics](SLOHistoryMetrics.md)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
3+
# SLOCorrectionCategory
4+
5+
## Enum
6+
7+
8+
* `SCHEDULED_MAINTENANCE` (value: `"Scheduled Maintenance"`)
9+
10+
* `OUTSIDE_BUSINESS_HOURS` (value: `"Outside Business Hours"`)
11+
12+
* `DEPLOYMENT` (value: `"Deployment"`)
13+
14+
* `OTHER` (value: `"Other"`)
15+
16+
17+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# SLOCorrectionCreateRequest
4+
5+
An object that defines a correction to be applied to an SLO
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**data** | [**SLOCorrectionCreateRequestData**](SLOCorrectionCreateRequestData.md) | | [optional]
11+
12+
13+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
3+
# SLOCorrectionCreateRequestAttributes
4+
5+
The attribute object associated with the SLO correction to be created
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**category** | **SLOCorrectionCategory** | |
11+
**description** | **String** | Description of the correction being made. | [optional]
12+
**end** | **Long** | Ending time of the correction in epoch seconds |
13+
**sloId** | **String** | ID of the SLO that this correction will be applied to |
14+
**start** | **Long** | Starting time of the correction in epoch seconds |
15+
**timezone** | **String** | Timezone of the timestamps provided |
16+
17+
18+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# SLOCorrectionCreateRequestData
4+
5+
The data object associated with the SLO correction to be created
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**attributes** | [**SLOCorrectionCreateRequestAttributes**](SLOCorrectionCreateRequestAttributes.md) | | [optional]
11+
**type** | **String** | Should always be set to \&quot;correction\&quot; | [optional]
12+
13+
14+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# SLOCorrectionListResponse
4+
5+
A list of SLO correction objects
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**data** | [**List&lt;SLOCorrectionListResponseData&gt;**](SLOCorrectionListResponseData.md) | The list of of SLO corrections objects | [optional]
11+
12+
13+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
3+
# SLOCorrectionListResponseData
4+
5+
The response object of a list of SLO corrections
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**attributes** | [**SLOCorrectionResponseAttributes**](SLOCorrectionResponseAttributes.md) | | [optional]
11+
**id** | **String** | The ID of the SLO correction | [optional]
12+
**type** | **String** | Should always be set to \&quot;correction\&quot; | [optional]
13+
14+
15+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# SLOCorrectionResponse
4+
5+
The response object of an SLO correction
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**data** | [**SLOCorrectionResponseData**](SLOCorrectionResponseData.md) | | [optional]
11+
12+
13+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
3+
# SLOCorrectionResponseAttributes
4+
5+
The attribute object associated with the SLO correction
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**category** | **SLOCorrectionCategory** | | [optional]
11+
**creator** | [**Creator**](Creator.md) | | [optional]
12+
**description** | **String** | Description of the correction being made. | [optional]
13+
**end** | **Long** | Ending time of the correction in epoch seconds | [optional]
14+
**sloId** | **String** | ID of the SLO that this correction will be applied to | [optional]
15+
**start** | **Long** | Starting time of the correction in epoch seconds | [optional]
16+
**timezone** | **String** | Timezone of the timestamps provided | [optional]
17+
18+
19+

0 commit comments

Comments
 (0)