You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -62965,7 +62965,9 @@ paths:
62965
62965
permissions:
62966
62966
- user_app_keys
62967
62967
get:
62968
-
description: Get an application key owned by current user
62968
+
description: 'Get an application key owned by current user.
62969
+
62970
+
The `key` field is not returned for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
description: Edit an application key owned by current user
63003
+
description: 'Edit an application key owned by current user.
63004
+
63005
+
The `key` field is not returned for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
Copy file name to clipboardExpand all lines: api/datadogV1/api_key_management.go
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,7 @@ func (a *KeyManagementApi) CreateAPIKey(ctx _context.Context, body ApiKey) (ApiK
97
97
98
98
// CreateApplicationKey Create an application key.
99
99
// Create an application key with a given name.
100
+
// This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
// DeleteApplicationKey Delete an application key.
257
258
// Delete a given application key.
259
+
// This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
// This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
@@ -566,6 +569,7 @@ func (a *KeyManagementApi) ListAPIKeys(ctx _context.Context) (ApiKeyListResponse
566
569
567
570
// ListApplicationKeys Get all application keys.
568
571
// Get all application keys available for your Datadog account.
572
+
// This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
@@ -724,6 +728,7 @@ func (a *KeyManagementApi) UpdateAPIKey(ctx _context.Context, key string, body A
724
728
725
729
// UpdateApplicationKey Edit an application key.
726
730
// Edit an application key name.
731
+
// This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
// GetCurrentUserApplicationKey Get one application key owned by current user.
595
-
// Get an application key owned by current user
595
+
// Get an application key owned by current user.
596
+
// The `key` field is not returned for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
@@ -1367,7 +1368,8 @@ func (a *KeyManagementApi) UpdateApplicationKey(ctx _context.Context, appKeyId s
1367
1368
}
1368
1369
1369
1370
// UpdateCurrentUserApplicationKey Edit an application key owned by current user.
1370
-
// Edit an application key owned by current user
1371
+
// Edit an application key owned by current user.
1372
+
// The `key` field is not returned for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).
0 commit comments