Skip to main content

GetPortalInfo

サマリー

Returns a dictionary that contains information about available portals.

ディスカッション

For more information on portal connections, see Manage portal connections from ArcGIS Pro.

構文

GetPortalInfo({portal_URL})

パラメーター 説明 データ タイプ

portal_URL

The portal URL. The URL returned by GetActivePortalURL is used by default.

String

戻り値

データ タイプ 説明

Dictionary

The function returns a dictionary containing properties of the portal.

The GetPortalInfo dictionary object keys are as follows:

  • SSL_enabled—True if Secure Sockets Layer (SSL) is enabled.

  • organization—The organization name.

  • organization_type—The organization type.

  • portal_version—The portal version.

  • role—The current role.

コードのサンプル

GetPortalInfo example
import arcpy

# For example:
#  {'portal_version': 2.3, 'SSL_enabled': False, 'organization':
#   'PortalHost 10.2.1', 'role': 'account_publisher', 'organizationtype': ''}
print(arcpy.GetPortalInfo(portal_URL=arcpy.GetActivePortalURL()))