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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.4",
"regenerated": "2023-06-16 17:50:44.503416",
"spec_repo_commit": "15c4b13f"
"regenerated": "2023-06-19 06:15:29.794974",
"spec_repo_commit": "2ee8c2d8"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-06-16 17:50:44.516638",
"spec_repo_commit": "15c4b13f"
"regenerated": "2023-06-19 06:15:29.808106",
"spec_repo_commit": "2ee8c2d8"
}
}
}
17 changes: 10 additions & 7 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16446,7 +16446,10 @@ paths:
x-permission: OR(USER_ACCESS_MANAGE)
/api/v2/ci/pipeline:
post:
description: Send your pipeline event to your Datadog platform over HTTP.
description: 'Send your pipeline event to your Datadog platform over HTTP.


This API endpoint is in private beta.'
operationId: CreateCIAppPipelineEvent
requestBody:
content:
Expand Down Expand Up @@ -16544,7 +16547,7 @@ paths:
/api/v2/ci/pipelines/events:
get:
description: 'List endpoint returns CI Visibility pipeline events that match
a log search query.
a [log search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).

[Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).

Expand Down Expand Up @@ -16623,7 +16626,7 @@ paths:
/api/v2/ci/pipelines/events/search:
post:
description: 'List endpoint returns CI Visibility pipeline events that match
a log search query.
a [log search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).

[Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).

Expand Down Expand Up @@ -16688,8 +16691,8 @@ paths:
x-codegen-request-body-name: body
/api/v2/ci/tests/events:
get:
description: 'List endpoint returns CI Visibility test events that match a log
search query.
description: 'List endpoint returns CI Visibility test events that match a [log
search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).

[Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).

Expand Down Expand Up @@ -16767,8 +16770,8 @@ paths:
resultsPath: data
/api/v2/ci/tests/events/search:
post:
description: 'List endpoint returns CI Visibility test events that match a log
search query.
description: 'List endpoint returns CI Visibility test events that match a [log
search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).

[Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,8 @@ export class CIVisibilityPipelinesApi {

/**
* Send your pipeline event to your Datadog platform over HTTP.
*
* This API endpoint is in private beta.
* @param param The request object
*/
public createCIAppPipelineEvent(
Expand All @@ -594,7 +596,7 @@ export class CIVisibilityPipelinesApi {
}

/**
* List endpoint returns CI Visibility pipeline events that match a log search query.
* List endpoint returns CI Visibility pipeline events that match a [log search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).
* [Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).
*
* Use this endpoint to see your latest pipeline events.
Expand Down Expand Up @@ -682,7 +684,7 @@ export class CIVisibilityPipelinesApi {
}

/**
* List endpoint returns CI Visibility pipeline events that match a log search query.
* List endpoint returns CI Visibility pipeline events that match a [log search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).
* [Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).
*
* Use this endpoint to build complex events filtering and search.
Expand Down
4 changes: 2 additions & 2 deletions packages/datadog-api-client-v2/apis/CIVisibilityTestsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ export class CIVisibilityTestsApi {
}

/**
* List endpoint returns CI Visibility test events that match a log search query.
* List endpoint returns CI Visibility test events that match a [log search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).
* [Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).
*
* Use this endpoint to see your latest test events.
Expand Down Expand Up @@ -540,7 +540,7 @@ export class CIVisibilityTestsApi {
}

/**
* List endpoint returns CI Visibility test events that match a log search query.
* List endpoint returns CI Visibility test events that match a [log search query](https://docs.datadoghq.com/logs/explorer/search_syntax/).
* [Results are paginated similarly to logs](https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination).
*
* Use this endpoint to build complex events filtering and search.
Expand Down