UiPath Documentation
uipath-cli
latest
false
UiPath CLI ユーザー ガイド
重要 :
このコンテンツは機械翻訳によって処理されています。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

uip is typecache

Syntax and options for `uip is typecache`, which lists connectors and activities from the Studio typecache for a given project type.

uip is typecache reads the Studio typecache — the curated activity catalog Studio itself uses for activity discovery — filtered by project type (for example Agent). It's a separate source from uip is connectors/uip is activities: those read the Integration Service connector catalog directly, while typecache reads the same catalog Studio's designer surfaces, scoped to what a given project type can use. Results are cached per-project-type-and-tenant; pass --refresh to re-fetch.

概要

uip is typecache <verb> [options]
uip is typecache <verb> [options]

動詞

動詞目的
packagesList connectors available to a project type.
activitiesList activities for one connector, for a project type.

uip is typecache packages

List the connectors available to a given project type.

引数

設定はありません。

オプション

Short長押し値 (Value)既定 (Default)説明
--refreshフラグ無効キャッシュを無視して、API からの再取得を強制します。
--project-typetypeAgentProject type to query.

uip is typecache packages --project-type Agent
uip is typecache packages --project-type Agent
# Just the connector keys
uip is typecache packages --project-type Agent \
    --output-filter 'Data[].Key'
# Just the connector keys
uip is typecache packages --project-type Agent \
    --output-filter 'Data[].Key'

データシェイプ(--output json)

{
  "Code": "ConnectorList",
  "Data": [
    { "Key": "uipath-salesforce-sfdc", "Name": "Salesforce" }
  ]
}
{
  "Code": "ConnectorList",
  "Data": [
    { "Key": "uipath-salesforce-sfdc", "Name": "Salesforce" }
  ]
}

uip is typecache activities

List the activities available for one connector, for a given project type.

引数

名前Required目的
<connector-key>コネクタ キー (例: uipath-salesforce-sfdc[ typecache packages] で検索します。

オプション

Short長押し値 (Value)既定 (Default)説明
--refreshフラグ無効キャッシュを無視して、API からの再取得を強制します。
--project-typetypeAgentProject type to query. Must match the project type the connector was looked up under — the command resolves the connector's package ID from the typecache packages list for the same project type.

uip is typecache activities uipath-salesforce-sfdc --project-type Agent
uip is typecache activities uipath-salesforce-sfdc --project-type Agent

データシェイプ(--output json)

{
  "Code": "ActivityList",
  "Data": [
    {
      "DisplayName": "Create Case",
      "Description": "Create a Salesforce case",
      "ObjectName": "create_case",
      "MethodName": "POST",
      "Operation": "N/A"
    }
  ]
}
{
  "Code": "ActivityList",
  "Data": [
    {
      "DisplayName": "Create Case",
      "Description": "Create a Salesforce case",
      "ObjectName": "create_case",
      "MethodName": "POST",
      "Operation": "N/A"
    }
  ]
}

Description, MethodName, and Operation fall back to "N/A" when the underlying activity configuration doesn't set them. If the connector isn't available for the given project type, the command returns an empty list with Instructions pointing at typecache packages --project-type <type> to see what is available — it does not error.

  • uip is connectors — the Integration Service connector catalog (a different source than the Studio typecache).
  • uip is activities — the connector-catalog equivalent of this page's activities verb.

参照

このページは役に立ちましたか?

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得