-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CSP - Account] Added an option to receive custom fields (#37248)
* [CSP - Account] Added an option to recive custom fields * Update 1_34_48.md * Add log * Fix error
- Loading branch information
Showing
4 changed files
with
24 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
#### Scripts | ||
|
||
##### CommonServerPython | ||
|
||
Added an option to the *Account* entity to receive custom fields. |
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 |
---|---|---|
|
@@ -6308,7 +6308,8 @@ def test_create_account(self): | |
user_id='test_user_id', | ||
manager_email='[email protected]', | ||
manager_display_name='test_manager_display_name', | ||
risk_level='test_risk_level' | ||
risk_level='test_risk_level', | ||
**{'some_undefinedKey': 'value'} | ||
) | ||
|
||
results = CommandResults( | ||
|
@@ -6351,7 +6352,8 @@ def test_create_account(self): | |
'Email': '[email protected]', | ||
'DisplayName': 'test_manager_display_name' | ||
}, | ||
'RiskLevel': 'test_risk_level' | ||
'RiskLevel': 'test_risk_level', | ||
'some_undefinedKey': 'value' | ||
} | ||
], | ||
'DBotScore(val.Indicator && val.Indicator == obj.Indicator &&' | ||
|
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