File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -214,13 +214,19 @@ def sync_users(self, environments=None):
214214 self .sdk .throw_error (resp )
215215 return resp
216216
217- def get_sync_status (self , operation ):
217+ def get_sync_status (self , identifier ):
218218 return self .sdk .call (
219219 svc = 'environments' , func = 'sync_status' , squelch = [
220220 Squelch (field = 'error_code' , value = 'NOT_FOUND' , default = None ,
221- warning = 'No User Sync Operation found matching %s' % operation )
221+ warning = 'No User Sync Operation found matching %s' % identifier )
222222 ],
223- operationId = operation
223+ operationId = identifier
224+ )
225+
226+ def get_automated_sync_environment_status (self , environment ):
227+ return self .sdk .call (
228+ svc = 'environments' , func = 'get_automated_sync_environment_status' ,
229+ environmentName = environment
224230 )
225231
226232 def get_keytab (self , actor , environment ):
You can’t perform that action at this time.
0 commit comments