Skip to content

Commit

Permalink
Add missing operation id alias. Closes #567.
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Feb 24, 2022
1 parent 9d7ffad commit 2117607
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
+ Added: Default value of `0` for `sequence_id` keyword in `check_command_status`, `check_active_responder_command_status` and `check_admin_command_status` methods within Real Time Response Service Classes.
- `real_time_response.py`
- `real_time_response_admin.py`
+ Added: Publicly exposed `confirm_base_region`, `confirm_base_url` methods and `BaseURL` enumerator.
- `__init__.py`

## Issues resolved
+ Fixed: Missing alias for `api_preempt_proxy_post_graphql` (Operation ID syntax) in Identity Protection Service Class. Closes #567.
- `identity_protection.py`
- Thanks to @tsullivan06 for identifying and reporting this issue!

# Version 1.0.4
## Added features and functionality
Expand Down
2 changes: 1 addition & 1 deletion src/falconpy/identity_protection.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def graphql(self: object, body: dict = None, **kwargs) -> dict:
# does not conform to snake_case / PEP8 and is defined here
# for backwards compatibility / ease of use purposes
GraphQL = graphql

api_preempt_proxy_post_graphql = graphql

# The legacy name for this class does not conform to PascalCase / PEP8
# It is defined here for backwards compatibility purposes only.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_authentications.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def serviceAny_checkRegionNameLookups(self):

def serviceAny_reallyBadBaseURL(self):
result = confirm_base_region("https://this-url-does-not-exist")
if result == "us1":
if result == "US1":
return True
else:
return False
Expand Down

0 comments on commit 2117607

Please sign in to comment.