用法:
update(initiative_properties=None, data=None, thumbnail=None, metadata=None)
参数:
- initiative_properties: 必需的字典。有关键和值,请参见下面的 URL。
- data: 可选字符串。数据的路径或 URL。
- thumbnail: 可选字符串。缩略图的路径或 URL。
- metadata: 可选字符串。元数据的路径或 URL。
返回:
指示成功 (True) 或失败 (False) 的布尔值。
更新倡议。
注意:
对于initiative_properties,仅传入要更新的属性的参数。所有其他属性将保持不变。例如,如果您只想更新倡议的说明,则只需在initiative_properties 中提供说明参数。
要查找参数 initiative_properties 的适用选项列表 -https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#arcgis.gis.Item.update
例子:
# USAGE EXAMPLE: Update an initiative successfully initiative1 = myHub.initiatives.get('itemId12345') initiative1.update(initiative_properties={'description':'Create your own initiative to organize people around a shared goal.'}) >> True
相关用法
- Python arcgis.apps.hub.Initiative.delete用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.add用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.get用法及代码示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代码示例
- Python arcgis.apps.hub.Indicator.update用法及代码示例
- Python arcgis.apps.hub.Indicator.delete用法及代码示例
- Python arcgis.apps.workforce.Worker用法及代码示例
- Python arcgis.apps.workforce.AssignmentType用法及代码示例
- Python arcgis.apps.workforce.managers.AssignmentIntegrationManager用法及代码示例
- Python arcgis.apps.workforce.Integration用法及代码示例
- Python arcgis.apps.workforce.managers.AssignmentTypeManager用法及代码示例
- Python arcgis.apps.storymap.story.StoryMap.theme用法及代码示例
- Python arcgis.apps.workforce.Dispatcher用法及代码示例
- Python arcgis.apps.storymap.story_content.Sidecar用法及代码示例
- Python arcgis.apps.storymap.story_content.Swipe用法及代码示例
- Python arcgis.apps.workforce.managers.WorkerManager用法及代码示例
- Python arcgis.apps.workforce.Assignment用法及代码示例
- Python arcgis.apps.storymap.story.StoryMap.cover用法及代码示例
- Python arcgis.apps.storymap.story.StoryMap.duplicate用法及代码示例
- Python arcgis.apps.workforce.managers.DispatcherManager用法及代码示例
- Python arcgis.apps.storymap.story.StoryMap.add用法及代码示例
- Python arcgis.apps.workforce.managers.AssignmentManager用法及代码示例
- Python arcgis.apps.storymap.story.StoryMap.credits用法及代码示例
- Python arcgis.apps.storymap.story.StoryMap.move用法及代码示例
- Python arcgis.apps.tracker.TrackView用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.apps.hub.Initiative.update。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。