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


Python ArcGIS CertificateManager.update用法及代碼示例


本文簡要介紹 python 語言中 arcgis.gis._impl.CertificateManager.update 的用法。

用法:

update(cert_id, name=None, domain=None, certificate=None)

返回:

指示成功 (True) 或失敗 (False) 的布爾值

update 操作允許組織的管理員更新已注冊的自定義 X.509 HTTPS 證書。

Parameter

Description

cert_id

必需的字符串。要刪除的證書的 ID。

name

可選字符串。證書名稱。

domain

可選字符串。證書用於的服務器域。

certificate

Optional String. Base64-encoded certificate text, enclosed between `

—-開始證書—-` 和 —-END CERTIFICATE—-

例子:

# Usage Example

>>> gis.admin.certificates.update(cert_id ="certificate_id",
>>>                               name = "certificate_name",
>>>                               domain ="certificate_domain",
>>>                               certificate = "certificate_text")

相關用法


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