本文簡要介紹 python 語言中 arcgis.gis.workflowmanager.SavedSearchesManager.update
的用法。
用法:
update(search)
返回:
成功對象
通過在 json 正文中指定更新值來更新已保存的搜索或圖表。除可選屬性外的所有屬性都必須在正文中傳遞以更新搜索或圖表。 searchId 一旦創建就無法更新。需要 adminAdvanced 或 adminBasic 權限。
Parameter
Description
search
必需的對象。定義要更新的搜索屬性的對象。
例子:
# USAGE EXAMPLE: Updating a Job's properties # create a WorkflowManager object from the workflow item >>> workflow_manager = WorkflowManager(wf_item) >>> workflow_manager.create_saved_search(name="name", definition={ "start": 0, "fields": ["job_status"], "displayNames": ["Status" ], "sortFields": [{"field": "job_status", "sortOrder": "Asc:}] }, search_type='Chart', color_ramp='Flower Field Inverse', sort_index=2000) >>> search_lst = workflow_manager.searches("All") >>> search = [x for x in search_lst if x["searchId"] == searchid][0] >>> search["colorRamp"] = "Default" >>> search["name"] = "Updated search" >>> actual = workflow_manager.update_saved_search(search)
相關用法
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS StoryMap.move用法及代碼示例
- Python ArcGIS Site.export_site用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.update_tiles用法及代碼示例
- Python ArcGIS SiteManager.get用法及代碼示例
- Python ArcGIS SceneLayer用法及代碼示例
- Python ArcGIS Site.update_theme用法及代碼示例
- Python ArcGIS System.index_status用法及代碼示例
- Python ArcGIS StreamLayer用法及代碼示例
- Python ArcGIS Site.update_layout用法及代碼示例
- Python ArcGIS StoryMap.theme用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.import_tiles用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.delete_tiles用法及代碼示例
- Python ArcGIS StoryMap.add用法及代碼示例
- Python ArcGIS Server用法及代碼示例
- Python ArcGIS StoryMap.credits用法及代碼示例
- Python ArcGIS StoryMap.cover用法及代碼示例
- Python ArcGIS Sidecar用法及代碼示例
- Python ArcGIS StoryMap.get用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.edit_tile_service用法及代碼示例
- Python ArcGIS SiteManager.get_by_domain用法及代碼示例
- Python ArcGIS SSLCertificates.import_certificate用法及代碼示例
- Python ArcGIS SiteManager.add用法及代碼示例
- Python ArcGIS SSLCertificates.list用法及代碼示例
- Python ArcGIS SingleFieldGeometry用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.workflowmanager.SavedSearchesManager.update。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。