本文简要介绍 python 语言中 arcgis.apps.workforce.Integration
的用法。
用法:
class arcgis.apps.workforce.Integration(project, feature=None, integration_id=None, prompt=None, url_template=None, assignment_type=None)
表示项目中的集成。仅限版本 2 劳动力项目。
Parameter
Description
project
必需
Project
。调度程序所属的项目。feature
可选
Feature
。表示调度程序的特征。主要用于内部使用。如果提供,其他参数将被忽略。integration_id
可选
String
。集成的 idprompt
可选
String
。移动应用程序中的集成提示url_template
可选
String
。提示链接到的 urlassignment_type
可选
String
。集成的分配类型# Get an integration, update it, delete it import arcgis gis = arcgis.gis.GIS("https://arcgis.com", "<username>", "<password>") item = gis.content.get("<item-id>") project = arcgis.apps.workforce.Project(item) integration = project.integrations.search()[0] integration.update(integration_id="arcgis-navigator",prompt="Navigate to Assignment") integration.delete()
相关用法
- Python ArcGIS IntegratedMeshLayer用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.add用法及代码示例
- Python arcgis.apps.hub.Indicator.update用法及代码示例
- Python arcgis.apps.hub.Indicator.delete用法及代码示例
- Python ArcGIS InitiativeManager.clone用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.get用法及代码示例
- Python ArcGIS IndicatorData.add_filter用法及代码示例
- Python arcgis.apps.hub.Initiative.delete用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
- Python ArcGIS ImageryLayer.draw_graph用法及代码示例
- Python ArcGIS Item.reassign_to用法及代码示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代码示例
- Python ArcGIS ImageryTileManager.export用法及代码示例
- Python ArcGIS ImageryLayer.plot_histograms用法及代码示例
- Python ArcGIS ImageryLayerCacheManager.delete_tiles用法及代码示例
- Python ArcGIS ImageryLayer.to_features用法及代码示例
- Python ArcGIS Item.share用法及代码示例
- Python ArcGIS Item.status用法及代码示例
- Python ArcGIS Item.delete_relationship用法及代码示例
- Python ArcGIS Item.download用法及代码示例
- Python ArcGIS ImageryTileManager.estimate_size用法及代码示例
- Python ArcGIS ImageryLayer.compute_cache_info用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.apps.workforce.Integration。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。