REST API - CI/CD用語集の定義
REST API は、リソースをURLで公開し、標準的なHTTPメソッド (GET、POST、PUT、PATCH、DELETE) で操作するWebインターフェースで、各リクエストが処理に必要なすべての状態を持ちます (ステートレス性)。
CIでは
GitHub Actions REST APIを含む大半のCIプロバイダは、pipelineが実行をトリガーし、jobのstatusを取得し、artifactをダウンロードすることをRESTで可能にします。そのため、workflowは独自のSDKなしで別のシステムを動かせます。
関連ガイド
GraphQL API - CI/CD Glossary DefinitionGraphQL API: A GraphQL API exposes a single endpoint where the client sends a query describing exactly the fi…
Idempotent Method - CI/CD Glossary DefinitionIdempotent Method: An idempotent method is an HTTP method that produces the same result whether called once o…
API Versioning - CI/CD Glossary DefinitionAPI Versioning: API versioning is the practice of labeling an API so clients keep working when it changes, us…