Skip to content

Commit 3d5fb96

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Reassign aaa-identity CODEOWNERS to delegated-auth-login and org-management (#3713)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent c6491ec commit 3d5fb96

File tree

6 files changed

+86
-86
lines changed

6 files changed

+86
-86
lines changed

src/test/resources/com/datadog/api/client/v1/api/organizations.feature

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,87 +8,87 @@ Feature: Organizations
88
And a valid "appKeyAuth" key in the system
99
And an instance of "Organizations" API
1010

11-
@generated @skip @team:DataDog/team-aaa-identity
11+
@generated @skip @team:DataDog/org-management
1212
Scenario: Create a child organization returns "Bad Request" response
1313
Given new "CreateChildOrg" request
1414
And body with value {"billing": {"type": "parent_billing"}, "name": "New child org", "subscription": {"type": "pro"}}
1515
When the request is sent
1616
Then the response status is 400 Bad Request
1717

18-
@generated @skip @team:DataDog/team-aaa-identity
18+
@generated @skip @team:DataDog/org-management
1919
Scenario: Create a child organization returns "OK" response
2020
Given new "CreateChildOrg" request
2121
And body with value {"billing": {"type": "parent_billing"}, "name": "New child org", "subscription": {"type": "pro"}}
2222
When the request is sent
2323
Then the response status is 200 OK
2424

25-
@generated @skip @team:DataDog/team-aaa-identity
25+
@generated @skip @team:DataDog/org-management
2626
Scenario: Get organization information returns "Bad Request" response
2727
Given new "GetOrg" request
2828
And request contains "public_id" parameter from "REPLACE.ME"
2929
When the request is sent
3030
Then the response status is 400 Bad Request
3131

32-
@generated @skip @team:DataDog/team-aaa-identity
32+
@generated @skip @team:DataDog/org-management
3333
Scenario: Get organization information returns "OK" response
3434
Given new "GetOrg" request
3535
And request contains "public_id" parameter from "REPLACE.ME"
3636
When the request is sent
3737
Then the response status is 200 OK
3838

39-
@generated @skip @team:DataDog/team-aaa-identity
39+
@generated @skip @team:DataDog/org-management
4040
Scenario: List your managed organizations returns "OK" response
4141
Given new "ListOrgs" request
4242
When the request is sent
4343
Then the response status is 200 OK
4444

45-
@generated @skip @team:DataDog/team-aaa-identity
45+
@generated @skip @team:DataDog/org-management
4646
Scenario: Spin-off Child Organization returns "Bad Request" response
4747
Given new "DowngradeOrg" request
4848
And request contains "public_id" parameter from "REPLACE.ME"
4949
When the request is sent
5050
Then the response status is 400 Bad Request
5151

52-
@generated @skip @team:DataDog/team-aaa-identity
52+
@generated @skip @team:DataDog/org-management
5353
Scenario: Spin-off Child Organization returns "OK" response
5454
Given new "DowngradeOrg" request
5555
And request contains "public_id" parameter from "REPLACE.ME"
5656
When the request is sent
5757
Then the response status is 200 OK
5858

59-
@generated @skip @team:DataDog/team-aaa-identity
59+
@generated @skip @team:DataDog/org-management
6060
Scenario: Update your organization returns "Bad Request" response
6161
Given new "UpdateOrg" request
6262
And request contains "public_id" parameter from "REPLACE.ME"
6363
And body with value {"billing": {"type": "parent_billing"}, "description": "some description", "name": "New child org", "public_id": "abcdef12345", "settings": {"private_widget_share": false, "saml": {"enabled": false}, "saml_autocreate_access_role": "ro", "saml_autocreate_users_domains": {"domains": ["example.com"], "enabled": false}, "saml_can_be_enabled": false, "saml_idp_endpoint": "https://my.saml.endpoint", "saml_idp_initiated_login": {"enabled": false}, "saml_idp_metadata_uploaded": false, "saml_login_url": "https://my.saml.login.url", "saml_strict_mode": {"enabled": false}}, "subscription": {"type": "pro"}, "trial": false}
6464
When the request is sent
6565
Then the response status is 400 Bad Request
6666

67-
@generated @skip @team:DataDog/team-aaa-identity
67+
@generated @skip @team:DataDog/org-management
6868
Scenario: Update your organization returns "OK" response
6969
Given new "UpdateOrg" request
7070
And request contains "public_id" parameter from "REPLACE.ME"
7171
And body with value {"billing": {"type": "parent_billing"}, "description": "some description", "name": "New child org", "public_id": "abcdef12345", "settings": {"private_widget_share": false, "saml": {"enabled": false}, "saml_autocreate_access_role": "ro", "saml_autocreate_users_domains": {"domains": ["example.com"], "enabled": false}, "saml_can_be_enabled": false, "saml_idp_endpoint": "https://my.saml.endpoint", "saml_idp_initiated_login": {"enabled": false}, "saml_idp_metadata_uploaded": false, "saml_login_url": "https://my.saml.login.url", "saml_strict_mode": {"enabled": false}}, "subscription": {"type": "pro"}, "trial": false}
7272
When the request is sent
7373
Then the response status is 200 OK
7474

75-
@skip @team:DataDog/team-aaa-identity
75+
@skip @team:DataDog/org-management
7676
Scenario: Upload IdP metadata returns "Bad Request" response
7777
Given new "UploadIdPForOrg" request
7878
And request contains "public_id" parameter from "REPLACE.ME"
7979
And request contains "idp_file" parameter with value "./idp_metadata_invalid.xml"
8080
When the request is sent
8181
Then the response status is 400 Bad Request
8282

83-
@skip @team:DataDog/team-aaa-identity
83+
@skip @team:DataDog/org-management
8484
Scenario: Upload IdP metadata returns "OK" response
8585
Given new "UploadIdPForOrg" request
8686
And request contains "public_id" parameter from "REPLACE.ME"
8787
And request contains "idp_file" parameter with value "./idp_metadata.xml"
8888
When the request is sent
8989
Then the response status is 200 OK
9090

91-
@generated @skip @team:DataDog/team-aaa-identity
91+
@generated @skip @team:DataDog/org-management
9292
Scenario: Upload IdP metadata returns "Unsupported Media Type" response
9393
Given new "UploadIdPForOrg" request
9494
And request contains "public_id" parameter from "REPLACE.ME"

src/test/resources/com/datadog/api/client/v1/api/users.feature

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,93 +7,93 @@ Feature: Users
77
And a valid "appKeyAuth" key in the system
88
And an instance of "Users" API
99

10-
@generated @skip @team:DataDog/team-aaa-identity
10+
@generated @skip @team:DataDog/org-management
1111
Scenario: Create a user returns "Bad Request" response
1212
Given new "CreateUser" request
1313
And body with value {"access_role": "ro", "disabled": false, "email": "test@datadoghq.com", "handle": "test@datadoghq.com", "name": "test user"}
1414
When the request is sent
1515
Then the response status is 400 Bad Request
1616

17-
@generated @skip @team:DataDog/team-aaa-identity
17+
@generated @skip @team:DataDog/org-management
1818
Scenario: Create a user returns "Conflict" response
1919
Given new "CreateUser" request
2020
And body with value {"access_role": "ro", "disabled": false, "email": "test@datadoghq.com", "handle": "test@datadoghq.com", "name": "test user"}
2121
When the request is sent
2222
Then the response status is 409 Conflict
2323

24-
@generated @skip @team:DataDog/team-aaa-identity
24+
@generated @skip @team:DataDog/org-management
2525
Scenario: Create a user returns "User created" response
2626
Given new "CreateUser" request
2727
And body with value {"access_role": "ro", "disabled": false, "email": "test@datadoghq.com", "handle": "test@datadoghq.com", "name": "test user"}
2828
When the request is sent
2929
Then the response status is 200 User created
3030

31-
@replay-only @team:DataDog/team-aaa-identity
31+
@replay-only @team:DataDog/org-management
3232
Scenario: Create a user returns null access role
3333
Given new "CreateUser" request
3434
And body with value {"access_role": null, "disabled": false, "email": "test@datadoghq.com", "handle": "test@datadoghq.com", "name": "test user"}
3535
When the request is sent
3636
Then the response status is 200 User created
3737
And the response "user.access_role" is equal to null
3838

39-
@generated @skip @team:DataDog/team-aaa-identity
39+
@generated @skip @team:DataDog/org-management
4040
Scenario: Disable a user returns "Bad Request" response
4141
Given new "DisableUser" request
4242
And request contains "user_handle" parameter from "REPLACE.ME"
4343
When the request is sent
4444
Then the response status is 400 Bad Request
4545

46-
@generated @skip @team:DataDog/team-aaa-identity
46+
@generated @skip @team:DataDog/org-management
4747
Scenario: Disable a user returns "Not Found" response
4848
Given new "DisableUser" request
4949
And request contains "user_handle" parameter from "REPLACE.ME"
5050
When the request is sent
5151
Then the response status is 404 Not Found
5252

53-
@generated @skip @team:DataDog/team-aaa-identity
53+
@generated @skip @team:DataDog/org-management
5454
Scenario: Disable a user returns "User disabled" response
5555
Given new "DisableUser" request
5656
And request contains "user_handle" parameter from "REPLACE.ME"
5757
When the request is sent
5858
Then the response status is 200 User disabled
5959

60-
@generated @skip @team:DataDog/team-aaa-identity
60+
@generated @skip @team:DataDog/org-management
6161
Scenario: Get user details returns "Not Found" response
6262
Given new "GetUser" request
6363
And request contains "user_handle" parameter from "REPLACE.ME"
6464
When the request is sent
6565
Then the response status is 404 Not Found
6666

67-
@generated @skip @team:DataDog/team-aaa-identity
67+
@generated @skip @team:DataDog/org-management
6868
Scenario: Get user details returns "OK for get user" response
6969
Given new "GetUser" request
7070
And request contains "user_handle" parameter from "REPLACE.ME"
7171
When the request is sent
7272
Then the response status is 200 OK for get user
7373

74-
@generated @skip @team:DataDog/team-aaa-identity
74+
@generated @skip @team:DataDog/org-management
7575
Scenario: List all users returns "OK" response
7676
Given new "ListUsers" request
7777
When the request is sent
7878
Then the response status is 200 OK
7979

80-
@generated @skip @team:DataDog/team-aaa-identity
80+
@generated @skip @team:DataDog/org-management
8181
Scenario: Update a user returns "Bad Request" response
8282
Given new "UpdateUser" request
8383
And request contains "user_handle" parameter from "REPLACE.ME"
8484
And body with value {"access_role": "ro", "disabled": false, "email": "test@datadoghq.com", "handle": "test@datadoghq.com", "name": "test user"}
8585
When the request is sent
8686
Then the response status is 400 Bad Request
8787

88-
@generated @skip @team:DataDog/team-aaa-identity
88+
@generated @skip @team:DataDog/org-management
8989
Scenario: Update a user returns "Not Found" response
9090
Given new "UpdateUser" request
9191
And request contains "user_handle" parameter from "REPLACE.ME"
9292
And body with value {"access_role": "ro", "disabled": false, "email": "test@datadoghq.com", "handle": "test@datadoghq.com", "name": "test user"}
9393
When the request is sent
9494
Then the response status is 404 Not Found
9595

96-
@generated @skip @team:DataDog/team-aaa-identity
96+
@generated @skip @team:DataDog/org-management
9797
Scenario: Update a user returns "User updated" response
9898
Given new "UpdateUser" request
9999
And request contains "user_handle" parameter from "REPLACE.ME"

src/test/resources/com/datadog/api/client/v2/api/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/team-aaa-identity
13+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
20+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
27+
@team:DataDog/delegated-auth-login
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/team-aaa-identity
38+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
45+
@team:DataDog/delegated-auth-login
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/team-aaa-identity
54+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
62+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
70+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
78+
@team:DataDog/delegated-auth-login
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/team-aaa-identity
92+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
100+
@generated @skip @team:DataDog/delegated-auth-login
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/team-aaa-identity
107+
@team:DataDog/delegated-auth-login
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/team-aaa-identity
120+
@team:DataDog/delegated-auth-login
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)