aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/status/409
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/http/status/409
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/http/status/409')
-rw-r--r--files/ja/web/http/status/409/index.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/files/ja/web/http/status/409/index.html b/files/ja/web/http/status/409/index.html
new file mode 100644
index 0000000000..155f2bd1a6
--- /dev/null
+++ b/files/ja/web/http/status/409/index.html
@@ -0,0 +1,40 @@
+---
+title: 409 Conflict
+slug: Web/HTTP/Status/409
+tags:
+ - HTTP
+ - HTTPステータスコード
+ - Reference
+ - クライアントエラー
+translation_of: Web/HTTP/Status/409
+---
+<p>{{HTTPSidebar}}</p>
+
+<p>HTTP <code><strong>409 Conflict</strong></code> はリクエストが現在のサーバーの状態と競合したことを示すステータスコード。</p>
+
+<p>競合は {{HTTPMethod("PUT")}} メソッドを使用したリクエストのレスポンスで最も発生しやすい。例えば、サーバーにすでに存在しているファイルよりも古いバージョンのファイルをアップロードした際に409の応答が返され、バージョン管理システムの競合が発生する可能性がある。</p>
+
+<h2 id="ステータス">ステータス</h2>
+
+<pre class="syntaxbox">409 Conflict</pre>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">タイトル</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7231", "409 Conflict" , "6.5.8")}}</td>
+ <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="参照">参照</h2>
+
+<ul>
+ <li>{{HTTPMethod("PUT")}}</li>
+</ul>