Skip to content

Commit 8c169f8

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add GET OrgGroupPolicy and OrgGroupPolicyOverride, Add policy_type/enforcement_tier fields, Remove enforced_at field (#3255)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 401a6ed commit 8c169f8

22 files changed

Lines changed: 583 additions & 77 deletions

.generator/schemas/v2/openapi.yaml

Lines changed: 202 additions & 32 deletions
Large diffs are not rendered by default.

examples/v2/org-groups/BulkUpdateOrgGroupMemberships.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
attributes: DatadogAPIClient::V2::OrgGroupMembershipBulkUpdateAttributes.new({
1212
orgs: [
1313
DatadogAPIClient::V2::GlobalOrgIdentifier.new({
14-
org_site: "datadoghq.com",
14+
org_site: "us1",
1515
org_uuid: "c3d4e5f6-a7b8-9012-cdef-012345678901",
1616
}),
1717
],

examples/v2/org-groups/CreateOrgGroupPolicy.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
content: {
1313
"value": "UTC",
1414
},
15+
enforcement_tier: DatadogAPIClient::V2::OrgGroupPolicyEnforcementTier::DEFAULT,
1516
policy_name: "monitor_timezone",
17+
policy_type: DatadogAPIClient::V2::OrgGroupPolicyPolicyType::ORG_CONFIG,
1618
}),
1719
relationships: DatadogAPIClient::V2::OrgGroupPolicyCreateRelationships.new({
1820
org_group: DatadogAPIClient::V2::OrgGroupRelationshipToOne.new({

examples/v2/org-groups/CreateOrgGroupPolicyOverride.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
body = DatadogAPIClient::V2::OrgGroupPolicyOverrideCreateRequest.new({
1010
data: DatadogAPIClient::V2::OrgGroupPolicyOverrideCreateData.new({
1111
attributes: DatadogAPIClient::V2::OrgGroupPolicyOverrideCreateAttributes.new({
12-
org_site: "datadoghq.com",
12+
org_site: "us1",
1313
org_uuid: "c3d4e5f6-a7b8-9012-cdef-012345678901",
1414
}),
1515
relationships: DatadogAPIClient::V2::OrgGroupPolicyOverrideCreateRelationships.new({
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Get an org group policy returns "OK" response
2+
3+
require "datadog_api_client"
4+
DatadogAPIClient.configure do |config|
5+
config.unstable_operations["v2.get_org_group_policy".to_sym] = true
6+
end
7+
api_instance = DatadogAPIClient::V2::OrgGroupsAPI.new
8+
p api_instance.get_org_group_policy("1a2b3c4d-5e6f-7890-abcd-ef0123456789")
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Get an org group policy override returns "OK" response
2+
3+
require "datadog_api_client"
4+
DatadogAPIClient.configure do |config|
5+
config.unstable_operations["v2.get_org_group_policy_override".to_sym] = true
6+
end
7+
api_instance = DatadogAPIClient::V2::OrgGroupsAPI.new
8+
p api_instance.get_org_group_policy_override("9f8e7d6c-5b4a-3210-fedc-ba0987654321")

examples/v2/org-groups/UpdateOrgGroupPolicy.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
content: {
1313
"value": "UTC",
1414
},
15+
enforcement_tier: DatadogAPIClient::V2::OrgGroupPolicyEnforcementTier::DEFAULT,
1516
}),
1617
id: "1a2b3c4d-5e6f-7890-abcd-ef0123456789",
1718
type: DatadogAPIClient::V2::OrgGroupPolicyType::ORG_GROUP_POLICIES,

examples/v2/org-groups/UpdateOrgGroupPolicyOverride.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
body = DatadogAPIClient::V2::OrgGroupPolicyOverrideUpdateRequest.new({
1010
data: DatadogAPIClient::V2::OrgGroupPolicyOverrideUpdateData.new({
1111
attributes: DatadogAPIClient::V2::OrgGroupPolicyOverrideUpdateAttributes.new({
12-
org_site: "datadoghq.com",
12+
org_site: "us1",
1313
org_uuid: "c3d4e5f6-a7b8-9012-cdef-012345678901",
1414
}),
1515
id: "9f8e7d6c-5b4a-3210-fedc-ba0987654321",

features/scenarios_model_mapping.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3470,6 +3470,9 @@
34703470
"v2.DeleteOrgGroupPolicy" => {
34713471
"org_group_policy_id" => "UUID",
34723472
},
3473+
"v2.GetOrgGroupPolicy" => {
3474+
"org_group_policy_id" => "UUID",
3475+
},
34733476
"v2.UpdateOrgGroupPolicy" => {
34743477
"org_group_policy_id" => "UUID",
34753478
"body" => "OrgGroupPolicyUpdateRequest",
@@ -3487,6 +3490,9 @@
34873490
"v2.DeleteOrgGroupPolicyOverride" => {
34883491
"org_group_policy_override_id" => "UUID",
34893492
},
3493+
"v2.GetOrgGroupPolicyOverride" => {
3494+
"org_group_policy_override_id" => "UUID",
3495+
},
34903496
"v2.UpdateOrgGroupPolicyOverride" => {
34913497
"org_group_policy_override_id" => "UUID",
34923498
"body" => "OrgGroupPolicyOverrideUpdateRequest",

features/v2/org_groups.feature

Lines changed: 63 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,71 +12,71 @@ Feature: Org Groups
1212
Scenario: Bulk update org group memberships returns "Bad Request" response
1313
Given operation "BulkUpdateOrgGroupMemberships" enabled
1414
And new "BulkUpdateOrgGroupMemberships" request
15-
And body with value {"data": {"attributes": {"orgs": [{"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}]}, "relationships": {"source_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "target_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_membership_bulk_updates"}}
15+
And body with value {"data": {"attributes": {"orgs": [{"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}]}, "relationships": {"source_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "target_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_membership_bulk_updates"}}
1616
When the request is sent
1717
Then the response status is 400 Bad Request
1818

1919
@generated @skip @team:DataDog/org-management
2020
Scenario: Bulk update org group memberships returns "Not Found" response
2121
Given operation "BulkUpdateOrgGroupMemberships" enabled
2222
And new "BulkUpdateOrgGroupMemberships" request
23-
And body with value {"data": {"attributes": {"orgs": [{"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}]}, "relationships": {"source_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "target_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_membership_bulk_updates"}}
23+
And body with value {"data": {"attributes": {"orgs": [{"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}]}, "relationships": {"source_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "target_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_membership_bulk_updates"}}
2424
When the request is sent
2525
Then the response status is 404 Not Found
2626

2727
@generated @skip @team:DataDog/org-management
2828
Scenario: Bulk update org group memberships returns "OK" response
2929
Given operation "BulkUpdateOrgGroupMemberships" enabled
3030
And new "BulkUpdateOrgGroupMemberships" request
31-
And body with value {"data": {"attributes": {"orgs": [{"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}]}, "relationships": {"source_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "target_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_membership_bulk_updates"}}
31+
And body with value {"data": {"attributes": {"orgs": [{"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}]}, "relationships": {"source_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "target_org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_membership_bulk_updates"}}
3232
When the request is sent
3333
Then the response status is 200 OK
3434

3535
@generated @skip @team:DataDog/org-management
3636
Scenario: Create an org group policy override returns "Bad Request" response
3737
Given operation "CreateOrgGroupPolicyOverride" enabled
3838
And new "CreateOrgGroupPolicyOverride" request
39-
And body with value {"data": {"attributes": {"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "org_group_policy": {"data": {"id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}}, "type": "org_group_policy_overrides"}}
39+
And body with value {"data": {"attributes": {"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "org_group_policy": {"data": {"id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}}, "type": "org_group_policy_overrides"}}
4040
When the request is sent
4141
Then the response status is 400 Bad Request
4242

4343
@generated @skip @team:DataDog/org-management
4444
Scenario: Create an org group policy override returns "Conflict" response
4545
Given operation "CreateOrgGroupPolicyOverride" enabled
4646
And new "CreateOrgGroupPolicyOverride" request
47-
And body with value {"data": {"attributes": {"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "org_group_policy": {"data": {"id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}}, "type": "org_group_policy_overrides"}}
47+
And body with value {"data": {"attributes": {"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "org_group_policy": {"data": {"id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}}, "type": "org_group_policy_overrides"}}
4848
When the request is sent
4949
Then the response status is 409 Conflict
5050

5151
@generated @skip @team:DataDog/org-management
5252
Scenario: Create an org group policy override returns "Created" response
5353
Given operation "CreateOrgGroupPolicyOverride" enabled
5454
And new "CreateOrgGroupPolicyOverride" request
55-
And body with value {"data": {"attributes": {"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "org_group_policy": {"data": {"id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}}, "type": "org_group_policy_overrides"}}
55+
And body with value {"data": {"attributes": {"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}, "org_group_policy": {"data": {"id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}}, "type": "org_group_policy_overrides"}}
5656
When the request is sent
5757
Then the response status is 201 Created
5858

5959
@generated @skip @team:DataDog/org-management
6060
Scenario: Create an org group policy returns "Bad Request" response
6161
Given operation "CreateOrgGroupPolicy" enabled
6262
And new "CreateOrgGroupPolicy" request
63-
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "policy_name": "monitor_timezone"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_policies"}}
63+
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "enforcement_tier": "DEFAULT", "policy_name": "monitor_timezone", "policy_type": "org_config"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_policies"}}
6464
When the request is sent
6565
Then the response status is 400 Bad Request
6666

6767
@generated @skip @team:DataDog/org-management
6868
Scenario: Create an org group policy returns "Conflict" response
6969
Given operation "CreateOrgGroupPolicy" enabled
7070
And new "CreateOrgGroupPolicy" request
71-
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "policy_name": "monitor_timezone"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_policies"}}
71+
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "enforcement_tier": "DEFAULT", "policy_name": "monitor_timezone", "policy_type": "org_config"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_policies"}}
7272
When the request is sent
7373
Then the response status is 409 Conflict
7474

7575
@generated @skip @team:DataDog/org-management
7676
Scenario: Create an org group policy returns "Created" response
7777
Given operation "CreateOrgGroupPolicy" enabled
7878
And new "CreateOrgGroupPolicy" request
79-
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "policy_name": "monitor_timezone"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_policies"}}
79+
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "enforcement_tier": "DEFAULT", "policy_name": "monitor_timezone", "policy_type": "org_config"}, "relationships": {"org_group": {"data": {"id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789", "type": "org_groups"}}}, "type": "org_group_policies"}}
8080
When the request is sent
8181
Then the response status is 201 Created
8282

@@ -200,6 +200,54 @@ Feature: Org Groups
200200
When the request is sent
201201
Then the response status is 200 OK
202202

203+
@generated @skip @team:DataDog/org-management
204+
Scenario: Get an org group policy override returns "Bad Request" response
205+
Given operation "GetOrgGroupPolicyOverride" enabled
206+
And new "GetOrgGroupPolicyOverride" request
207+
And request contains "org_group_policy_override_id" parameter from "REPLACE.ME"
208+
When the request is sent
209+
Then the response status is 400 Bad Request
210+
211+
@generated @skip @team:DataDog/org-management
212+
Scenario: Get an org group policy override returns "Not Found" response
213+
Given operation "GetOrgGroupPolicyOverride" enabled
214+
And new "GetOrgGroupPolicyOverride" request
215+
And request contains "org_group_policy_override_id" parameter from "REPLACE.ME"
216+
When the request is sent
217+
Then the response status is 404 Not Found
218+
219+
@generated @skip @team:DataDog/org-management
220+
Scenario: Get an org group policy override returns "OK" response
221+
Given operation "GetOrgGroupPolicyOverride" enabled
222+
And new "GetOrgGroupPolicyOverride" request
223+
And request contains "org_group_policy_override_id" parameter from "REPLACE.ME"
224+
When the request is sent
225+
Then the response status is 200 OK
226+
227+
@generated @skip @team:DataDog/org-management
228+
Scenario: Get an org group policy returns "Bad Request" response
229+
Given operation "GetOrgGroupPolicy" enabled
230+
And new "GetOrgGroupPolicy" request
231+
And request contains "org_group_policy_id" parameter from "REPLACE.ME"
232+
When the request is sent
233+
Then the response status is 400 Bad Request
234+
235+
@generated @skip @team:DataDog/org-management
236+
Scenario: Get an org group policy returns "Not Found" response
237+
Given operation "GetOrgGroupPolicy" enabled
238+
And new "GetOrgGroupPolicy" request
239+
And request contains "org_group_policy_id" parameter from "REPLACE.ME"
240+
When the request is sent
241+
Then the response status is 404 Not Found
242+
243+
@generated @skip @team:DataDog/org-management
244+
Scenario: Get an org group policy returns "OK" response
245+
Given operation "GetOrgGroupPolicy" enabled
246+
And new "GetOrgGroupPolicy" request
247+
And request contains "org_group_policy_id" parameter from "REPLACE.ME"
248+
When the request is sent
249+
Then the response status is 200 OK
250+
203251
@generated @skip @team:DataDog/org-management
204252
Scenario: Get an org group returns "Bad Request" response
205253
Given operation "GetOrgGroup" enabled
@@ -323,7 +371,7 @@ Feature: Org Groups
323371
Given operation "UpdateOrgGroupPolicyOverride" enabled
324372
And new "UpdateOrgGroupPolicyOverride" request
325373
And request contains "org_group_policy_override_id" parameter from "REPLACE.ME"
326-
And body with value {"data": {"attributes": {"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "id": "9f8e7d6c-5b4a-3210-fedc-ba0987654321", "type": "org_group_policy_overrides"}}
374+
And body with value {"data": {"attributes": {"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "id": "9f8e7d6c-5b4a-3210-fedc-ba0987654321", "type": "org_group_policy_overrides"}}
327375
When the request is sent
328376
Then the response status is 400 Bad Request
329377

@@ -332,7 +380,7 @@ Feature: Org Groups
332380
Given operation "UpdateOrgGroupPolicyOverride" enabled
333381
And new "UpdateOrgGroupPolicyOverride" request
334382
And request contains "org_group_policy_override_id" parameter from "REPLACE.ME"
335-
And body with value {"data": {"attributes": {"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "id": "9f8e7d6c-5b4a-3210-fedc-ba0987654321", "type": "org_group_policy_overrides"}}
383+
And body with value {"data": {"attributes": {"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "id": "9f8e7d6c-5b4a-3210-fedc-ba0987654321", "type": "org_group_policy_overrides"}}
336384
When the request is sent
337385
Then the response status is 404 Not Found
338386

@@ -341,7 +389,7 @@ Feature: Org Groups
341389
Given operation "UpdateOrgGroupPolicyOverride" enabled
342390
And new "UpdateOrgGroupPolicyOverride" request
343391
And request contains "org_group_policy_override_id" parameter from "REPLACE.ME"
344-
And body with value {"data": {"attributes": {"org_site": "datadoghq.com", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "id": "9f8e7d6c-5b4a-3210-fedc-ba0987654321", "type": "org_group_policy_overrides"}}
392+
And body with value {"data": {"attributes": {"org_site": "us1", "org_uuid": "c3d4e5f6-a7b8-9012-cdef-012345678901"}, "id": "9f8e7d6c-5b4a-3210-fedc-ba0987654321", "type": "org_group_policy_overrides"}}
345393
When the request is sent
346394
Then the response status is 200 OK
347395

@@ -350,7 +398,7 @@ Feature: Org Groups
350398
Given operation "UpdateOrgGroupPolicy" enabled
351399
And new "UpdateOrgGroupPolicy" request
352400
And request contains "org_group_policy_id" parameter from "REPLACE.ME"
353-
And body with value {"data": {"attributes": {"content": {"value": "UTC"}}, "id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}
401+
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "enforcement_tier": "DEFAULT"}, "id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}
354402
When the request is sent
355403
Then the response status is 400 Bad Request
356404

@@ -359,7 +407,7 @@ Feature: Org Groups
359407
Given operation "UpdateOrgGroupPolicy" enabled
360408
And new "UpdateOrgGroupPolicy" request
361409
And request contains "org_group_policy_id" parameter from "REPLACE.ME"
362-
And body with value {"data": {"attributes": {"content": {"value": "UTC"}}, "id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}
410+
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "enforcement_tier": "DEFAULT"}, "id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}
363411
When the request is sent
364412
Then the response status is 404 Not Found
365413

@@ -368,7 +416,7 @@ Feature: Org Groups
368416
Given operation "UpdateOrgGroupPolicy" enabled
369417
And new "UpdateOrgGroupPolicy" request
370418
And request contains "org_group_policy_id" parameter from "REPLACE.ME"
371-
And body with value {"data": {"attributes": {"content": {"value": "UTC"}}, "id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}
419+
And body with value {"data": {"attributes": {"content": {"value": "UTC"}, "enforcement_tier": "DEFAULT"}, "id": "1a2b3c4d-5e6f-7890-abcd-ef0123456789", "type": "org_group_policies"}}
372420
When the request is sent
373421
Then the response status is 200 OK
374422

0 commit comments

Comments
 (0)