當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS GroupMigrationManager.load用法及代碼示例


本文簡要介紹 python 語言中 arcgis.gis.GroupMigrationManager.load 的用法。

用法:

load(epk_item, item_ids=None, overwrite=True, future=True, folder_id=None, folder_owner=None)

返回:

字典 - 或 - StatusJobfuture=True

load 方法將 EPK 內容導入到當前的 Group 中。 .. 筆記:

Administrative privileges are required to run this operation.
Once imported, items will be owned by the importer, and will have
to be manually reassigned to the proper owner if needed.

Keys

Description

epk_item

必填項。關於 EPK 項目內容的報告。這允許管理員查看 EPK 中的內容。

item_ids

可選列表。要導入組織的項目 ID 列表。

overwrite

可選的布爾值。如果 Items 導入存在,或者 Item ID 已經在使用中,它將刪除舊的 item 並用這個替換它。

future

可選的布爾值。當為 True 時,load 將返回一個 Job 對象並且不會暫停當前線程。當False load 將以同步方式發生時暫停線程。如果要加載大量數據,請將 future 設置為 True 以減少時間。

folder_id

可選字符串。在ArcGIS Online 和 Enterprise 10.9+ 中,用戶可以指定項目的目標文件夾 ID。

folder_owner

可選字符串。在 ArcGIS Online 和 Enterprise 10.9+ 中,文件夾所有者的用戶名。

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.GroupMigrationManager.load。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。