ポータルからサイン アウト(Sign Out From Portal) (サーバ)
サマリ
現在サイン インしているポータルからサイン アウトします。ArcGIS Online をファイアウォールの内側や自社のプライベート クラウドで利用したい組織向けに、社内のコンピュータ ネットワーク上にインストールして使用できるバージョンが用意されています。これは Portal for ArcGIS と呼ばれています。
使用法
-
ArcGIS Online ポータルにサイン インするには、[ポータルにサイン イン(Sign In To Portal)] ツールを使用するか、ArcMap のメイン メニューで [ファイル] → [サイン イン] の順にクリックします。
構文
SignOutFromPortal_server ()
コードのサンプル
ArcGIS Online からのサイン アウト(Python ウィンドウ)
ArcGIS Online からサイン アウトします。
import arcpy
arcpy.SignOutFromPortal_server()
ArcGIS Online への公開(スタンドアロン スクリプト)
次のスクリプトは、[ポータルにサイン イン(Sign In To Portal)]、[サービスのステージング(Stage Service)]、[サービス定義のアップロード(Upload Service Definition)]、および [ポータルからサイン アウト(Sign Out From Portal)] を使用した、ArcGIS Online への公開ワークフローを示しています。
# Name: SignInToPortal_Example1.py
# Description: Use SignInToPortal to sign-in to Portal for ArcGIS and use a
# service definition draft to create a service definition and then upload and
# publish that service definition.
# Import system modules
import arcpy
from arcpy import env
# Sign-in to ArcGIS Online
arcpy.SignInToPortal_server("username","password", "")
# Set environment settings
env.workspace = "C:/data"
# Set local variables
in_service_definition_draft = "MyMapService.sddraft"
out_service_definition = "MyMapService.sd"
# Execute StageService
arcpy.StageService_server(in_service_definition_draft, out_service_definition)
# Set local variables
in_sd_file = "MyMapService.sd"
in_server = "My Hosted Services"
# Execute UploadServiceDefinition
arcpy.UploadServiceDefinition_server(in_sd_file, in_server)
# Sign out from ArcGIS Online
arcpy.SignOutFromPortal_server()
環境
このツールはジオプロセシング環境を使用していません
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
9/14/2013