Skip to content

Commit 59751ec

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3536f84 of spec repo
1 parent 4e2e2a8 commit 59751ec

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "8001cbb",
3-
"generated": "2025-08-13 20:27:33.480"
2+
"spec_repo_commit": "3536f84",
3+
"generated": "2025-08-14 17:02:57.017"
44
}

tests/v2/features/authn_mappings.feature

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ Feature: AuthN Mappings
1010
And a valid "appKeyAuth" key in the system
1111
And an instance of "AuthNMappings" API
1212

13-
@generated @skip @team:DataDog/aaa-core-access
13+
@generated @skip @team:DataDog/team-aaa-identity
1414
Scenario: Create an AuthN Mapping returns "Bad Request" response
1515
Given new "CreateAuthNMapping" request
1616
And body with value {"data": {"attributes": {"attribute_key": "member-of", "attribute_value": "Development"}, "relationships": {"role": {"data": {"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}}}, "type": "authn_mappings"}}
1717
When the request is sent
1818
Then the response status is 400 Bad Request
1919

20-
@generated @skip @team:DataDog/aaa-core-access
20+
@generated @skip @team:DataDog/team-aaa-identity
2121
Scenario: Create an AuthN Mapping returns "Not Found" response
2222
Given new "CreateAuthNMapping" request
2323
And body with value {"data": {"attributes": {"attribute_key": "member-of", "attribute_value": "Development"}, "relationships": {"role": {"data": {"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}}}, "type": "authn_mappings"}}
2424
When the request is sent
2525
Then the response status is 404 Not Found
2626

27-
@team:DataDog/aaa-core-access
27+
@team:DataDog/team-aaa-identity
2828
Scenario: Create an AuthN Mapping returns "OK" response
2929
Given there is a valid "role" in the system
3030
And new "CreateAuthNMapping" request
@@ -35,14 +35,14 @@ Feature: AuthN Mappings
3535
And the response "data.attributes.attribute_value" is equal to "{{ unique }}"
3636
And the response "data.relationships.role.data.id" is equal to "{{ role.data.id }}"
3737

38-
@generated @skip @team:DataDog/aaa-core-access
38+
@generated @skip @team:DataDog/team-aaa-identity
3939
Scenario: Delete an AuthN Mapping returns "Not Found" response
4040
Given new "DeleteAuthNMapping" request
4141
And request contains "authn_mapping_id" parameter from "REPLACE.ME"
4242
When the request is sent
4343
Then the response status is 404 Not Found
4444

45-
@team:DataDog/aaa-core-access
45+
@team:DataDog/team-aaa-identity
4646
Scenario: Delete an AuthN Mapping returns "OK" response
4747
Given there is a valid "role" in the system
4848
And there is a valid "authn_mapping" in the system
@@ -51,31 +51,31 @@ Feature: AuthN Mappings
5151
When the request is sent
5252
Then the response status is 204 OK
5353

54-
@generated @skip @team:DataDog/aaa-core-access
54+
@generated @skip @team:DataDog/team-aaa-identity
5555
Scenario: Edit an AuthN Mapping returns "Bad Request" response
5656
Given new "UpdateAuthNMapping" request
5757
And request contains "authn_mapping_id" parameter from "REPLACE.ME"
5858
And body with value {"data": {"attributes": {"attribute_key": "member-of", "attribute_value": "Development"}, "id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "relationships": {"role": {"data": {"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}}}, "type": "authn_mappings"}}
5959
When the request is sent
6060
Then the response status is 400 Bad Request
6161

62-
@generated @skip @team:DataDog/aaa-core-access
62+
@generated @skip @team:DataDog/team-aaa-identity
6363
Scenario: Edit an AuthN Mapping returns "Conflict" response
6464
Given new "UpdateAuthNMapping" request
6565
And request contains "authn_mapping_id" parameter from "REPLACE.ME"
6666
And body with value {"data": {"attributes": {"attribute_key": "member-of", "attribute_value": "Development"}, "id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "relationships": {"role": {"data": {"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}}}, "type": "authn_mappings"}}
6767
When the request is sent
6868
Then the response status is 409 Conflict
6969

70-
@generated @skip @team:DataDog/aaa-core-access
70+
@generated @skip @team:DataDog/team-aaa-identity
7171
Scenario: Edit an AuthN Mapping returns "Not Found" response
7272
Given new "UpdateAuthNMapping" request
7373
And request contains "authn_mapping_id" parameter from "REPLACE.ME"
7474
And body with value {"data": {"attributes": {"attribute_key": "member-of", "attribute_value": "Development"}, "id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "relationships": {"role": {"data": {"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}}}, "type": "authn_mappings"}}
7575
When the request is sent
7676
Then the response status is 404 Not Found
7777

78-
@team:DataDog/aaa-core-access
78+
@team:DataDog/team-aaa-identity
7979
Scenario: Edit an AuthN Mapping returns "OK" response
8080
Given there is a valid "role" in the system
8181
And there is a valid "authn_mapping" in the system
@@ -89,22 +89,22 @@ Feature: AuthN Mappings
8989
And the response "data.attributes.attribute_value" is equal to "Development"
9090
And the response "data.relationships.role.data.id" is equal to "{{ role.data.id }}"
9191

92-
@generated @skip @team:DataDog/aaa-core-access
92+
@generated @skip @team:DataDog/team-aaa-identity
9393
Scenario: Edit an AuthN Mapping returns "Unprocessable Entity" response
9494
Given new "UpdateAuthNMapping" request
9595
And request contains "authn_mapping_id" parameter from "REPLACE.ME"
9696
And body with value {"data": {"attributes": {"attribute_key": "member-of", "attribute_value": "Development"}, "id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "relationships": {"role": {"data": {"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d", "type": "roles"}}}, "type": "authn_mappings"}}
9797
When the request is sent
9898
Then the response status is 422 Unprocessable Entity
9999

100-
@generated @skip @team:DataDog/aaa-core-access
100+
@generated @skip @team:DataDog/team-aaa-identity
101101
Scenario: Get an AuthN Mapping by UUID returns "Not Found" response
102102
Given new "GetAuthNMapping" request
103103
And request contains "authn_mapping_id" parameter from "REPLACE.ME"
104104
When the request is sent
105105
Then the response status is 404 Not Found
106106

107-
@team:DataDog/aaa-core-access
107+
@team:DataDog/team-aaa-identity
108108
Scenario: Get an AuthN Mapping by UUID returns "OK" response
109109
Given there is a valid "role" in the system
110110
And there is a valid "authn_mapping" in the system
@@ -117,7 +117,7 @@ Feature: AuthN Mappings
117117
And the response "data.attributes.attribute_value" is equal to "{{ unique }}"
118118
And the response "data.relationships.role.data.id" is equal to "{{ role.data.id }}"
119119

120-
@team:DataDog/aaa-core-access
120+
@team:DataDog/team-aaa-identity
121121
Scenario: List all AuthN Mappings returns "OK" response
122122
Given there is a valid "role" in the system
123123
And there is a valid "authn_mapping" in the system

0 commit comments

Comments
 (0)