def update_service(workspace_name, service): service_properties = get_service_properties(service) return server.update_service(workspace_name, **service_properties)
def create_service(workspace_name, service): """Take a workspace_name and a service object and save it to the sever. Return the server's json response as a dictionary. """ service_properties = get_service_properties(service) return server.create_service(workspace_name, **service_properties)