機械翻訳について

アクション定義の識別情報

アクション定義の識別情報は、アダプタの識別情報を記述する多数のプロパティによってモデル化されます。

プロパティ 説明

id

アダプタ定義ドキュメント内のアクション定義の一意の識別子。

displayName

Oracle Integrationのユーザー・インタフェースに表示される名前。

description

Oracle Integrationのユーザー・インタフェースに表示されるアクション定義の説明。

group

アダプタ開発者がOracle Integrationのユーザー・インタフェースで簡単に編成および表示できるようにするアクション定義の分類。

アクション定義のサンプル・コード:

{
  "actions": {
    "insertRowAction": {
      "displayName": "Insert Row Into Sheet",
      "description": "This action insert a new row into sheet.",
      "execute": "flow:insertRowFlow",
      "input": "flow:sheetSchemaFlow",
      "output": {
        "schemaType": "application/schema+json",
        "schema": {
          "$ref": "#/schemas/insertRowOutput"
        }
      },
      "configuration": [
        {
          "name": "spreadsheetId",
          "displayName": "Spreadsheet Name",
          "description": "",
          "type": "COMBO_BOX",
          "options": "flow:spreadsheetIdFlow",
          "required": true
        },
        {
          "name": "sheetId",
          "displayName": "Sheet Name",
          "description": "",
          "type": "COMBO_BOX",
          "options": "flow:sheetIdFlow",
          "required": true,
          "dependencies": {
            "spreadsheetId": {
              "values": []
            }
          }
        }
      ]
    }
  }
}