List Roles Delegated by a Trust#
トラストのロールを一覧表示します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://identity.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://identity.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v3/OS-TRUST/trusts/{trust_id}/roles
HTTPステータスコード#
正常時:200
エラー時:400, 401, 403, 404, 409, 500, 501, 503
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
trust_id | path | string | 必須 | トラストID |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
links | object | トラストへのリンクURL |
roles | object | ロールオブジェクトのリスト |
id | string | 委譲するロールID |
links | object | ロールへのリンクURL |
name | string | 委譲するロール名 |
レスポンス例#
{ "links": { "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/OS-TRUST/trusts/--trust-id--/roles", "previous": null, "next": null }, "roles": [ { "id": "--role-id--", "links": { "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/roles/--role-id--" }, "name": "--role-name--" } ] }