Skip to content

Commit 9be8c29

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 338f1300 of spec repo
1 parent dccdd7a commit 9be8c29

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
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-10 15:38:35.588214",
8-
"spec_repo_commit": "aee36841"
7+
"regenerated": "2024-12-10 17:49:44.911042",
8+
"spec_repo_commit": "338f1300"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-12-10 15:38:35.607258",
13-
"spec_repo_commit": "aee36841"
12+
"regenerated": "2024-12-10 17:49:44.930039",
13+
"spec_repo_commit": "338f1300"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23427,6 +23427,10 @@ components:
2342723427
type: apiKey
2342823428
x-auth-id-alias: appKeyAuth
2342923429
x-env-name: DD_APP_KEY
23430+
bearerAuth:
23431+
scheme: bearer
23432+
type: http
23433+
x-env-name: DD_BEARER_TOKEN
2343023434
info:
2343123435
contact:
2343223436

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27654,6 +27654,10 @@ components:
2765427654
name: DD-APPLICATION-KEY
2765527655
type: apiKey
2765627656
x-env-name: DD_APP_KEY
27657+
bearerAuth:
27658+
scheme: bearer
27659+
type: http
27660+
x-env-name: DD_BEARER_TOKEN
2765727661
info:
2765827662
contact:
2765927663

lib/datadog_api_client/configuration.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,14 @@ def auth_settings
357357
key: 'DD-APPLICATION-KEY',
358358
value: api_key_with_prefix('appKeyAuth')
359359
},
360+
bearerAuth:
361+
{
362+
type: 'bearer',
363+
in: 'header',
364+
365+
key: 'Authorization',
366+
value: "Bearer #{access_token}"
367+
},
360368
}
361369
end
362370

0 commit comments

Comments
 (0)