Skip to content

Commit 8a284cb

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 930cad1d of spec repo
1 parent 2751989 commit 8a284cb

File tree

46 files changed

+633
-1032
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+633
-1032
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.6",
7-
"regenerated": "2024-12-23 16:35:38.637190",
8-
"spec_repo_commit": "19946d35"
7+
"regenerated": "2024-12-26 22:06:42.603678",
8+
"spec_repo_commit": "930cad1d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-12-23 16:35:38.652127",
13-
"spec_repo_commit": "19946d35"
12+
"regenerated": "2024-12-26 22:06:42.618324",
13+
"spec_repo_commit": "930cad1d"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 59 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1615,34 +1615,6 @@ components:
16151615
type: string
16161616
x-enum-varnames:
16171617
- apm_retention_filter
1618-
AppBuilderError:
1619-
description: The definition of `AppBuilderError` object.
1620-
properties:
1621-
errors:
1622-
description: The `AppBuilderError` `errors`.
1623-
items:
1624-
$ref: '#/components/schemas/AppBuilderErrorErrorsItems'
1625-
type: array
1626-
type: object
1627-
AppBuilderErrorErrorsItems:
1628-
description: The definition of `AppBuilderErrorErrorsItems` object.
1629-
properties:
1630-
detail:
1631-
description: The `items` `detail`.
1632-
type: string
1633-
source:
1634-
$ref: '#/components/schemas/AppBuilderErrorErrorsItemsSource'
1635-
type: object
1636-
AppBuilderErrorErrorsItemsSource:
1637-
description: The definition of `AppBuilderErrorErrorsItemsSource` object.
1638-
properties:
1639-
parameter:
1640-
description: The `source` `parameter`.
1641-
type: string
1642-
pointer:
1643-
description: The `source` `pointer`.
1644-
type: string
1645-
type: object
16461618
AppBuilderEvent:
16471619
additionalProperties: {}
16481620
description: The definition of `AppBuilderEvent` object.
@@ -1729,6 +1701,7 @@ components:
17291701
type: string
17301702
user_uuid:
17311703
description: The `AppMeta` `user_uuid`.
1704+
format: uuid
17321705
type: string
17331706
version:
17341707
description: The `AppMeta` `version`.
@@ -8765,6 +8738,7 @@ components:
87658738
type: string
87668739
user_uuid:
87678740
description: The `meta` `user_uuid`.
8741+
format: uuid
87688742
type: string
87698743
type: object
87708744
DeploymentIncludedType:
@@ -8790,6 +8764,7 @@ components:
87908764
type: string
87918765
user_uuid:
87928766
description: The `DeploymentMeta` `user_uuid`.
8767+
format: uuid
87938768
type: string
87948769
type: object
87958770
DeploymentRelationship:
@@ -8832,6 +8807,7 @@ components:
88328807
type: string
88338808
user_uuid:
88348809
description: The `meta` `user_uuid`.
8810+
format: uuid
88358811
type: string
88368812
type: object
88378813
DeploymentType:
@@ -30153,19 +30129,19 @@ paths:
3015330129
content:
3015430130
application/json:
3015530131
schema:
30156-
$ref: '#/components/schemas/AppBuilderError'
30132+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3015730133
description: Bad Request
3015830134
'403':
3015930135
content:
3016030136
application/json:
3016130137
schema:
30162-
$ref: '#/components/schemas/AppBuilderError'
30163-
description: Forbidden, e.g. missing permissions to delete one or more apps
30138+
$ref: '#/components/schemas/JSONAPIErrorResponse'
30139+
description: Forbidden
3016430140
'404':
3016530141
content:
3016630142
application/json:
3016730143
schema:
30168-
$ref: '#/components/schemas/AppBuilderError'
30144+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3016930145
description: Not Found
3017030146
'429':
3017130147
$ref: '#/components/responses/TooManyRequestsResponse'
@@ -30182,63 +30158,71 @@ paths:
3018230158
description: List all apps, with optional filters and sorting
3018330159
operationId: ListApps
3018430160
parameters:
30185-
- description: The number of apps to return per page
30161+
- description: The number of apps to return per page.
3018630162
in: query
3018730163
name: limit
3018830164
required: false
3018930165
schema:
3019030166
format: int64
3019130167
type: integer
30192-
- description: The page number to return
30168+
- description: The page number to return.
3019330169
in: query
3019430170
name: page
3019530171
required: false
3019630172
schema:
3019730173
format: int64
3019830174
type: integer
30199-
- description: The `AppsFilter` `user_name`.
30175+
- description: Filter apps by the app creator. Usually the user's email.
3020030176
in: query
3020130177
name: filter[user_name]
3020230178
required: false
3020330179
schema:
3020430180
type: string
30205-
- description: The `AppsFilter` `user_uuid`.
30181+
- description: Filter apps by the app creator's UUID.
3020630182
in: query
3020730183
name: filter[user_uuid]
3020830184
required: false
3020930185
schema:
30186+
format: uuid
3021030187
type: string
30211-
- description: The `AppsFilter` `name`.
30188+
- description: Filter by app name.
3021230189
in: query
3021330190
name: filter[name]
3021430191
required: false
3021530192
schema:
3021630193
type: string
30217-
- description: The `AppsFilter` `query`.
30194+
- description: Filter apps by the app name or the app creator.
3021830195
in: query
3021930196
name: filter[query]
3022030197
required: false
3022130198
schema:
3022230199
type: string
30223-
- description: The `AppsFilter` `deployed`.
30200+
- description: Filter apps by whether they are published.
3022430201
in: query
3022530202
name: filter[deployed]
3022630203
required: false
3022730204
schema:
3022830205
type: boolean
30229-
- description: The `AppsFilter` `tags`.
30206+
- description: Filter apps by tags.
3023030207
in: query
3023130208
name: filter[tags]
3023230209
required: false
3023330210
schema:
3023430211
type: string
30235-
- description: The `AppsFilter` `favorite`.
30212+
- description: Filter apps by whether you have added them to your favorites.
3023630213
in: query
3023730214
name: filter[favorite]
3023830215
required: false
3023930216
schema:
3024030217
type: boolean
30241-
- explode: false
30218+
- description: Filter apps by whether they are enabled for self-service.
30219+
in: query
30220+
name: filter[self_service]
30221+
required: false
30222+
schema:
30223+
type: boolean
30224+
- description: The fields and direction to sort apps by.
30225+
explode: false
3024230226
in: query
3024330227
name: sort
3024430228
required: false
@@ -30258,13 +30242,13 @@ paths:
3025830242
content:
3025930243
application/json:
3026030244
schema:
30261-
$ref: '#/components/schemas/AppBuilderError'
30262-
description: Bad Request, e.g. invalid sort parameter
30245+
$ref: '#/components/schemas/JSONAPIErrorResponse'
30246+
description: Bad Request
3026330247
'403':
3026430248
content:
3026530249
application/json:
3026630250
schema:
30267-
$ref: '#/components/schemas/AppBuilderError'
30251+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3026830252
description: Forbidden
3026930253
'429':
3027030254
$ref: '#/components/responses/TooManyRequestsResponse'
@@ -30297,15 +30281,14 @@ paths:
3029730281
content:
3029830282
application/json:
3029930283
schema:
30300-
$ref: '#/components/schemas/AppBuilderError'
30284+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3030130285
description: Bad Request
3030230286
'403':
3030330287
content:
3030430288
application/json:
3030530289
schema:
30306-
$ref: '#/components/schemas/AppBuilderError'
30307-
description: Forbidden, e.g. missing required permissions to a connection
30308-
or workflow used in the app
30290+
$ref: '#/components/schemas/JSONAPIErrorResponse'
30291+
description: Forbidden
3030930292
'429':
3031030293
$ref: '#/components/responses/TooManyRequestsResponse'
3031130294
summary: Create App
@@ -30340,25 +30323,25 @@ paths:
3034030323
content:
3034130324
application/json:
3034230325
schema:
30343-
$ref: '#/components/schemas/AppBuilderError'
30326+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3034430327
description: Bad Request
3034530328
'403':
3034630329
content:
3034730330
application/json:
3034830331
schema:
30349-
$ref: '#/components/schemas/AppBuilderError'
30332+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3035030333
description: Forbidden
3035130334
'404':
3035230335
content:
3035330336
application/json:
3035430337
schema:
30355-
$ref: '#/components/schemas/AppBuilderError'
30338+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3035630339
description: Not Found
3035730340
'410':
3035830341
content:
3035930342
application/json:
3036030343
schema:
30361-
$ref: '#/components/schemas/AppBuilderError'
30344+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3036230345
description: Gone
3036330346
'429':
3036430347
$ref: '#/components/responses/TooManyRequestsResponse'
@@ -30380,6 +30363,11 @@ paths:
3038030363
required: true
3038130364
schema:
3038230365
type: string
30366+
- in: query
30367+
name: version
30368+
required: false
30369+
schema:
30370+
type: string
3038330371
responses:
3038430372
'200':
3038530373
content:
@@ -30391,19 +30379,19 @@ paths:
3039130379
content:
3039230380
application/json:
3039330381
schema:
30394-
$ref: '#/components/schemas/AppBuilderError'
30382+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3039530383
description: Bad Request
3039630384
'403':
3039730385
content:
3039830386
application/json:
3039930387
schema:
30400-
$ref: '#/components/schemas/AppBuilderError'
30388+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3040130389
description: Forbidden
3040230390
'404':
3040330391
content:
3040430392
application/json:
3040530393
schema:
30406-
$ref: '#/components/schemas/AppBuilderError'
30394+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3040730395
description: Not Found
3040830396
'429':
3040930397
$ref: '#/components/responses/TooManyRequestsResponse'
@@ -30443,15 +30431,14 @@ paths:
3044330431
content:
3044430432
application/json:
3044530433
schema:
30446-
$ref: '#/components/schemas/AppBuilderError'
30434+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3044730435
description: Bad Request
3044830436
'403':
3044930437
content:
3045030438
application/json:
3045130439
schema:
30452-
$ref: '#/components/schemas/AppBuilderError'
30453-
description: Forbidden, e.g. missing required permissions to a connection
30454-
or workflow used in the app
30440+
$ref: '#/components/schemas/JSONAPIErrorResponse'
30441+
description: Forbidden
3045530442
'429':
3045630443
$ref: '#/components/responses/TooManyRequestsResponse'
3045730444
summary: Update App
@@ -30486,25 +30473,25 @@ paths:
3048630473
content:
3048730474
application/json:
3048830475
schema:
30489-
$ref: '#/components/schemas/AppBuilderError'
30476+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3049030477
description: Bad Request
3049130478
'403':
3049230479
content:
3049330480
application/json:
3049430481
schema:
30495-
$ref: '#/components/schemas/AppBuilderError'
30482+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3049630483
description: Forbidden
3049730484
'404':
3049830485
content:
3049930486
application/json:
3050030487
schema:
30501-
$ref: '#/components/schemas/AppBuilderError'
30488+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3050230489
description: Not Found
3050330490
'429':
3050430491
$ref: '#/components/responses/TooManyRequestsResponse'
3050530492
summary: Disable App
3050630493
tags:
30507-
- App Deployment
30494+
- Apps
3050830495
x-permission:
3050930496
operator: OR
3051030497
permissions:
@@ -30531,25 +30518,25 @@ paths:
3053130518
content:
3053230519
application/json:
3053330520
schema:
30534-
$ref: '#/components/schemas/AppBuilderError'
30521+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3053530522
description: Bad Request
3053630523
'403':
3053730524
content:
3053830525
application/json:
3053930526
schema:
30540-
$ref: '#/components/schemas/AppBuilderError'
30527+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3054130528
description: Forbidden
3054230529
'404':
3054330530
content:
3054430531
application/json:
3054530532
schema:
30546-
$ref: '#/components/schemas/AppBuilderError'
30533+
$ref: '#/components/schemas/JSONAPIErrorResponse'
3054730534
description: Not Found
3054830535
'429':
3054930536
$ref: '#/components/responses/TooManyRequestsResponse'
3055030537
summary: Deploy App
3055130538
tags:
30552-
- App Deployment
30539+
- Apps
3055330540
x-permission:
3055430541
operator: OR
3055530542
permissions:
@@ -46584,9 +46571,10 @@ tags:
4658446571
externalDocs:
4658546572
url: https://docs.datadoghq.com/integrations/amazon_web_services/#log-collection
4658646573
name: AWS Logs Integration
46587-
- description: Deploy and disable apps in App Builder.
46588-
name: App Deployment
46589-
- description: Create, read, update, and delete apps in App Builder.
46574+
- description: Datadog App Builder provides a low-code solution to rapidly develop
46575+
and integrate secure, customized applications into your monitoring stack that
46576+
are built to accelerate remediation at scale. These API endpoints allow you to
46577+
create, read, update, delete, and publish apps.
4659046578
name: Apps
4659146579
- description: Search your Audit Logs events over HTTP.
4659246580
name: Audit

0 commit comments

Comments
 (0)