Skip to content

Commit

Permalink
Agent - Omit internal fields from string output
Browse files Browse the repository at this point in the history
  • Loading branch information
ygalblum committed Apr 21, 2021
1 parent 3da7595 commit 6559bec
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions cterasdk/object/Agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,17 @@ def _login_object(self):
def _session_id_key(self):
return ''

@property
def _omit_fields(self):
return super()._omit_fields + [
'backup',
'cli',
'logs',
'services',
'support',
'sync'
]

def _is_authenticated(self, function, *args, **kwargs):
return True

Expand Down

0 comments on commit 6559bec

Please sign in to comment.