当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS User.update用法及代码示例


本文简要介绍 python 语言中 arcgis.gis.User.update 的用法。

用法:

update(access=None, preferred_view=None, description=None, tags=None, thumbnail=None, fullname=None, email=None, culture=None, region=None, first_name=None, last_name=None, security_question=None, security_answer=None, culture_format=None, categories=None)

返回:

指示成功 (True) 或失败 (False) 的布尔值。

update 方法根据调用 update 时传递的参数更新此用户的属性。

注意:

Only pass in arguments for properties you want to update. All other properties will be left as they are. If you want to update the description, then only provide the description argument.

更新安全问题时,您还必须提供security_answer。

Parameter

Description

access

可选字符串。用户的访问级别,允许的值是 private、org、public。

preferred_view

可选字符串。用户的首选视图,允许的值为 Web、GIS、null。

description

可选字符串。用户的说明。

tags

可选字符串。以逗号分隔值或字符串列表形式列出的标签。

thumbnail

可选字符串。 PNG、GIF 或 JPEG 类型文件的路径或 URL。最大允许大小为 1 MB。

fullname

可选字符串。此用户的全名,仅供内置用户使用。

email

可选字符串。该用户的e-mail地址,仅供内置用户使用。

culture

可选字符串。两个字母的语言代码,例如 fr。

region

可选字符串。两个字母的国家代码,例如 FR。

first_name

可选字符串。用户的名字。

last_name

可选字符串。用户的名字。

security_question

可选整数。是从 1 到 14 的数字。问题如下:

  1. 你出生在哪个城市?

  2. 你的高中吉祥物是什么?

  3. 你母亲的姓氏是什么?

  4. 你的第一辆车是什么牌子的?

  5. 你上的是什么高中?

  6. 你最好的朋友的姓是什么?

  7. 你最小的兄弟姐妹的中间名是什么?

  8. 你长大的那条街叫什么名字?

  9. 你最喜欢的虚构人物的名字是什么?

  10. 你最喜欢的宠物叫什么名字?

  11. 你最喜欢的餐厅叫什么名字?

  12. 你最喜欢的书的标题是什么?

  13. 你理想的工作是什么?

  14. 你第一次约会去了哪里?

使用示例:

security_question=13

security_answer

可选字符串。这是安全问题的答案。如果您要更改用户的问题,则必须提供答案。

使用示例:

security_answer=“使用 Python API”

culture_format

可选字符串。指定user-preferred 数字和日期格式

categories

可选列表[str]。类别名称列表。

示例:`categories = ["category11", "category12"]`

例子:

# Usage Example

>>> user.update(description="Aggregated US Hurricane Data", tags = "Hurricanes,USA, 2020")

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.User.update。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。