本文简要介绍 python 语言中 arcgis.gis.admin.WebAdaptors.list
的用法。
用法:
list()
返回:
WebAdaptor
对象列表。通常,门户仅存在 1 个 Web Adaptor
返回WebAdaptors的所有实例
USAGE: Get all Web Adaptors and list keys,values of first Web Adaptor object from arcgis.gis import GIS gis = GIS("https://yourportal.com/portal", "portaladmin", "password") # Return a List of Web Adaptor objects webadaptors = gis.admin.system.web_adaptors.list() # Get the first Web Adaptor object and print out each of its values for key, value in dict(webadaptors[0]).items(): print("{} : {}".format(key, value)) # Output machineName : yourportal.com machineIP : 10.11.12.13 webAdaptorURL : https://yourwebserver.com/portal id : ac17d7b9-adbd-4c45-ae13-77b0ad6f14e8 description : httpPort : 80 httpsPort : 443 refreshServerListInterval : 1 reconnectServerOnFailureInterval : 1
相关用法
- Python ArcGIS WebMap.update用法及代码示例
- Python ArcGIS WebMap.add_layer用法及代码示例
- Python ArcGIS WebMap用法及代码示例
- Python ArcGIS WebMap.basemap用法及代码示例
- Python ArcGIS WebMap.tables用法及代码示例
- Python ArcGIS WebMap.add_table用法及代码示例
- Python ArcGIS WebMap.forms用法及代码示例
- Python ArcGIS WebSocket用法及代码示例
- Python ArcGIS WebMap.update_drawing_info用法及代码示例
- Python ArcGIS WebhookManager.create用法及代码示例
- Python ArcGIS WebMap.print用法及代码示例
- Python ArcGIS WebMap.layers用法及代码示例
- Python ArcGIS WebMap.save用法及代码示例
- Python ArcGIS WebMap.move_from_basemap用法及代码示例
- Python ArcGIS WebMap.bookmarks用法及代码示例
- Python ArcGIS WebMap.update_layer用法及代码示例
- Python ArcGIS WebMap.move_to_basemap用法及代码示例
- Python ArcGIS Worker用法及代码示例
- Python ArcGIS WorkflowManager.create_lookup用法及代码示例
- Python ArcGIS WorkflowManager用法及代码示例
- Python ArcGIS WorkerManager用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.admin.WebAdaptors.list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。