I'm trying to update the itemInfo for a feature service using the ArcGIS python API. But it isn't updating for some reason. When I try,
portal = arcgis.gis.GIS('[login_creds]')
item = portal.content.get('[feature_service_id]')
item.update(item_properties={'name':'Updated name', 'culture':'en-us'"})
The culture item updated, but not the name? Any ideas why. Then I found this, and thought maybe the name tag wasn't correct above. So I tried,
portal = arcgis.gis.GIS('[login_creds]')
item = portal.content.get('[feature_service_id]')
item.update(item_properties={'namegt':'Updated name', 'culture':'en-us'"})
But still nothing.