- 概要
- UiPath CLI
- Azure DevOps 拡張機能
- Jenkins プラグイン

CI/CD 連携ユーザー ガイド
UiPath ソリューションのデプロイをアンインストール
アプリケーション: ソリューション
種類: Post build task
UiPath ソリューション: [デプロイをアンインストール ] は、標準のジョブとパイプラインで利用できます。これを使用すると、Orchestrator インスタンスにある既存の UiPath ソリューション デプロイをアンインストールできます。
ソリューションは現在 Automation Cloud でのみサポートされています。Automation Suite のサポートは、今後のリリースで予定されています。オンプレミス (MSI) Orchestrator ではソリューションはサポートされていません。
このタスクは、バージョン 25.10 以降の UiPath.CLI.Windows または UiPath.CLI.Linux にのみ対応しています。
構成
| ジョブのパラメーター | 説明 |
|---|---|
| デプロイの名前 | アンインストールするデプロイの名前です。 |
| Orchestrator のアドレス | デプロイをアンインストールする Orchestrator インスタンスのアドレスです。 |
| Orchestrator テナント | Orchestrator テナントを指定します。 |
| 認証 | Automation Cloud Orchestrator への認証を行うには、事前に Jenkins で資格情報を作成する必要があります。ソリューションは 外部アプリの認証のみをサポートします。外部アプリケーションの作成および必要な資格情報の取得について詳しくは、「 外部アプリケーションを管理する 」をご覧ください。 |
| トレース レベル | トレース ログを以下のいずれかのレベルで有効化するために使用する設定です。
|
パイプラインの例
pipeline { agent any environment { MAJOR = '1' MINOR = '0' } stages { stage ('Uninstall Deployment') { steps { script { orchestratorCredentials = ExternalApp( applicationId: 'External application identifier', applicationScope: 'AutomationSolutions Solutions.Deployments Solutions.Packages', applicationSecret: 'External application secret', accountForApp: 'Organization identifier' ) UiPathSolutionUninstallDeployment( deploymentName: 'Deployment name', orchestratorAddress: 'OrchestratorUrl', orchestratorTenant: 'Tenant name', credentials: orchestratorCredentials, traceLevel: 'Information', ) } } } }}pipeline { agent any environment { MAJOR = '1' MINOR = '0' } stages { stage ('Uninstall Deployment') { steps { script { orchestratorCredentials = ExternalApp( applicationId: 'External application identifier', applicationScope: 'AutomationSolutions Solutions.Deployments Solutions.Packages', applicationSecret: 'External application secret', accountForApp: 'Organization identifier' ) UiPathSolutionUninstallDeployment( deploymentName: 'Deployment name', orchestratorAddress: 'OrchestratorUrl', orchestratorTenant: 'Tenant name', credentials: orchestratorCredentials, traceLevel: 'Information', ) } } } }}