本文简要介绍 python 语言中 arcgis.gis.Group.update
的用法。
用法:
update(title=None, tags=None, description=None, snippet=None, access=None, is_invitation_only=None, sort_field=None, sort_order=None, is_view_only=None, thumbnail=None, max_file_size=None, users_update_items=False, clear_empty_fields=False, display_settings=None, is_open_data=False, leaving_disallowed=False, member_access=None, hidden_members=False, membership_access=None, autojoin=False)
返回:
指示成功 (True) 或失败 (False) 的布尔值。
update
方法使用为特定参数提供的值更新组的属性。注意:
如果没有为特定参数提供值,则不会更新相应的属性。
Parameter
Description
title
可选字符串。组的新名称。
tags
可选字符串。以逗号分隔的新标签列表,或作为字符串的标签列表。
description
可选字符串。组的新说明。
snippet
可选字符串。总结该组的新短片断(<250 个字符)。
access
可选字符串。选择是私人的、公共的或组织的。
is_invitation_only
可选的布尔值。定义用户是否可以按请求加入。 True 表示需要邀请。
sort_field
可选字符串。指定与组共享的项目如何排序。
sort_order
可选字符串。升序或降序的选项分别是 asc 或 desc。
is_view_only
可选的布尔值。定义组是否可搜索。 True 表示该组是可搜索的。
thumbnail
可选字符串。新组图像的 URL 或文件位置。
max_file_size
可选整数。这是允许上传/共享到组的最大文件大小。默认值为:1024000
users_update_items
可选的布尔值。成员可以更新此组中的所有项目。对项目的更新可以包括对项目说明、标签、元数据以及内容的更改。创建组后,无法禁用此选项。默认为假。
clear_empty_fields
可选布尔值。如果为 True,用户可以将值设置为空字符串,否则,None 值将被忽略。
display_settings
可选字符串。定义组页面的默认显示以显示特定类型的项目。允许的值为:
apps, all, files, maps, layers, scenes, tools
。默认值为all
。is_open_data
可选布尔值。定义组是否可以在ArcGIS Hub 的开放数据函数中使用。默认值为假。
leaving_disallowed
可选的布尔值。定义是否限制用户选择离开组。如果为 True,则只有管理员可以将他们从组中删除。默认值为假。
hidden_members
可选布尔值。仅适用于组织帐户。如果为 true,则只有群组所有者、群组管理员和默认管理员可以查看群组的所有成员。
membership_access
可选字符串。设置组的成员资格访问权限。设置为
org
会限制组织成员的组访问权限。设置为collaboration
会将成员资格访问限制为合作伙伴协作和您的组织成员。如果设置None
,则任何组织都可以访问。None
是默认值。值:
org
、collaboration
或None
autojoin
可选布尔值。默认为
False
。仅适用于组织帐户。如果True
,则该群组将允许加入而无需请求成员资格批准。例子:
# Usage Example >>> user.update(description="Aggregated US Hurricane Data", tags = "Hurricanes,USA, 2020")
相关用法
- Python ArcGIS Group.get_members用法及代码示例
- Python ArcGIS Group.search用法及代码示例
- Python ArcGIS Group.invite_users用法及代码示例
- Python ArcGIS Group.add_users用法及代码示例
- Python ArcGIS Group.notify用法及代码示例
- Python ArcGIS Group.get_thumbnail用法及代码示例
- Python ArcGIS GroupMigrationManager.load用法及代码示例
- Python ArcGIS GroupMigrationManager.create用法及代码示例
- Python ArcGIS GroupApplication.decline用法及代码示例
- Python ArcGIS GroupManager.create用法及代码示例
- Python ArcGIS GroupManager.search用法及代码示例
- Python ArcGIS GroupApplication.accept用法及代码示例
- Python ArcGIS Geometry.true_centroid用法及代码示例
- Python ArcGIS GeoAccessor.bbox用法及代码示例
- Python ArcGIS Geometry.last_point用法及代码示例
- Python ArcGIS Geometry.measure_on_line用法及代码示例
- Python ArcGIS GeoAccessor.area用法及代码示例
- Python ArcGIS Geometry.point_from_angle_and_distance用法及代码示例
- Python ArcGIS Geometry.hull_rectangle用法及代码示例
- Python ArcGIS GeoAccessor.from_parquet用法及代码示例
- Python ArcGIS Geometry.translate用法及代码示例
- Python ArcGIS Geometry.from_shapely用法及代码示例
- Python ArcGIS Geometry.intersect用法及代码示例
- Python ArcGIS Geometry.length用法及代码示例
- Python ArcGIS Geometry.area用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.Group.update。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。