Show flavor access type

Method URI Description
GET /v2/{tenant_id}/flavors/{flavor_id} フレーバーのアクセスタイプ(パブリックまたはプライベート)を取得する。

Normal response codes: 200

Request

下表は、フレーバーアクセスタイプ表示リクエストのURIパラメーターの一覧です。

Name Type Description
{tenant_id} String プロジェクトID
{flavor_id} UUID 対象となるフレーバーのID

本操作ではリクエストボディ部の指定は不要です。

Response

Example. Show flavor access type: JSON response


{
	"flavor": {
		"disk": 1,
		"id": "1",
		"links": [
			{
				"href": "http://openstack.example.com/v2/openstack/flavors/1",
				"rel": "self"
			},
			{
				"href": "http://openstack.example.com/openstack/flavors/1",
				"rel": "bookmark"
			}
		],
		"name": "m1.tiny",
		"os-flavor-access:is_public": true,
		"ram": 512,
		"vcpus": 1
	}
}