すべてのアプリケーションのプロビジョニング・レポートの取得
get
/essbase/rest/v1/groups/{groupId}/provisionReport/applications
すべてのアプリケーションについてプロビジョニング・レポートを取得します。ログイン・ユーザーに、少なくとも、そのアプリケーションのデータベース・マネージャ役割が必要となります。アプリケーション役割は、ログイン・ユーザーに少なくともそのアプリケーションのアプリケーション・マネージャ役割がある場合のみ、レポートに含まれます。
EPM共有サービス・セキュリティ・モードを使用している場合、この操作は実行できません。かわりに、共有サービス・コンソールでユーザー、グループおよび権限を管理します。
リクエスト
パス・パラメータ
- groupId(required): string
グループID。
問合せパラメータ
- expand: string
すべてのアプリケーションのプロビジョニング情報を取得するには、
all
を使用します。
レスポンス
サポートされているメディア・タイプ
- application/json
- application/xml
200 レスポンス
OK
アプリケーションのプロビジョニング・レポートが正常に返されました。
ネストされたスキーマ : ProvisionReportItem
型:
ソースの表示
object
- inheritedFromGroups: array inheritedFromGroups
一意のアイテムが必要:
true
- name: string
404 レスポンス
見つかりません
そのIDのグループが存在しません。
500 レスポンス
サーバーの内部エラーです。
例
次の例では、Essbaseサーバー上のすべてのアプリケーションへの特定のグループのアクセスに関するレポートへのリンクを取得する方法を示します。
この例では、cURLを使用して、Windowsシェル・スクリプトからREST APIにアクセスします。呼出し元ユーザーのIDおよびパスワードは変数であり、properties.bat
内でその変数値が設定されています。
cURLコマンドを含むスクリプト
このスクリプトは、グループID dbaccessgroupのプロビジョニング情報をリクエストします。
call properties.bat
curl -X GET https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications -H "accept: application/json" -u %User%:%Password%
レスポンス本体の例
{
"links" : [ {
"rel" : "Sample",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Sample",
"method" : "GET"
}, {
"rel" : "ASOSamp",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/ASOSamp",
"method" : "GET"
}, {
"rel" : "Efficient",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Efficient",
"method" : "GET"
}, {
"rel" : "Sample_Dynamic",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Sample_Dynamic",
"method" : "GET"
}, {
"rel" : "Sample_Currency",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Sample_Currency",
"method" : "GET"
} ]
}