エンティティに対する検索操作

get

/exports

検索操作に一致するエンティティのリストを返します。

リクエスト

サポートされているメディア・タイプ
問合せパラメータ
  • 検索操作を実行する必要があるエンティティ・タイプ。グローバル検索の場合は、値を*にする必要があります。
  • 検索するエンティティに基づく検索パターン。
セキュリティ
先頭に戻る

レスポンス

サポートされているメディア・タイプ

200レスポンス

OK
本文()
リクエストが正常に完了されました。レスポンス本文には、エンティティに関する情報が含まれます。
ルート・スキーマ: searchentity-response
型: array
リクエストが正常に完了されました。レスポンス本文には、エンティティに関する情報が含まれます。
ソースを表示
ネストされたスキーマ: searchentity-array
型: object
ソースを表示
先頭に戻る

この例では、検索条件に一致するすべてのエンティティを取得します。ここに示す情報は、擬似システムを使用した場合のものであり、プロトタイプとして提供しています。

cURLの例

curl  -H "Content-Type: application/json" -H "Accept: application/json" -X GET  -u username:password  https://pseudo.com/iam/governance/configmgmt/rest/exports?entityType=AdminRole&searchPattern=*Orcl* 

レスポンス本文の例

JSON形式のレスポンス本文のコンテンツの例を次に示します。

[
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMSystemAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMSystemConfigurator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMCatalogAdmin",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMRoleAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMRoleAuthorizer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMRoleViewer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMEntitlementAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMEntitlementAuthorizer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMEntitlementViewer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMApplicationInstanceAdministratorRole",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMApplicationInstanceAuthorizerRole",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMApplicationInstanceViewerRole",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMOrgAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMOrgViewer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMUserAdmin",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMUserHelpDesk",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMUserViewer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMSPMLAdmin",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMAdminRoleAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMIdentityAuditAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMIdentityAuditViewer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMCertificationAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMCertificationViewer",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMAccessPolicyAdministrator",
    "message": null
  },
  {
    "entityType": "AdminRole",
    "entityTypeDisplay": "Admin Role",
    "entityName": "OrclOIMAccessPolicyViewer",
    "message": null
  }
]
先頭に戻る