Retrieves a single container#
単独のコンテナを表示します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://keymanagement.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://keymanagement.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v1/containers/{uuid}
HTTPステータスコード#
正常時:200
エラー時:401, 404
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
uuid | path | string | 必須 | コンテナのUUID |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
name | string | コンテナの名前 |
type | string | コンテナのタイプ 「generic」、「rsa」、「certificate」のどれかが表示されます。 |
secret_refs | list | シークレットの名前と参照先 |
レスポンス例#
{ "type": "generic", "status": "ACTIVE", "name": "container name", "consumers": [], "container_ref": "https://{barbican_host}/v1/containers/{uuid}", "secret_refs": [ { "name": "private_key", "secret_ref": "https://{barbican_host}/v1/secrets/{uuid}" } ], "created": "2015-03-26T21:10:45.417835", "updated": "2015-03-26T21:10:45.417835" }