REST - CI/CD用語集の定義
REST は、リソース、標準メソッド、ステートレスなリクエストの上に構築された HTTP API のアーキテクチャスタイルです。
REST (Representational State Transfer) は、HTTP メソッド、リソースとしての URL、ステートレスなリクエストを使う API のアーキテクチャスタイルです。ほとんどの CI 統合テストは、標準の HTTP 動詞で REST エンドポイントを検証します。
REST は操作をリソース URL に対する HTTP 動詞にマッピングします。そのステートレス性により各リクエストを独立してテストでき、CI が必要とする決定論的なモデルに適合します。
関連ガイド
gRPC - CI/CD Glossary DefinitiongRPC: gRPC is a high-performance remote procedure call framework that uses HTTP/2 for transport and Protocol…
Endpoint - CI/CD Glossary DefinitionEndpoint: An endpoint is a specific URL and method combination that an API exposes to perform an operation, s…
Idempotent Request - CI/CD Glossary DefinitionIdempotent Request: An idempotent request produces the same result whether sent once or many times, so retrie…