エンティティに対する検索操作
get
/exports
検索操作に一致するエンティティのリストを返します。
リクエスト
サポートされているメディア・タイプ
- application/json
- application/xml
問合せパラメータ
- entityType: string
検索操作を実行する必要があるエンティティ・タイプ。グローバル検索の場合は、値を*にする必要があります。
- searchPattern: string
検索するエンティティに基づく検索パターン。
セキュリティ
- basicAuth: basic
型:
basic
レスポンス
サポートされているメディア・タイプ
- application/json
- application/xml
200レスポンス
OK
リクエストが正常に完了されました。レスポンス本文には、エンティティに関する情報が含まれます。
ネストされたスキーマ: searchentity-array
型:
ソースを表示
object- entityName(optional): string
検索操作に一致するエンティティの名前。
- entityType(optional): string
検索操作に一致するエンティティのタイプ。
- entityTypeDisplay(optional): string
ロケールに依存するエンティティ・タイプの表示名を指定します。
- message(optional): string
インタフェースに表示できる検索操作のテキスト・メッセージ(ある場合)。
例
この例では、検索条件に一致するすべてのエンティティを取得します。ここに示す情報は、擬似システムを使用した場合のものであり、プロトタイプとして提供しています。
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
}
]