本文简要介绍 python 语言中 arcgis.gis.User.report
的用法。
用法:
report(report_type, start_time, *, duration='weekly')
返回:
物品
报告操作是生成组织整体使用情况的报告。报告在一个地方定义一天、一周或一个月的组织使用情况指标。管理员可以监控谁在使用哪些服务、在特定时间段内消耗了多少积分和存储空间。报告还包括组织的当前状态,例如项目数、组数、用户数、1 级与 2 级、应用程序许可证分配和公共项目。
Parameter
Description
report_type
必需的字符串。要生成的组织报告的类型。允许的报告类型有:
credits
、content
、users
和activity
。start_time
必需的日期时间。生成报告的日期。每份报告必须在周日或周一开始,作为每周和每月报告的开始日期。所有日期时间必须采用 GMT 时区。为
start_time
传递None
将使用最接近每周和每月报告日期的星期日。对于每日报告,当前日期/时间将采用 GMT。duration
可选字符串。运行报告的时间范围。允许的值为:
monthly
、weekly
、daily
。对于activity
和credits
,需要start_time
。例子:
# Usage Example import datetime as _dt seven_days_ago = _dt.datetime.now(_dt.timezone.utc) - _dt.timedelta(days=7) item = user.report("content", seven_days_ago, duration="weekly")
相关用法
- Python ArcGIS User.reset用法及代码示例
- Python ArcGIS User.reassign_to用法及代码示例
- Python ArcGIS User.delete用法及代码示例
- Python ArcGIS User.generate_direct_access_url用法及代码示例
- Python ArcGIS User.user_settings用法及代码示例
- Python ArcGIS User.unlink_account用法及代码示例
- Python ArcGIS User.link_account用法及代码示例
- Python ArcGIS User.update_level用法及代码示例
- Python ArcGIS User.items用法及代码示例
- Python ArcGIS User.landing_page用法及代码示例
- Python ArcGIS User.get_thumbnail用法及代码示例
- Python ArcGIS User.folders用法及代码示例
- Python ArcGIS User.update用法及代码示例
- Python ArcGIS UserManager.signup用法及代码示例
- Python ArcGIS UserManager.advanced_search用法及代码示例
- Python ArcGIS UserManager.search用法及代码示例
- Python ArcGIS UserManager.get用法及代码示例
- Python ArcGIS UserManager.invite用法及代码示例
- Python ArcGIS UserManager.categories用法及代码示例
- Python ArcGIS UserManager.enable_users用法及代码示例
- Python ArcGIS UserManager.disable_users用法及代码示例
- Python ArcGIS UserManager.create用法及代码示例
- Python ArcGIS UserManager.send_notification用法及代码示例
- Python ArcGIS UserManager.counts用法及代码示例
- Python ArcGIS UX.featured_content用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.User.report。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。