本文簡要介紹 python 語言中 arcgis.gis._impl.CertificateManager.add
的用法。
用法:
add(name, domain, certificate)
返回:
指示成功 (True) 或失敗 (False) 的布爾值
add
方法允許管理員向他們的ArcGIS Online 組織注冊自定義 X.509 HTTPS 證書。這將允許ArcGIS在線組織在向遠程服務器發出 HTTPS 請求時信任遠程服務器使用的自定義證書,即存儲訪問其資源和與他人共享所需的憑據。注意:
一個組織最多可以注冊 5 個證書。
Parameter
Description
name
必需的字符串。證書名稱。
domain
必需的字符串。證書用於的服務器域。
certificate
Required String. Base64-encoded certificate text, enclosed between
—-BEGIN CERTIFICATE—-
和—-END CERTIFICATE—-
。例子:
# Usage Example >>> gis.admin.certificates.add(name="certificate_name", >>> domain = "domain_name", >>> certificate = "certificate_text")
相關用法
- Python ArcGIS CertificateManager.delete用法及代碼示例
- Python ArcGIS CertificateManager.get用法及代碼示例
- Python ArcGIS CertificateManager.update用法及代碼示例
- Python ArcGIS ContentManager.unshare_items用法及代碼示例
- Python ArcGIS ContentManager.delete_folder用法及代碼示例
- Python ArcGIS ContentManager.replace_service用法及代碼示例
- Python ArcGIS Country.enrich用法及代碼示例
- Python ArcGIS ContentManager.advanced_search用法及代碼示例
- Python ArcGIS CiscoEdgeIntelligence用法及代碼示例
- Python ArcGIS ContentManager.can_delete用法及代碼示例
- Python ArcGIS CategoryManager.add用法及代碼示例
- Python ArcGIS ContentManager.create_service用法及代碼示例
- Python ArcGIS ContentManager.create_folder用法及代碼示例
- Python ArcGIS ContentManager.share_items用法及代碼示例
- Python ArcGIS Country.subgeographies用法及代碼示例
- Python ArcGIS CreditManager用法及代碼示例
- Python ArcGIS CategorySchemaManager.delete用法及代碼示例
- Python ArcGIS ContentManager.rename_folder用法及代碼示例
- Python ArcGIS ContentManager.clone_items用法及代碼示例
- Python ArcGIS ContentManager.add用法及代碼示例
- Python ArcGIS ContentManager.search用法及代碼示例
- Python ArcGIS ContentManager.bulk_update用法及代碼示例
- Python ArcGIS Country.enrich_variables用法及代碼示例
- Python ArcGIS ContentManager.delete_items用法及代碼示例
- Python ArcGIS CategorySchemaManager.assign_to_items用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis._impl.CertificateManager.add。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。