-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit 'IDNWAIMEA-11385: DAS related changes in Certs API (…
…#1391) * IDNWAIMEA-11385: Initial commit for DAS related API changes * IDNWAIMEA-11385: Added default for all boolean values * IDNWAIMEA-11385: Fixed linter errors * IDNWAIMEA-11385: Fixed linter errors * IDNWAIMEA-11385: Adding nullable in object level for go SDK * IDNWAIMEA-11385: Moving data access details to DataAccess model * IDNWAIMEA-11385: Updated example in v3 Access Summaries API * IDNWAIMEA-11385: Added security for Access Summaries API * IDNWAIMEA-11385: Added security for Access Summaries API' by github action: 6597365801
- Loading branch information
1 parent
bff3c4e
commit 239f98d
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
type: object | ||
description: DAS data for the entitlement | ||
nullable: true | ||
properties: | ||
policies: | ||
type: array | ||
description: List of classification policies that apply to resources the entitlement \ groups has access to | ||
items: | ||
type: object | ||
properties: | ||
value: | ||
type: string | ||
description: Value of the policy | ||
example: GDPR-20 | ||
categories: | ||
type: array | ||
description: List of classification categories that apply to resources the entitlement \ groups has access to | ||
items: | ||
type: object | ||
properties: | ||
value: | ||
type: string | ||
description: Value of the category | ||
example: email-7 | ||
matchCount: | ||
type: integer | ||
description: Number of matched for each category | ||
example: 10 | ||
impactScore: | ||
type: object | ||
properties: | ||
value: | ||
type: string | ||
description: Impact Score for this data | ||
example: Medium | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters