機械翻訳について

セキュリティ・プロパティの表示名または説明の変更

管理対象セキュリティ・ポリシーのユーザー向けの名前と説明は、そのdisplayNameおよびdescriptionプロパティを使用して設定します。 統合開発者は、接続の構成時にOracle Integrationユーザー・インタフェースにこれらの値が表示されます。 これらの値はいつでも更新できます。

ノート:

接続プロパティ、セキュリティ・ポリシーおよびセキュリティ・プロパティの名前は変更しないでください。 これらの値を変更すると、予期しない障害が発生する可能性があります。
  1. Visual Studio Codeの「エクスプローラ」ペインで、「定義」を展開し、アダプタ定義ドキュメントを選択します。
    アダプタ定義ドキュメントには、adapter.add.jsonなどの.add.jsonの拡張子があります。
    アダプタ定義ドキュメントがワークスペースに表示されます。
  2. アダプタ定義ドキュメントのconnectionセクションを展開します。
  3. 必要に応じて、セキュリティ・ポリシーのdisplayNameまたはdescriptionプロパティを更新します。

    このプロパティは下に太字で表示されます。

    {
      "type": "managed",
      "policy": "BASIC_AUTH",
      "description": "<Overrides the description of the security policy>",
      "displayName": "<Overrides the display name of the security policy>",
      "scope": "ACTION",
      "securityProperties": [
        {
          "name": "username",
          "displayName": "accountID",
          "description": "<Overrides the description>",
          "shortDescription": "<Overrides the short description>",
          "hidden": false,
          "required": true
        },
        {
          "name": "password",
          "displayName": "accountPassword",
          "description": "<Overrides the description>",
          "shortDescription": "<Overrides the short description>",
          "hidden": false,
          "required": true
        }
      ]
    }
  4. 変更を保存します。