{ "opencollection": "1.0.0", "info": { "name": "openshift-rest-api BuildConfigs Builds API", "version": "4.17.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Builds", "type": "folder" }, "items": [ { "info": { "name": "Openshift List Builds Across All Namespaces", "type": "http" }, "http": { "method": "GET", "url": "https://api.openshift.com/apis/build.openshift.io/v1/builds", "params": [ { "name": "allowWatchBookmarks", "value": "", "type": "query", "description": "Allow watch bookmarks. Bookmarks report the resourceVersion to which the set of watched resources is synced." }, { "name": "continue", "value": "", "type": "query", "description": "The continue token for paging through large result sets." }, { "name": "fieldSelector", "value": "", "type": "query", "description": "A selector to restrict the list of returned objects by their fields." }, { "name": "labelSelector", "value": "", "type": "query", "description": "A selector to restrict the list of returned objects by their labels." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of responses to return for a list call." }, { "name": "pretty", "value": "", "type": "query", "description": "If true, the output is pretty-printed." }, { "name": "resourceVersion", "value": "", "type": "query", "description": "Specifies the resource version to match or list from." }, { "name": "watch", "value": "", "type": "query", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications." } ] }, "docs": "List or watch Build objects across all namespaces." }, { "info": { "name": "Openshift List Builds in a Namespace", "type": "http" }, "http": { "method": "GET", "url": "https://api.openshift.com/apis/build.openshift.io/v1/namespaces/:namespace/builds", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "The namespace (project) scope for the resource." }, { "name": "allowWatchBookmarks", "value": "", "type": "query", "description": "Allow watch bookmarks. Bookmarks report the resourceVersion to which the set of watched resources is synced." }, { "name": "continue", "value": "", "type": "query", "description": "The continue token for paging through large result sets." }, { "name": "fieldSelector", "value": "", "type": "query", "description": "A selector to restrict the list of returned objects by their fields." }, { "name": "labelSelector", "value": "", "type": "query", "description": "A selector to restrict the list of returned objects by their labels." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of responses to return for a list call." }, { "name": "pretty", "value": "", "type": "query", "description": "If true, the output is pretty-printed." }, { "name": "resourceVersion", "value": "", "type": "query", "description": "Specifies the resource version to match or list from." }, { "name": "watch", "value": "", "type": "query", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications." } ] }, "docs": "List or watch Build objects in the specified namespace." }, { "info": { "name": "Openshift Create a Build", "type": "http" }, "http": { "method": "POST", "url": "https://api.openshift.com/apis/build.openshift.io/v1/namespaces/:namespace/builds", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "The namespace (project) scope for the resource." }, { "name": "pretty", "value": "", "type": "query", "description": "If true, the output is pretty-printed." }, { "name": "dryRun", "value": "", "type": "query", "description": "When present, indicates that modifications should not be persisted. Valid values are All (all dry run stages will be processed)." }, { "name": "fieldManager", "value": "", "type": "query", "description": "A name associated with the actor or entity making the change. Used for server-side apply to track field ownership." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a Build in the specified namespace. A Build represents a single execution of a build process that transforms source into a container image." }, { "info": { "name": "Openshift Read a Build", "type": "http" }, "http": { "method": "GET", "url": "https://api.openshift.com/apis/build.openshift.io/v1/namespaces/:namespace/builds/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Name of the resource." }, { "name": "namespace", "value": "", "type": "path", "description": "The namespace (project) scope for the resource." }, { "name": "pretty", "value": "", "type": "query", "description": "If true, the output is pretty-printed." } ] }, "docs": "Read the specified Build in the given namespace." }, { "info": { "name": "Openshift Replace a Build", "type": "http" }, "http": { "method": "PUT", "url": "https://api.openshift.com/apis/build.openshift.io/v1/namespaces/:namespace/builds/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Name of the resource." }, { "name": "namespace", "value": "", "type": "path", "description": "The namespace (project) scope for the resource." }, { "name": "pretty", "value": "", "type": "query", "description": "If true, the output is pretty-printed." }, { "name": "dryRun", "value": "", "type": "query", "description": "When present, indicates that modifications should not be persisted. Valid values are All (all dry run stages will be processed)." }, { "name": "fieldManager", "value": "", "type": "query", "description": "A name associated with the actor or entity making the change. Used for server-side apply to track field ownership." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replace the specified Build in the given namespace." }, { "info": { "name": "Openshift Delete a Build", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.openshift.com/apis/build.openshift.io/v1/namespaces/:namespace/builds/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Name of the resource." }, { "name": "namespace", "value": "", "type": "path", "description": "The namespace (project) scope for the resource." }, { "name": "pretty", "value": "", "type": "query", "description": "If true, the output is pretty-printed." }, { "name": "dryRun", "value": "", "type": "query", "description": "When present, indicates that modifications should not be persisted. Valid values are All (all dry run stages will be processed)." }, { "name": "gracePeriodSeconds", "value": "", "type": "query", "description": "The duration in seconds before the object should be deleted. The value zero indicates delete immediately." }, { "name": "propagationPolicy", "value": "", "type": "query", "description": "Whether and how garbage collection will be performed. Either Orphan, Background, or Foreground." } ] }, "docs": "Delete the specified Build from the given namespace." }, { "info": { "name": "Openshift Read Build Log", "type": "http" }, "http": { "method": "GET", "url": "https://api.openshift.com/apis/build.openshift.io/v1/namespaces/:namespace/builds/:name/log", "params": [ { "name": "name", "value": "", "type": "path", "description": "Name of the resource." }, { "name": "namespace", "value": "", "type": "path", "description": "The namespace (project) scope for the resource." }, { "name": "container", "value": "", "type": "query", "description": "The container for which to stream logs." }, { "name": "follow", "value": "", "type": "query", "description": "Follow the log stream of the build." }, { "name": "sinceSeconds", "value": "", "type": "query", "description": "A relative time in seconds before the current time from which to show logs." }, { "name": "tailLines", "value": "", "type": "query", "description": "Number of lines from the end of the log to show." }, { "name": "timestamps", "value": "", "type": "query", "description": "Add RFC3339 timestamps to each log line." } ] }, "docs": "Read the log output from the specified Build." } ] } ], "bundled": true }