From 991564826c04a9f7232cf3079ed1de0712c7bc69 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Wed, 8 Apr 2026 14:52:57 +0000 Subject: [PATCH] Regenerate client from commit 50dd1f6 of spec repo --- tests/v1/features/authentication.feature | 4 +- tests/v1/features/key_management.feature | 46 +++++++------- tests/v2/features/key_management.feature | 70 +++++++++++----------- tests/v2/features/service_accounts.feature | 30 +++++----- 4 files changed, 75 insertions(+), 75 deletions(-) diff --git a/tests/v1/features/authentication.feature b/tests/v1/features/authentication.feature index b82a231321..29acfedbf0 100644 --- a/tests/v1/features/authentication.feature +++ b/tests/v1/features/authentication.feature @@ -16,12 +16,12 @@ Feature: Authentication Given an instance of "Authentication" API And new "Validate" request - @skip-validation @team:DataDog/credentials-management + @skip-validation @team:DataDog/credential-management Scenario: Validate API key returns "Forbidden" response When the request is sent Then the response status is 403 OK - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Validate API key returns "OK" response Given a valid "apiKeyAuth" key in the system When the request is sent diff --git a/tests/v1/features/key_management.feature b/tests/v1/features/key_management.feature index c3f18c2346..222728688f 100644 --- a/tests/v1/features/key_management.feature +++ b/tests/v1/features/key_management.feature @@ -12,77 +12,77 @@ Feature: Key Management And a valid "appKeyAuth" key in the system And an instance of "KeyManagement" API - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an API key returns "Bad Request" response Given new "CreateAPIKey" request And body with value {"name": "example user"} When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an API key returns "OK" response Given new "CreateAPIKey" request And body with value {"name": "example user"} When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an application key returns "Bad Request" response Given new "CreateApplicationKey" request And body with value {"name": "example user"} When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an application key returns "Conflict" response Given new "CreateApplicationKey" request And body with value {"name": "example user"} When the request is sent Then the response status is 409 Conflict - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an application key returns "OK" response Given new "CreateApplicationKey" request And body with value {"name": "example user"} When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an API key returns "Bad Request" response Given new "DeleteAPIKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an API key returns "Not Found" response Given new "DeleteAPIKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an API key returns "OK" response Given new "DeleteAPIKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an application key returns "Not Found" response Given new "DeleteApplicationKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an application key returns "OK" response Given new "DeleteApplicationKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an API key returns "Bad Request" response Given new "UpdateAPIKey" request And request contains "key" parameter from "REPLACE.ME" @@ -90,7 +90,7 @@ Feature: Key Management When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an API key returns "Not Found" response Given new "UpdateAPIKey" request And request contains "key" parameter from "REPLACE.ME" @@ -98,7 +98,7 @@ Feature: Key Management When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an API key returns "OK" response Given new "UpdateAPIKey" request And request contains "key" parameter from "REPLACE.ME" @@ -106,7 +106,7 @@ Feature: Key Management When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key returns "Bad Request" response Given new "UpdateApplicationKey" request And request contains "key" parameter from "REPLACE.ME" @@ -114,7 +114,7 @@ Feature: Key Management When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key returns "Conflict" response Given new "UpdateApplicationKey" request And request contains "key" parameter from "REPLACE.ME" @@ -122,7 +122,7 @@ Feature: Key Management When the request is sent Then the response status is 409 Conflict - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key returns "Not Found" response Given new "UpdateApplicationKey" request And request contains "key" parameter from "REPLACE.ME" @@ -130,7 +130,7 @@ Feature: Key Management When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key returns "OK" response Given new "UpdateApplicationKey" request And request contains "key" parameter from "REPLACE.ME" @@ -138,40 +138,40 @@ Feature: Key Management When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get API key returns "Not Found" response Given new "GetAPIKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get API key returns "OK" response Given new "GetAPIKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all API keys returns "OK" response Given new "ListAPIKeys" request When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all application keys returns "OK" response Given new "ListApplicationKeys" request When the request is sent Then the response status is 200 OK - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get an application key returns "Not Found" response Given new "GetApplicationKey" request And request contains "key" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get an application key returns "OK" response Given new "GetApplicationKey" request And request contains "key" parameter from "REPLACE.ME" diff --git a/tests/v2/features/key_management.feature b/tests/v2/features/key_management.feature index 40daf9df54..d7e706efa8 100644 --- a/tests/v2/features/key_management.feature +++ b/tests/v2/features/key_management.feature @@ -12,14 +12,14 @@ Feature: Key Management And a valid "appKeyAuth" key in the system And an instance of "KeyManagement" API - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an API key returns "Bad Request" response Given new "CreateAPIKey" request And body with value {"data": {"attributes": {"name": "API Key for submitting metrics"}, "type": "api_keys"}} When the request is sent Then the response status is 400 Bad Request - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Create an API key returns "Created" response Given new "CreateAPIKey" request And body with value {"data": {"type": "api_keys", "attributes": {"name": "{{ unique }}"}}} @@ -28,7 +28,7 @@ Feature: Key Management And the response "data.type" is equal to "api_keys" And the response "data.attributes.name" is equal to "{{ unique }}" - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Create an Application key with scopes for current user returns "Created" response Given new "CreateCurrentUserApplicationKey" request And body with value {"data": {"type": "application_keys", "attributes": {"name": "{{ unique }}", "scopes": ["dashboards_read", "dashboards_write", "dashboards_public_share"]}}} @@ -37,14 +37,14 @@ Feature: Key Management And the response "data.attributes.name" is equal to "{{ unique }}" And the response "data.attributes.scopes" is equal to ["dashboards_read", "dashboards_write", "dashboards_public_share"] - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Create an application key for current user returns "Bad Request" response Given new "CreateCurrentUserApplicationKey" request And body with value {"data": {"attributes": {"name": "Application Key for managing dashboards", "scopes": ["dashboards_read", "dashboards_write", "dashboards_public_share"]}, "type": "application_keys"}} When the request is sent Then the response status is 400 Bad Request - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Create an application key for current user returns "Created" response Given new "CreateCurrentUserApplicationKey" request And body with value {"data": {"type": "application_keys", "attributes": {"name": "{{ unique }}"}}} @@ -53,7 +53,7 @@ Feature: Key Management And the response "data.type" is equal to "application_keys" And the response "data.attributes.name" is equal to "{{ unique }}" - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Delete an API key returns "No Content" response Given there is a valid "api_key" in the system And new "DeleteAPIKey" request @@ -61,14 +61,14 @@ Feature: Key Management When the request is sent Then the response status is 204 No Content - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an API key returns "Not Found" response Given new "DeleteAPIKey" request And request contains "api_key_id" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Delete an application key owned by current user returns "No Content" response Given there is a valid "application_key" in the system And new "DeleteCurrentUserApplicationKey" request @@ -76,14 +76,14 @@ Feature: Key Management When the request is sent Then the response status is 204 No Content - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an application key owned by current user returns "Not Found" response Given new "DeleteCurrentUserApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Delete an application key returns "No Content" response Given there is a valid "application_key" in the system And new "DeleteApplicationKey" request @@ -91,14 +91,14 @@ Feature: Key Management When the request is sent Then the response status is 204 No Content - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Delete an application key returns "Not Found" response Given new "DeleteApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an API key returns "Bad Request" response Given new "UpdateAPIKey" request And request contains "api_key_id" parameter from "REPLACE.ME" @@ -106,7 +106,7 @@ Feature: Key Management When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an API key returns "Not Found" response Given new "UpdateAPIKey" request And request contains "api_key_id" parameter from "REPLACE.ME" @@ -114,7 +114,7 @@ Feature: Key Management When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Edit an API key returns "OK" response Given there is a valid "api_key" in the system And new "UpdateAPIKey" request @@ -126,7 +126,7 @@ Feature: Key Management And the response "data.id" is equal to "{{ api_key.data.id }}" And the response "data.attributes.name" is equal to "{{ unique }}" - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key owned by current user returns "Bad Request" response Given new "UpdateCurrentUserApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" @@ -134,7 +134,7 @@ Feature: Key Management When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key owned by current user returns "Not Found" response Given new "UpdateCurrentUserApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" @@ -142,7 +142,7 @@ Feature: Key Management When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Edit an application key owned by current user returns "OK" response Given there is a valid "application_key" in the system And new "UpdateCurrentUserApplicationKey" request @@ -154,7 +154,7 @@ Feature: Key Management And the response "data.id" is equal to "{{ application_key.data.id }}" And the response "data.attributes.name" is equal to "{{ application_key.data.attributes.name }}-updated" - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key returns "Bad Request" response Given new "UpdateApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" @@ -162,7 +162,7 @@ Feature: Key Management When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Edit an application key returns "Not Found" response Given new "UpdateApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" @@ -170,7 +170,7 @@ Feature: Key Management When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Edit an application key returns "OK" response Given there is a valid "application_key" in the system And new "UpdateApplicationKey" request @@ -182,14 +182,14 @@ Feature: Key Management And the response "data.id" is equal to "{{ application_key.data.id }}" And the response "data.attributes.name" is equal to "{{ application_key.data.attributes.name }}-updated" - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get API key returns "Not Found" response Given new "GetAPIKey" request And request contains "api_key_id" parameter with value "invalidId" When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get API key returns "OK" response Given there is a valid "api_key" in the system And new "GetAPIKey" request @@ -200,13 +200,13 @@ Feature: Key Management And the response "data.id" is equal to "{{ api_key.data.id }}" And the response "data.attributes" has field "date_last_used" - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all API keys returns "Bad Request" response Given new "ListAPIKeys" request When the request is sent Then the response status is 400 Bad Request - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get all API keys returns "OK" response Given there is a valid "api_key" in the system And new "ListAPIKeys" request @@ -216,19 +216,19 @@ Feature: Key Management And the response "data[0].type" is equal to "api_keys" And the response "data[0].attributes" has field "date_last_used" - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all application keys owned by current user returns "Bad Request" response Given new "ListCurrentUserApplicationKeys" request When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all application keys owned by current user returns "Not Found" response Given new "ListCurrentUserApplicationKeys" request When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get all application keys owned by current user returns "OK" response Given new "ListCurrentUserApplicationKeys" request When the request is sent @@ -236,19 +236,19 @@ Feature: Key Management And the response "data[0].type" is equal to "application_keys" And the response "data[0].attributes" has field "last_used_at" - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all application keys returns "Bad Request" response Given new "ListApplicationKeys" request When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get all application keys returns "Not Found" response Given new "ListApplicationKeys" request When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get all application keys returns "OK" response Given there is a valid "application_key" in the system And new "ListApplicationKeys" request @@ -257,21 +257,21 @@ Feature: Key Management And the response "data[0].type" is equal to "application_keys" And the response "data[0].attributes" has field "last_used_at" - @generated @skip @team:DataDog/credentials-management + @generated @skip @team:DataDog/credential-management Scenario: Get an application key returns "Bad Request" response Given new "GetApplicationKey" request And request contains "app_key_id" parameter from "REPLACE.ME" When the request is sent Then the response status is 400 Bad Request - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get an application key returns "Not Found" response Given new "GetApplicationKey" request And request contains "app_key_id" parameter with value "invalidId" When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get an application key returns "OK" response Given there is a valid "application_key" in the system And new "GetApplicationKey" request @@ -282,14 +282,14 @@ Feature: Key Management And the response "data.id" has the same value as "application_key.data.id" And the response "data.attributes" has field "last_used_at" - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get one application key owned by current user returns "Not Found" response Given new "GetCurrentUserApplicationKey" request And request contains "app_key_id" parameter with value "incorrectId" When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management + @team:DataDog/credential-management Scenario: Get one application key owned by current user returns "OK" response Given there is a valid "application_key" in the system And new "GetCurrentUserApplicationKey" request diff --git a/tests/v2/features/service_accounts.feature b/tests/v2/features/service_accounts.feature index 6e25db1e8f..cad1c9e134 100644 --- a/tests/v2/features/service_accounts.feature +++ b/tests/v2/features/service_accounts.feature @@ -9,14 +9,14 @@ Feature: Service Accounts And a valid "appKeyAuth" key in the system And an instance of "ServiceAccounts" API - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Create a service account returns "Bad Request" response Given new "CreateServiceAccount" request And body with value {"data": {"attributes": {"email": "jane.doe@example.com", "service_account": true}, "relationships": {"roles": {"data": [{"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}]}}, "type": "users"}} When the request is sent Then the response status is 400 Bad Request - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Create a service account returns "OK" response Given there is a valid "role" in the system And new "CreateServiceAccount" request @@ -29,7 +29,7 @@ Feature: Service Accounts And the response "data.attributes.service_account" is equal to true And the response "data.relationships.roles.data[0].id" is equal to "{{ role.data.id }}" - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Create an application key for this service account returns "Bad Request" response Given new "CreateServiceAccountApplicationKey" request And request contains "service_account_id" parameter from "REPLACE.ME" @@ -37,7 +37,7 @@ Feature: Service Accounts When the request is sent Then the response status is 400 Bad Request - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Create an application key for this service account returns "Created" response Given there is a valid "service_account_user" in the system And new "CreateServiceAccountApplicationKey" request @@ -48,7 +48,7 @@ Feature: Service Accounts And the response "data.attributes.name" is equal to "{{ unique }}" And the response "data.relationships.owned_by.data.id" has the same value as "service_account_user.data.id" - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Create an application key with scopes for this service account returns "Created" response Given there is a valid "service_account_user" in the system And new "CreateServiceAccountApplicationKey" request @@ -60,7 +60,7 @@ Feature: Service Accounts And the response "data.attributes.scopes" is equal to ["dashboards_read", "dashboards_write", "dashboards_public_share"] And the response "data.relationships.owned_by.data.id" has the same value as "service_account_user.data.id" - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Delete an application key for this service account returns "No Content" response Given there is a valid "service_account_user" in the system And there is a valid "service_account_application_key" for "service_account_user" @@ -70,7 +70,7 @@ Feature: Service Accounts When the request is sent Then the response status is 204 No Content - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Delete an application key for this service account returns "Not Found" response Given new "DeleteServiceAccountApplicationKey" request And request contains "service_account_id" parameter from "REPLACE.ME" @@ -78,7 +78,7 @@ Feature: Service Accounts When the request is sent Then the response status is 404 Not Found - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Edit an application key for this service account returns "Bad Request" response Given new "UpdateServiceAccountApplicationKey" request And request contains "service_account_id" parameter from "REPLACE.ME" @@ -87,7 +87,7 @@ Feature: Service Accounts When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Edit an application key for this service account returns "Not Found" response Given new "UpdateServiceAccountApplicationKey" request And request contains "service_account_id" parameter from "REPLACE.ME" @@ -96,7 +96,7 @@ Feature: Service Accounts When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Edit an application key for this service account returns "OK" response Given there is a valid "service_account_user" in the system And there is a valid "service_account_application_key" for "service_account_user" @@ -110,7 +110,7 @@ Feature: Service Accounts And the response "data.type" is equal to "application_keys" And the response "data.id" is equal to "{{ service_account_application_key.data.id }}" - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Get one application key for this service account returns "Not Found" response Given new "GetServiceAccountApplicationKey" request And request contains "service_account_id" parameter from "REPLACE.ME" @@ -118,7 +118,7 @@ Feature: Service Accounts When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: Get one application key for this service account returns "OK" response Given there is a valid "service_account_user" in the system And there is a valid "service_account_application_key" for "service_account_user" @@ -131,21 +131,21 @@ Feature: Service Accounts And the response "data.type" is equal to "application_keys" And the response "data.id" is equal to "{{ service_account_application_key.data.id }}" - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: List application keys for this service account returns "Bad Request" response Given new "ListServiceAccountApplicationKeys" request And request contains "service_account_id" parameter from "REPLACE.ME" When the request is sent Then the response status is 400 Bad Request - @generated @skip @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @generated @skip @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: List application keys for this service account returns "Not Found" response Given new "ListServiceAccountApplicationKeys" request And request contains "service_account_id" parameter from "REPLACE.ME" When the request is sent Then the response status is 404 Not Found - @team:DataDog/credentials-management @team:DataDog/team-aaa-identity + @team:DataDog/credential-management @team:DataDog/team-aaa-identity Scenario: List application keys for this service account returns "OK" response Given there is a valid "service_account_user" in the system And new "ListServiceAccountApplicationKeys" request