Get Bucket tagging#
バケットのタグ情報を表示します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://objectstorage-s.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://objectstorage-s.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/{bucket}?tagging
HTTPステータスコード#
正常時:200
エラー時:400, 403, 404, 405, 409, 411, 412, 416, 422, 500, 501, 503
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
Bucket | path | string | 必須 | バケット名 |
x-amz-content-sha256 | header | string | 必須 | ペイロード全体の計算されたSHA256チェックサム |
x-amz-date | header | string | 必須 | リクエスト側で生成した現在日時 |
Authorization | header | string | 必須 | リクエスト認証に用いる文字列 |
レスポンスヘッダー(正常系)の説明#
名前 | Type | Description |
---|---|---|
Date | string | トランザクションが実行された日時 |
Content-Type | string | オブジェクトのMIME Typeの種類 |
Content-Length | string | レスポンスボディのバイト数 |
Connection | string | 持続接続の状態を表示します。 |
x-amz-request-id | string | このリクエストに付与されるID トラブルについて問い合わせる際に利用されます。 |
x-amz-id-2 | string | このリクエストに対する処理ID トラブルについて問い合わせる際に利用されます。 |
x-ntap-sg-trace-id | string | このリクエストに対する処理ID トラブルについて問い合わせる際に利用されます。 |
X-Fcx-Endpoint-Request | string | APIエンドポイントとしてリクエストを受け付けたことを示す番号 |
レスポンスボディの説明#
名前 | Type | Description |
---|---|---|
Tagging | Container | TagSet要素のコンテナ |
TagSet | Container | タグを格納するコンテナ |
Tag | Container | タグ情報を格納するコンテナ |
Key | string | タグの名前 |
Value | string | タグの値 |
リクエスト例#
リクエストヘッダー
GET /general-bucket?tagging HTTP/1.1 User-Agent: curl/7.29.0 Host: objectstorage-s.jp-east-3.cloud.global.fujitsu.com Accept: */* x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 x-amz-date:20200928T091501Z Authorization:AWS4-HMAC-SHA256 Credential=3JGDY8M4GSJZD3AKMLQA/20200928/us-east-1/s3/aws4_request,SignedHeaders=host;x-amz-content-sha256;x-amz-date,Signature=9b7b5bb5d5852aba84aab5a4cbd44ebdaa93fa67d72eb4fcd5abc837dd3de1fe
レスポンス例#
レスポンスヘッダー
HTTP/1.1 200 OK Date: Tue, 29 Sep 2020 05:12:41 GMT Content-Type: application/xml Content-Length: 184 Connection: keep-alive x-amz-request-id: 1601356361130327 x-amz-id-2: 12229093 x-ntap-sg-trace-id: 886a8b82b5a3cf52 X-Fcx-Endpoint-Request: EXECUTED_api2-rmp1.management.jp-east-3.local-20126-61176-1_200
レスポンスボディ
<Tagging xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> <TagSet> <Tag> <Key>sample-bucket-key</Key> <Value>sample-bucket-value</Value> </Tag> <Tag> <Key>sample-bucket2-key</Key> <Value>sample-bucket2-value</Value> </Tag> </TagSet> </Tagging>