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):
214
214
self .sdk .throw_error (resp )
215
215
return resp
216
216
217
- def get_sync_status (self , operation ):
217
+ def get_sync_status (self , identifier ):
218
218
return self .sdk .call (
219
219
svc = 'environments' , func = 'sync_status' , squelch = [
220
220
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 )
222
222
],
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
224
230
)
225
231
226
232
def get_keytab (self , actor , environment ):
You can’t perform that action at this time.
0 commit comments