HTTP Status Codes - CI/CD用語集の定義
HTTPステータスコードは、すべてのレスポンスとともに返される3桁の結果です。2xxは成功、3xxはリダイレクト、4xxはクライアントエラー、5xxはサーバーエラーです。クライアントやCIスクリプトは、これらに応じてretryするか失敗するかを分岐します。
関連ガイド
Rate Limit Header - CI/CD Glossary DefinitionRate limit headers like X-RateLimit-Remaining and Retry-After tell a client how much quota is left and when t…
ETag - CI/CD Glossary DefinitionAn ETag is a fingerprint a server returns for a resource version. The client sends it via If-None-Match so un…
REST - CI/CD Glossary DefinitionREST is an architectural style for web APIs that models resources as URLs and uses HTTP verbs and status code…