Skip to content

[AAWF-463] Fix github merge script #2343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: v2
Choose a base branch
from
Open
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
23 changes: 22 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14107,11 +14107,23 @@ components:
enum:
- http
- grpc
- ssl
- dns
- tcp
- udp
- icmp
- websocket
example: http
type: string
x-enum-varnames:
- HTTP
- GRPC
- SSL
- DNS
- TCP
- UDP
- ICMP
- WEBSOCKET
SyntheticsAPITestType:
default: api
description: Type of the Synthetic test, `api`.
Expand Down Expand Up @@ -17178,6 +17190,9 @@ components:
example: ''
type: string
type: array
checkCertificateRevocation:
description: Check for certificate revocation.
type: boolean
compressedJsonDescriptor:
description: A protobuf JSON descriptor that needs to be gzipped first then
base64 encoded.
Expand Down Expand Up @@ -17207,6 +17222,9 @@ components:
type: string
httpVersion:
$ref: '#/components/schemas/SyntheticsTestOptionsHTTPVersion'
isMessageBase64Encoded:
description: Whether the message is base64 encoded.
type: boolean
message:
description: Message to send for UDP or WebSocket tests.
type: string
Expand Down Expand Up @@ -26627,7 +26645,10 @@ paths:
type: safe
/api/v1/graph/snapshot:
get:
description: 'Take graph snapshots.
description: 'Take graph snapshots. Snapshots are PNG images generated by rendering
a specified widget in a web page and capturing it once the data is available.
The image is then uploaded to cloud storage.


**Note**: When a snapshot is created, there is some delay before it is available.'
operationId: GetGraphSnapshot
Expand Down
247 changes: 242 additions & 5 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,14 @@ components:
required: true
schema:
type: string
KindID:
description: Entity kind.
in: path
name: kind_id
required: true
schema:
example: my-job
type: string
MetricID:
description: The name of the log-based metric.
in: path
Expand Down Expand Up @@ -19412,6 +19420,90 @@ components:
- index
- caseIndex
type: object
KindAttributes:
description: Kind attributes.
properties:
description:
description: Short description of the kind.
type: string
displayName:
description: User friendly name of the kind.
type: string
name:
description: The kind name.
example: my-job
minLength: 1
type: string
type: object
KindData:
description: Schema that defines the structure of a Kind object in the Software
Catalog.
properties:
attributes:
$ref: '#/components/schemas/KindAttributes'
id:
description: A read-only globally unique identifier for the entity generated
by Datadog. User supplied values are ignored.
example: 4b163705-23c0-4573-b2fb-f6cea2163fcb
minLength: 1
type: string
meta:
$ref: '#/components/schemas/KindMetadata'
type:
description: Kind.
type: string
type: object
KindMetadata:
description: Kind metadata.
properties:
createdAt:
description: The creation time.
type: string
modifiedAt:
description: The modification time.
type: string
type: object
KindObj:
description: Schema for kind.
properties:
description:
description: Short description of the kind.
type: string
displayName:
description: The display name of the kind. Automatically generated if not
provided.
type: string
kind:
description: The name of the kind to create or update. This must be in kebab-case
format.
example: my-job
type: string
required:
- kind
type: object
KindRaw:
description: Kind definition in raw JSON or YAML representation.
example: 'kind: service

displayName: Service

description: A service entity in the catalog.

'
type: string
KindResponseData:
description: List of kind responses.
items:
$ref: '#/components/schemas/KindData'
type: array
KindResponseMeta:
description: Kind response metadata.
properties:
count:
description: Total kinds count.
format: int64
type: integer
type: object
Layer:
description: Encapsulates a layer resource, holding attributes like rotation
details, plus relationships to the members covering that layer.
Expand Down Expand Up @@ -19898,6 +19990,14 @@ components:
meta:
$ref: '#/components/schemas/HistoricalJobListMeta'
type: object
ListKindCatalogResponse:
description: List kind response.
properties:
data:
$ref: '#/components/schemas/KindResponseData'
meta:
$ref: '#/components/schemas/KindResponseMeta'
type: object
ListPipelinesResponse:
description: Represents the response payload containing a list of pipelines
and associated metadata.
Expand Down Expand Up @@ -39762,6 +39862,19 @@ components:
description: Upsert entity response included item.
oneOf:
- $ref: '#/components/schemas/EntityResponseIncludedSchema'
UpsertCatalogKindRequest:
description: Create or update kind request.
oneOf:
- $ref: '#/components/schemas/KindObj'
- $ref: '#/components/schemas/KindRaw'
UpsertCatalogKindResponse:
description: Upsert kind response.
properties:
data:
$ref: '#/components/schemas/KindResponseData'
meta:
$ref: '#/components/schemas/KindResponseMeta'
type: object
Urgency:
description: Specifies the level of urgency for a routing rule (low, high, or
dynamic).
Expand Down Expand Up @@ -44407,6 +44520,125 @@ paths:
x-menu-order: 3
x-undo:
type: idempotent
/api/v2/catalog/kind:
get:
description: Get a list of entity kinds from Software Catalog.
operationId: ListCatalogKind
parameters:
- $ref: '#/components/parameters/PageOffset'
- description: Maximum number of kinds in the response.
example: 100
in: query
name: page[limit]
required: false
schema:
default: 100
format: int64
type: integer
- $ref: '#/components/parameters/FilterByID'
- $ref: '#/components/parameters/FilterByName'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ListKindCatalogResponse'
description: OK
'400':
$ref: '#/components/responses/BadRequestResponse'
'403':
$ref: '#/components/responses/ForbiddenResponse'
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
- apiKeyAuth: []
appKeyAuth: []
- AuthZ:
- apm_service_catalog_read
summary: Get a list of entity kinds
tags:
- Software Catalog
x-menu-order: 4
x-pagination:
limitParam: page[limit]
pageOffsetParam: page[offset]
resultsPath: data
x-undo:
type: safe
post:
description: Create or update kinds in Software Catalog.
operationId: UpsertCatalogKind
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpsertCatalogKindRequest'
description: Kind YAML or JSON.
required: true
responses:
'202':
content:
application/json:
schema:
$ref: '#/components/schemas/UpsertCatalogKindResponse'
description: ACCEPTED
'400':
$ref: '#/components/responses/BadRequestResponse'
'403':
$ref: '#/components/responses/ForbiddenResponse'
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
- apiKeyAuth: []
appKeyAuth: []
- AuthZ:
- apm_service_catalog_write
summary: Create or update kinds
tags:
- Software Catalog
x-codegen-request-body-name: body
x-given:
kind:
parameters:
- name: body
value: "{\n \"kind\": \"my-job\",\n \"displayName\": \"My Job\",\n \"description\":
\"A job entity in the catalog.\"\n}"
step: there is a valid kind
x-menu-order: 5
x-undo:
operationId: DeleteCatalogKind
parameters:
- name: kind_id
source: data[0].id
type: unsafe
/api/v2/catalog/kind/{kind_id}:
delete:
description: Delete a single kind in Software Catalog.
operationId: DeleteCatalogKind
parameters:
- $ref: '#/components/parameters/KindID'
responses:
'204':
description: OK
'400':
$ref: '#/components/responses/BadRequestResponse'
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
$ref: '#/components/responses/NotFoundResponse'
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
- apiKeyAuth: []
appKeyAuth: []
- AuthZ:
- apm_service_catalog_write
summary: Delete a single kind
tags:
- Software Catalog
x-menu-order: 6
x-undo:
type: idempotent
/api/v2/catalog/relation:
get:
description: Get a list of entity relations from Software Catalog.
Expand Down Expand Up @@ -46042,9 +46274,10 @@ paths:
- Usage Metering
x-menu-order: 5
x-permission:
operator: OR
operator: AND
permissions:
- usage_read
- billing_read
x-undo:
type: safe
/api/v2/csm/onboarding/agents:
Expand Down Expand Up @@ -64202,9 +64435,10 @@ paths:
- Usage Metering
x-menu-order: 45
x-permission:
operator: OR
operator: AND
permissions:
- usage_read
- billing_read
x-undo:
type: safe
/api/v2/usage/estimated_cost:
Expand Down Expand Up @@ -64309,9 +64543,10 @@ paths:
- Usage Metering
x-menu-order: 6
x-permission:
operator: OR
operator: AND
permissions:
- usage_read
- billing_read
x-undo:
type: safe
/api/v2/usage/historical_cost:
Expand Down Expand Up @@ -64393,9 +64628,10 @@ paths:
- Usage Metering
x-menu-order: 5
x-permission:
operator: OR
operator: AND
permissions:
- usage_read
- billing_read
x-undo:
type: safe
/api/v2/usage/hourly_usage:
Expand Down Expand Up @@ -64739,9 +64975,10 @@ paths:
- Usage Metering
x-menu-order: 7
x-permission:
operator: OR
operator: AND
permissions:
- usage_read
- billing_read
x-undo:
type: safe
/api/v2/user_invitations:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"2025-02-25T16:34:23.928Z"
"2025-06-02T14:06:04.761Z"
Loading